Skip to main content

columnar_to_vec

Function columnar_to_vec 

Source
pub fn columnar_to_vec<'scope, T>(
    collection: Collection<'scope, T, Column<(Row, T, Diff)>>,
) -> VecCollection<'scope, T, Row, Diff>
where T: RenderTimestamp,
Expand description

Decodes columnar batches into a row-based collection.

A transitional seam-healer, visible in rendered dataflows as a ColumnarToVec operator. Decoding allocates an owned Row per record, so it should only guard consumers that have not yet learned the columnar form.