You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Weijun-H added support for <> and != forStringView in #10985. We also need similar support for BinaryView
Describe the solution you'd like
In order to improve performance of these queries we will need the ability to actually compare StringViewArrays to constant values (and likely to each other)
Thus I would like to be able to run
BinaryView = scalar BianryView = StringViewColumn
I basically want to to run the following queries (where table foo has BinaryView columns)
Is your feature request related to a problem or challenge?
Part of #10918,
[StringViewArray
](https://docs.rs/arrow/latest/arrow/array/type.StringViewArray.html) support in DataFusion@Weijun-H added support for
<>
and!=
forStringView
in #10985. We also need similar support forBinaryView
Describe the solution you'd like
In order to improve performance of these queries we will need the ability to actually compare
StringViewArrays
to constant values (and likely to each other)Thus I would like to be able to run
BinaryView = scalar
BianryView = StringViewColumn
I basically want to to run the following queries (where table
foo
hasBinaryView
columns)Describe alternatives you've considered
I suspect we will need to update the coercion logic and maybe also the arrow equality kernels like https://docs.rs/arrow/latest/arrow/compute/kernels/cmp/fn.eq.html
Additional context
No response
The text was updated successfully, but these errors were encountered: