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

Method resolve_lambda_variables

datafusion/expr/src/expr.rs:2279–2284  ·  view source on GitHub ↗

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,
    )

Source from the content-addressed store, hash-verified

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
2287impl Normalizeable for Expr {

Callers 1

Calls 2

resolve_lambda_variablesFunction · 0.85
newFunction · 0.85

Tested by 1