| 775 | } |
| 776 | |
| 777 | void NestedLoopJoinProbe::checkProbeMismatchRow() { |
| 778 | // If we are processing the last batch of the build side, check if we need |
| 779 | // to add a probe mismatch record. |
| 780 | if (needsProbeMismatch(joinType_) && hasProbedAllBuildData() && |
| 781 | !probeRowHasMatch_) { |
| 782 | prepareOutput(); |
| 783 | addProbeMismatchRow(); |
| 784 | ++numOutputRows_; |
| 785 | } |
| 786 | } |
| 787 | |
| 788 | void NestedLoopJoinProbe::finishProbeInput() { |
| 789 | BOLT_CHECK_NOT_NULL(input_); |
nothing calls this directly
no test coverage detected