@@ -63,7 +63,7 @@ mod primitive {
6363 use vortex_array:: arrays:: ConstantArray ;
6464 use vortex_array:: compute:: StrictComparison :: NonStrict ;
6565 use vortex_array:: compute:: {
66- BetweenOptions , BinaryOperator , Operator , between, binary_boolean, compare,
66+ BetweenOptions , BooleanOperator , Operator , between, binary_boolean, compare,
6767 } ;
6868 use vortex_dtype:: NativePType ;
6969 use vortex_error:: VortexExpect ;
@@ -89,7 +89,7 @@ mod primitive {
8989 & compare ( & arr, & ConstantArray :: new ( min, arr. len ( ) ) , Operator :: Gte )
9090 . vortex_expect ( "" ) ,
9191 & compare ( & arr, & ConstantArray :: new ( max, arr. len ( ) ) , Operator :: Lt ) . vortex_expect ( "" ) ,
92- BinaryOperator :: And ,
92+ BooleanOperator :: And ,
9393 )
9494 . vortex_expect ( "" )
9595 } )
@@ -132,7 +132,7 @@ mod bitpack {
132132 use vortex_array:: arrays:: ConstantArray ;
133133 use vortex_array:: compute:: StrictComparison :: NonStrict ;
134134 use vortex_array:: compute:: {
135- BetweenOptions , BinaryOperator , Operator , between, binary_boolean, compare,
135+ BetweenOptions , BooleanOperator , Operator , between, binary_boolean, compare,
136136 } ;
137137 use vortex_dtype:: NativePType ;
138138 use vortex_error:: VortexExpect ;
@@ -158,7 +158,7 @@ mod bitpack {
158158 & compare ( & arr, & ConstantArray :: new ( min, arr. len ( ) ) , Operator :: Gte )
159159 . vortex_expect ( "" ) ,
160160 & compare ( & arr, & ConstantArray :: new ( max, arr. len ( ) ) , Operator :: Lt ) . vortex_expect ( "" ) ,
161- BinaryOperator :: And ,
161+ BooleanOperator :: And ,
162162 )
163163 } )
164164 }
@@ -200,7 +200,7 @@ mod alp {
200200 use vortex_array:: arrays:: ConstantArray ;
201201 use vortex_array:: compute:: StrictComparison :: NonStrict ;
202202 use vortex_array:: compute:: {
203- BetweenOptions , BinaryOperator , Operator , between, binary_boolean, compare,
203+ BetweenOptions , BooleanOperator , Operator , between, binary_boolean, compare,
204204 } ;
205205 use vortex_dtype:: NativePType ;
206206 use vortex_error:: VortexExpect ;
@@ -226,7 +226,7 @@ mod alp {
226226 & compare ( & arr, & ConstantArray :: new ( min, arr. len ( ) ) , Operator :: Gte )
227227 . vortex_expect ( "" ) ,
228228 & compare ( & arr, & ConstantArray :: new ( max, arr. len ( ) ) , Operator :: Lt ) . vortex_expect ( "" ) ,
229- BinaryOperator :: And ,
229+ BooleanOperator :: And ,
230230 )
231231 } )
232232 }
0 commit comments