MCPcopy Create free account
hub / github.com/apache/datafusion / negate

Method negate

datafusion/common/src/join_type.rs:234–240  ·  view source on GitHub ↗

Inverse the join side

(&self)

Source from the content-addressed store, hash-verified

232impl JoinSide {
233 /// Inverse the join side
234 pub fn negate(&self) -> Self {
235 match self {
236 JoinSide::Left => JoinSide::Right,
237 JoinSide::Right => JoinSide::Left,
238 JoinSide::None => JoinSide::None,
239 }
240 }
241}

Callers 6

simplify_not_exprFunction · 0.45
swapMethod · 0.45
build_unmatched_batchFunction · 0.45
join_with_probe_batchFunction · 0.45
negate_clauseFunction · 0.45
rewriteMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected