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

Function ReturnsBuildData

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

Returns true if the join returns references to the build-side data.

Source from the content-addressed store, hash-verified

49
50/// Returns true if the join returns references to the build-side data.
51inline bool ReturnsBuildData(TJoinOp::type join_op) {
52 return join_op == TJoinOp::INNER_JOIN || join_op == TJoinOp::LEFT_OUTER_JOIN
53 || join_op == TJoinOp::RIGHT_OUTER_JOIN || join_op == TJoinOp::RIGHT_ANTI_JOIN
54 || join_op == TJoinOp::RIGHT_SEMI_JOIN || join_op == TJoinOp::FULL_OUTER_JOIN
55 || join_op == TJoinOp::CROSS_JOIN;
56}
57} // namespace impala

Callers 2

GetNextMethod · 0.85
GetNextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected