Return a `Expr` with all [`LambdaVariable`] resolved only if all of them are contained in the subtree of the [`HigherOrderFunction`] it originates from, otherwise returns an error
(
self,
schema: &DFSchema,
)
| 2277 | /// are contained in the subtree of the [`HigherOrderFunction`] it originates from, |
| 2278 | /// otherwise returns an error |
| 2279 | pub fn resolve_lambda_variables( |
| 2280 | self, |
| 2281 | schema: &DFSchema, |
| 2282 | ) -> Result<Transformed<Expr>> { |
| 2283 | resolve_lambda_variables(self, schema, &mut HashMap::new()) |
| 2284 | } |
| 2285 | } |
| 2286 | |
| 2287 | impl Normalizeable for Expr { |