| 95 | } |
| 96 | |
| 97 | Status SubplanNode::Open(RuntimeState* state) { |
| 98 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |
| 99 | ScopedOpenEventAdder ea(this); |
| 100 | RETURN_IF_ERROR(ExecNode::Open(state)); |
| 101 | RETURN_IF_ERROR(child(0)->Open(state)); |
| 102 | return Status::OK(); |
| 103 | } |
| 104 | |
| 105 | Status SubplanNode::GetNext(RuntimeState* state, RowBatch* row_batch, bool* eos) { |
| 106 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |
no test coverage detected