File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments