| 37 | } |
| 38 | |
| 39 | inline bool IsSemiJoin(TJoinOp::type join_op) { |
| 40 | return IsLeftSemiJoin(join_op) || IsRightSemiJoin(join_op); |
| 41 | } |
| 42 | |
| 43 | /// Returns true if the join needs to process unmatched build rows, false |
| 44 | /// otherwise. |
no test coverage detected