File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -247,12 +247,11 @@ impl WriteStrategyBuilder {
247247 // 7. for each chunk create a layout. Under the `unstable_encodings` feature, list-typed
248248 // chunks route through `ListLayoutStrategy` (separately-addressable elements/offsets/
249249 // validity sub-layouts; non-list chunks fall through its built-in fallback to `flat`).
250- // Nested lists (`list<list<...>>`) recurse, shredding each level into its own
251- // `ListLayout`. Otherwise everything goes through the flat strategy.
250+ // Otherwise everything goes through the flat strategy.
252251 #[ cfg( feature = "unstable_encodings" ) ]
253252 let leaf: Arc < dyn LayoutStrategy > = Arc :: new (
254253 // Thread the configured `flat` (which carries `allow_encodings` / any custom flat
255- // override) through every child; list elements still recurse into a nested ListLayout .
254+ // override) through every child.
256255 ListLayoutStrategy :: default ( )
257256 . with_elements ( Arc :: clone ( & flat) )
258257 . with_offsets ( Arc :: clone ( & flat) )
You can’t perform that action at this time.
0 commit comments