Implement DictionaryArray support in eq_dyn
, neq_dyn
, lt_dyn
, lt_eq_dyn
, gt_dyn
, gt_eq_dyn
#1201
Labels
eq_dyn
, neq_dyn
, lt_dyn
, lt_eq_dyn
, gt_dyn
, gt_eq_dyn
#1201
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Rationale make it fast and easy (more ergonomic) to compare arrays, both for DataFusion and other users. See rationale in #843
Describe the solution you'd like
The idea would basically be to implement the same thing as @viirya did for timestamp types in #1095 but for
DictionaryArrays
That is the following code should not assert and compare the decimal arrays element by element:
Describe alternatives you've considered
For completeness, we could also add
eq_dict
,neq_dict
, etc as well, though I personally think focusing on the dyn kernels would be the easiest thing.Additional context
other context:
I am trying to move datafusion over to using the dyn kernels here: apache/datafusion#1475
The text was updated successfully, but these errors were encountered: