Skip to content

Commit 7a29f36

Browse files
committed
Remove operators
Signed-off-by: Nicholas Gates <[email protected]>
1 parent 02308ae commit 7a29f36

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

vortex-array/src/array/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use vortex_scalar::Scalar;
2525
use vortex_session::VortexSession;
2626
use vortex_vector::Vector;
2727
use vortex_vector::VectorOps;
28-
use vortex_vector::vector_matches_dtype;
2928

3029
use crate::ArrayEq;
3130
use 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

vortex-array/src/vtable/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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!(

0 commit comments

Comments
 (0)