File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ use crate::compute::Kernel;
2828use crate :: compute:: Operator ;
2929use crate :: compute:: Options ;
3030use crate :: compute:: Output ;
31- use crate :: compute:: boolean ;
31+ use crate :: compute:: arrow_boolean ;
3232use crate :: compute:: compare;
3333use crate :: vtable:: VTable ;
3434
@@ -149,9 +149,10 @@ impl ComputeFnVTable for Between {
149149
150150 // Otherwise, fall back to the default Arrow implementation
151151 // TODO(joe): should we try to canonicalize the array and try between
152- Ok ( boolean (
153- & compare ( lower, array, options. lower_strict . to_operator ( ) ) ?,
154- & compare ( array, upper, options. upper_strict . to_operator ( ) ) ?,
152+ // TODO(joe): move to lazy execute!
153+ Ok ( arrow_boolean (
154+ compare ( lower, array, options. lower_strict . to_operator ( ) ) ?,
155+ compare ( array, upper, options. upper_strict . to_operator ( ) ) ?,
155156 BooleanOperator :: AndKleene ,
156157 ) ?
157158 . into ( ) )
You can’t perform that action at this time.
0 commit comments