| 139 | } |
| 140 | |
| 141 | Status BlockingJoinNode::Reset(RuntimeState* state, RowBatch* row_batch) { |
| 142 | probe_batch_->TransferResourceOwnership(row_batch); |
| 143 | return ExecNode::Reset(state, row_batch); |
| 144 | } |
| 145 | |
| 146 | void BlockingJoinNode::Close(RuntimeState* state) { |
| 147 | if (is_closed()) return; |
no test coverage detected