Skip to content

Commit ca55476

Browse files
committed
woooo
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 28ec255 commit ca55476

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vortex-array/src/expr/vtable.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
9393
/// Execute the expression on the given vector with the given dtype.
9494
fn execute(&self, data: &Self::Instance, args: ExecutionArgs) -> VortexResult<Vector> {
9595
_ = data;
96-
_ = args;
96+
let _args = args;
9797
// TODO(ngates): remove this once we port to vector execution
9898
// TODO(ngates): I think we should take/return an enum of Vector/Scalar.
9999
vortex_bail!("Expression {} does not support execution", self.id());
@@ -228,11 +228,11 @@ pub trait DynExprVTable: 'static + Send + Sync + private::Sealed {
228228
catalog: &dyn StatsCatalog,
229229
) -> Option<Expression>;
230230

231+
/// See [`VTable::is_null_sensitive`].
231232
fn is_null_sensitive(&self, instance: &dyn Any) -> bool;
233+
/// See [`VTable::is_fallible`].
232234
fn is_fallible(&self, instance: &dyn Any) -> bool;
233235

234-
fn is_null_sensitive(&self, instance: &dyn Any) -> bool;
235-
236236
fn dyn_eq(&self, instance: &dyn Any, other: &dyn Any) -> bool;
237237
fn dyn_hash(&self, instance: &dyn Any, state: &mut dyn Hasher);
238238
}

0 commit comments

Comments
 (0)