| 155 | } |
| 156 | |
| 157 | Status NestedLoopJoinNode::Reset(RuntimeState* state, RowBatch* row_batch) { |
| 158 | builder_->Reset(); |
| 159 | build_batches_ = NULL; |
| 160 | matched_probe_ = false; |
| 161 | current_probe_row_ = NULL; |
| 162 | probe_batch_pos_ = 0; |
| 163 | process_unmatched_build_rows_ = false; |
| 164 | return BlockingJoinNode::Reset(state, row_batch); |
| 165 | } |
| 166 | |
| 167 | void NestedLoopJoinNode::Close(RuntimeState* state) { |
| 168 | if (is_closed()) return; |
no outgoing calls
no test coverage detected