| 122 | } |
| 123 | |
| 124 | Status SelectNode::Reset(RuntimeState* state, RowBatch* row_batch) { |
| 125 | child_row_batch_->TransferResourceOwnership(row_batch); |
| 126 | child_row_idx_ = 0; |
| 127 | child_eos_ = false; |
| 128 | return ExecNode::Reset(state, row_batch); |
| 129 | } |
| 130 | |
| 131 | void SelectNode::Close(RuntimeState* state) { |
| 132 | if (is_closed()) return; |
no test coverage detected