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

Function strip_inner_query

datafusion/expr/src/logical_plan/invariants.rs:393–401  ·  view source on GitHub ↗
(inner_plan: &LogicalPlan)

Source from the content-addressed store, hash-verified

391}
392
393fn strip_inner_query(inner_plan: &LogicalPlan) -> &LogicalPlan {
394 match inner_plan {
395 LogicalPlan::Projection(projection) => {
396 strip_inner_query(projection.input.as_ref())
397 }
398 LogicalPlan::SubqueryAlias(alias) => strip_inner_query(alias.input.as_ref()),
399 other => other,
400 }
401}
402
403fn get_correlated_expressions(inner_plan: &LogicalPlan) -> Result<Vec<Expr>> {
404 let mut exprs = vec![];

Callers 1

check_subquery_exprFunction · 0.85

Calls 1

as_refMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…