Skip to content

Commit 369eb7b

Browse files
committed
finish
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent e4e3b64 commit 369eb7b

File tree

2 files changed

+1
-12
lines changed
  • vortex-array/src/expr/exprs
  • vortex-layout/src/layouts/row_idx

2 files changed

+1
-12
lines changed

vortex-array/src/expr/exprs/mask.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// SPDX-FileCopyrightText: Copyright the Vortex contributors
33

44
use std::fmt::Formatter;
5+
use std::ops::Not;
56

67
use vortex_dtype::DType;
78
use vortex_dtype::Nullability;

vortex-layout/src/layouts/row_idx/expr.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
use std::fmt::Formatter;
55

6-
use vortex_array::ArrayRef;
76
use vortex_array::expr::Arity;
87
use vortex_array::expr::ChildName;
98
use vortex_array::expr::EmptyOptions;
@@ -49,17 +48,6 @@ impl VTable for RowIdx {
4948
Ok(DType::Primitive(PType::U64, Nullability::NonNullable))
5049
}
5150

52-
fn evaluate(
53-
&self,
54-
_options: &Self::Options,
55-
_expr: &Expression,
56-
_scope: &ArrayRef,
57-
) -> VortexResult<ArrayRef> {
58-
vortex_bail!(
59-
"RowIdxExpr should not be evaluated directly, use it in the context of a Vortex scan and it will be substituted for a row index array"
60-
);
61-
}
62-
6351
fn execute(
6452
&self,
6553
_options: &Self::Options,

0 commit comments

Comments
 (0)