Unnest the given column.
(self, column: impl Into<Column>)
| 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( |