pub fn build_unnest_op(
array_column: impl Into<String>,
output_column: impl Into<String>,
with_ordinality: bool,
) -> NodeOpExpand description
Build a NodeOp::Unnest descriptor.
array_column— the source column that contains the array.output_column— the name of the column produced for each element.with_ordinality— whentruean extraordinalitycolumn (u64) is appended with the 1-based position of each element.