(op: &ast::JoinOperator)
| 316 | } |
| 317 | |
| 318 | fn is_nullable_join_side(op: &ast::JoinOperator) -> bool { |
| 319 | use ast::JoinOperator::*; |
| 320 | matches!(op, LeftOuter(_) | RightOuter(_) | FullOuter(_)) |
| 321 | } |
| 322 | |
| 323 | fn where_contains_subquery_ref(selection: &Option<ast::Expr>, cte_name: &str) -> bool { |
| 324 | match selection { |
no outgoing calls
no test coverage detected