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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
DataFusion (and likely other libraries) often wants to implement its own fast comparison functions
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
DataFusion (and likely other libraries) often wants to implement its own fast comparison functions
For example, comparing the contents of an array element by element to form an output
BooleanArray
https://github.com/apache/arrow-datafusion/blob/7617d78809d4ff5bde31142e0744c70024e40635/datafusion/physical-expr/src/expressions/in_list.rs#L50
the
arity::unary
is close to what I want: https://docs.rs/arrow/17.0.0/arrow/compute/kernels/arity/index.html but it can not produce aBooleanArray
(becauseBooleanArray
is not aPrimitiveArray
)Describe the solution you'd like
I would like a function such as
unary_cmp
that I could call like:There is a proposed implementation: apache/datafusion#2826
Describe alternatives you've considered
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: