(selection: &Option<ast::Expr>, cte_name: &str)
| 321 | } |
| 322 | |
| 323 | fn where_contains_subquery_ref(selection: &Option<ast::Expr>, cte_name: &str) -> bool { |
| 324 | match selection { |
| 325 | None => false, |
| 326 | Some(e) => expr_contains_subquery_ref(e, cte_name), |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | fn expr_contains_subquery_ref(expr: &ast::Expr, cte_name: &str) -> bool { |
| 331 | match expr { |
no test coverage detected