We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31802fc commit 13b5100Copy full SHA for 13b5100
vortex-array/src/expr/vtable.rs
@@ -99,7 +99,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
99
/// This function will become required in a future release.
100
fn execute(&self, options: &Self::Options, args: ExecutionArgs) -> VortexResult<Datum> {
101
_ = options;
102
- _ = args;
+ drop(args);
103
vortex_bail!("Expression {} does not support execution", self.id());
104
}
105
0 commit comments