@@ -295,14 +295,17 @@ mod tests {
295295 use vortex_array:: arrays:: VarBinViewArray ;
296296 use vortex_array:: arrays:: struct_:: StructArrayExt ;
297297 use vortex_array:: arrays:: variant:: VariantArrayExt ;
298+ use vortex_array:: arrow:: ArrowSession ;
298299 use vortex_array:: assert_arrays_eq;
299300 use vortex_array:: assert_nth_scalar_is_null;
300301 use vortex_array:: dtype:: Nullability ;
301302 use vortex_array:: dtype:: PType ;
303+ use vortex_array:: dtype:: session:: DTypeSession ;
302304 use vortex_array:: expr:: Expression ;
303305 use vortex_array:: expr:: proto:: ExprSerializeProtoExt ;
304306 use vortex_array:: expr:: root;
305307 use vortex_array:: expr:: variant_get;
308+ use vortex_array:: scalar_fn:: session:: ScalarFnSession ;
306309 use vortex_array:: session:: ArraySession ;
307310 use vortex_error:: vortex_bail;
308311
@@ -311,7 +314,11 @@ mod tests {
311314 use crate :: fns:: json_to_variant;
312315
313316 static SESSION : LazyLock < VortexSession > = LazyLock :: new ( || {
314- let session = VortexSession :: empty ( ) . with :: < ArraySession > ( ) ;
317+ let session = VortexSession :: empty ( )
318+ . with :: < ArraySession > ( )
319+ . with :: < ArrowSession > ( )
320+ . with :: < DTypeSession > ( )
321+ . with :: < ScalarFnSession > ( ) ;
315322 crate :: initialize ( & session) ;
316323 session
317324 } ) ;
0 commit comments