MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / is_left_join_operator

Function is_left_join_operator

nodedb-sql/src/planner/join/plan.rs:165–170  ·  view source on GitHub ↗

True when the join operator represents a LEFT join variant.

(op: &ast::JoinOperator)

Source from the content-addressed store, hash-verified

163
164/// True when the join operator represents a LEFT join variant.
165fn 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.
173fn scan_for_relation(rel: &ast::TableFactor, scope: &TableScope) -> Result<SqlPlan> {

Callers 1

plan_join_from_selectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected