Module datafusion_physical_plan::unnest

source ·
Expand description

Define a plan for unnesting values in columns that contain a list type.

Structs§

  • Unnest the given columns (either with type struct or list) For list unnesting, each rows is vertically transformed into multiple rows For struct unnesting, each columns is horizontally transformed into multiple columns, Thus the original RecordBatch with dimension (n x m) may have new dimension (n’ x m’)