MCPcopy Create free account
hub / github.com/apache/datafusion / unnest_column

Method unnest_column

datafusion/expr/src/logical_plan/builder.rs:1518–1520  ·  view source on GitHub ↗

Unnest the given column.

(self, column: impl Into<Column>)

Source from the content-addressed store, hash-verified

1516
1517 /// Unnest the given column.
1518 pub fn unnest_column(self, column: impl Into<Column>) -> Result<Self> {
1519 unnest(Arc::unwrap_or_clone(self.plan), vec![column.into()]).map(Self::new)
1520 }
1521
1522 /// Unnest the given column given [`UnnestOptions`]
1523 pub fn unnest_column_with_options(

Calls 2

unnestFunction · 0.70
mapMethod · 0.45