File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ use vortex_scalar::Scalar;
2525use vortex_session:: VortexSession ;
2626use vortex_vector:: Vector ;
2727use vortex_vector:: VectorOps ;
28- use vortex_vector:: vector_matches_dtype;
2928
3029use crate :: ArrayEq ;
3130use crate :: ArrayHash ;
@@ -675,7 +674,7 @@ impl<V: VTable> Array for ArrayAdapter<V> {
675674 vortex_ensure ! ( result. len( ) == self . len( ) , "Result length mismatch" ) ;
676675 #[ cfg( debug_assertions) ]
677676 vortex_ensure ! (
678- vector_matches_dtype( & result, self . dtype( ) ) ,
677+ vortex_vector :: vector_matches_dtype( & result, self . dtype( ) ) ,
679678 "Executed vector dtype mismatch" ,
680679 ) ;
681680
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ pub trait VTable: 'static + Sized + Send + Sync + Debug {
138138 /// Debug builds will panic if the returned vector is of the wrong type, wrong length, or
139139 /// incorrectly contains null values.
140140 ///
141- /// Implementations should recursively call [`crate::ArrayOperator::execute_batch `] on child
141+ /// Implementations should recursively call [`Array::batch_execute `] on child
142142 /// arrays as needed.
143143 fn batch_execute ( array : & Self :: Array , _ctx : & mut ExecutionCtx ) -> VortexResult < Vector > {
144144 vortex_bail ! (
You can’t perform that action at this time.
0 commit comments