pub fn vec_to_columnar<'scope, T>(
collection: VecCollection<'scope, T, Row, Diff>,
) -> Collection<'scope, T, Column<(Row, T, Diff)>>where
T: RenderTimestamp,Expand description
Repacks a row-based collection into columnar batches.
A transitional seam-healer, visible in rendered dataflows as a
VecToColumnar operator. Repacking copies row bytes but allocates no
per-record Rows.