Open
Description
Is your feature request related to a problem or challenge?
Say you have a column byte_column
of type FixedSizeBinary
. Doing where byte_column = x'deadbeef'
will fail, because the literal is parsed as Binary
.
Describe the solution you'd like
Add a option to parse literals as FixedSizeBinary
.
Describe alternatives you've considered
Coercing the LHS to Binary
is less performant. Unconditionally parsing literals as FixedSizeBytes
would be a breaking change.
Additional context
I am working on this.