| 176 | } |
| 177 | |
| 178 | Status IcebergDeleteNode::ProcessProbeBatch(RowBatch* out_batch) { |
| 179 | DCHECK_ENUM_EQ(probe_state_, ProbeState::PROBING_IN_BATCH); |
| 180 | DCHECK_NE(probe_batch_pos_, -1); |
| 181 | int rows_added = 0; |
| 182 | TPrefetchMode::type prefetch_mode = runtime_state_->query_options().prefetch_mode; |
| 183 | SCOPED_TIMER(probe_timer_); |
| 184 | |
| 185 | rows_added = ProcessProbeBatch(prefetch_mode, out_batch); |
| 186 | out_batch->CommitRows(rows_added); |
| 187 | return Status::OK(); |
| 188 | } |
| 189 | |
| 190 | Status IcebergDeleteNode::GetNext(RuntimeState* state, RowBatch* out_batch, bool* eos) { |
| 191 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |
nothing calls this directly
no test coverage detected