MCPcopy Create free account
hub / github.com/apache/impala / IsRightSemiJoin

Function IsRightSemiJoin

be/src/exec/join-op.h:35–37  ·  view source on GitHub ↗

Returns true if this is a semi-join that does not return tuple data from the probe rows.

Source from the content-addressed store, hash-verified

33/// Returns true if this is a semi-join that does not return tuple data from the
34/// probe rows.
35inline bool IsRightSemiJoin(TJoinOp::type join_op) {
36 return join_op == TJoinOp::RIGHT_ANTI_JOIN || join_op == TJoinOp::RIGHT_SEMI_JOIN;
37}
38
39inline bool IsSemiJoin(TJoinOp::type join_op) {
40 return IsLeftSemiJoin(join_op) || IsRightSemiJoin(join_op);

Callers 1

IsSemiJoinFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected