@@ -10,7 +10,6 @@ use vortex_array::ArrayContext;
1010use vortex_dtype:: DType ;
1111use vortex_error:: { VortexResult , vortex_bail, vortex_err} ;
1212use vortex_flatbuffers:: { FlatBuffer , layout as fbl} ;
13- use vortex_session:: VortexSession ;
1413
1514use crate :: segments:: SegmentId ;
1615use crate :: { LayoutContext , LayoutRef } ;
@@ -98,7 +97,6 @@ pub(crate) struct ViewedLayoutChildren {
9897 flatbuffer_loc : usize ,
9998 array_ctx : ArrayContext ,
10099 layout_ctx : LayoutContext ,
101- session : VortexSession ,
102100}
103101
104102impl ViewedLayoutChildren {
@@ -112,14 +110,12 @@ impl ViewedLayoutChildren {
112110 flatbuffer_loc : usize ,
113111 array_ctx : ArrayContext ,
114112 layout_ctx : LayoutContext ,
115- session : VortexSession ,
116113 ) -> Self {
117114 Self {
118115 flatbuffer,
119116 flatbuffer_loc,
120117 array_ctx,
121118 layout_ctx,
122- session,
123119 }
124120 }
125121
@@ -148,7 +144,6 @@ impl LayoutChildren for ViewedLayoutChildren {
148144 flatbuffer_loc : fb_child. _tab . loc ( ) ,
149145 array_ctx : self . array_ctx . clone ( ) ,
150146 layout_ctx : self . layout_ctx . clone ( ) ,
151- session : self . session . clone ( ) ,
152147 } ;
153148 let encoding = self
154149 . layout_ctx
@@ -170,7 +165,6 @@ impl LayoutChildren for ViewedLayoutChildren {
170165 . collect_vec ( ) ,
171166 & viewed_children,
172167 self . array_ctx . clone ( ) ,
173- & self . session ,
174168 )
175169 }
176170
0 commit comments