(inner_plan: &LogicalPlan)
| 391 | } |
| 392 | |
| 393 | fn 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 | |
| 403 | fn get_correlated_expressions(inner_plan: &LogicalPlan) -> Result<Vec<Expr>> { |
| 404 | let mut exprs = vec![]; |
no test coverage detected
searching dependent graphs…