File tree Expand file tree Collapse file tree
vortex-array/src/expr/exprs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -272,6 +272,7 @@ mod tests {
272272 use vortex_dtype:: Nullability :: NonNullable ;
273273 use vortex_dtype:: PType ;
274274 use vortex_dtype:: StructFields ;
275+ use vortex_scalar:: Scalar ;
275276
276277 use crate :: Array ;
277278 use crate :: IntoArray ;
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ use vortex_error::VortexExpect;
1212use vortex_error:: VortexResult ;
1313use vortex_error:: vortex_bail;
1414use vortex_error:: vortex_err;
15+ use vortex_session:: VortexSession ;
1516
1617use crate :: ArrayRef ;
1718use crate :: IntoArray ;
@@ -61,7 +62,11 @@ impl VTable for GetItemList {
6162 vortex_bail ! ( "UNSTABLE expression {} must not be serialized" , self . id( ) )
6263 }
6364
64- fn deserialize ( & self , metadata : & [ u8 ] ) -> VortexResult < Self :: Options > {
65+ fn deserialize (
66+ & self ,
67+ metadata : & [ u8 ] ,
68+ _session : & VortexSession ,
69+ ) -> VortexResult < Self :: Options > {
6570 _ = metadata;
6671 vortex_bail ! ( "UNSTABLE expression {} must not be deserialized" , self . id( ) )
6772 }
You can’t perform that action at this time.
0 commit comments