Skip to content

Commit 13b5100

Browse files
committed
Expressions
Signed-off-by: Nicholas Gates <[email protected]>
1 parent 31802fc commit 13b5100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-array/src/expr/vtable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
9999
/// This function will become required in a future release.
100100
fn execute(&self, options: &Self::Options, args: ExecutionArgs) -> VortexResult<Datum> {
101101
_ = options;
102-
_ = args;
102+
drop(args);
103103
vortex_bail!("Expression {} does not support execution", self.id());
104104
}
105105

0 commit comments

Comments
 (0)