Create a [`LogicalPlan::Unnest`] plan
(input: LogicalPlan, columns: Vec<Column>)
| 2233 | |
| 2234 | /// Create a [`LogicalPlan::Unnest`] plan |
| 2235 | pub fn unnest(input: LogicalPlan, columns: Vec<Column>) -> Result<LogicalPlan> { |
| 2236 | unnest_with_options(input, columns, UnnestOptions::default()) |
| 2237 | } |
| 2238 | |
| 2239 | pub fn get_struct_unnested_columns( |
| 2240 | col_name: &String, |
no test coverage detected
searching dependent graphs…