True when the join operator represents a LEFT join variant.
(op: &ast::JoinOperator)
| 163 | |
| 164 | /// True when the join operator represents a LEFT join variant. |
| 165 | fn is_left_join_operator(op: &ast::JoinOperator) -> bool { |
| 166 | matches!( |
| 167 | op, |
| 168 | ast::JoinOperator::Left(_) | ast::JoinOperator::LeftOuter(_) |
| 169 | ) |
| 170 | } |
| 171 | |
| 172 | /// Build a `SqlPlan::Scan` for a named-table TableFactor. |
| 173 | fn scan_for_relation(rel: &ast::TableFactor, scope: &TableScope) -> Result<SqlPlan> { |
no outgoing calls
no test coverage detected