Return a `LogicalPLan` with all [`LambdaVariable`]'s resolved [`LambdaVariable`]: crate::expr::LambdaVariable
(self)
| 2194 | /// |
| 2195 | /// [`LambdaVariable`]: crate::expr::LambdaVariable |
| 2196 | pub fn resolve_lambda_variables(self) -> Result<Transformed<LogicalPlan>> { |
| 2197 | self.transform_with_subqueries(|plan| { |
| 2198 | let schema = merge_schema(&plan.inputs()); |
| 2199 | |
| 2200 | plan.map_expressions(|expr| expr.resolve_lambda_variables(&schema)) |
| 2201 | }) |
| 2202 | } |
| 2203 | } |
| 2204 | |
| 2205 | impl Display for LogicalPlan { |
nothing calls this directly
no test coverage detected