| 86 | } |
| 87 | |
| 88 | Status SubplanNode::Prepare(RuntimeState* state) { |
| 89 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |
| 90 | SetContainingSubplan(this, child(1)); |
| 91 | RETURN_IF_ERROR(ExecNode::Prepare(state)); |
| 92 | input_batch_.reset( |
| 93 | new RowBatch(child(0)->row_desc(), state->batch_size(), mem_tracker())); |
| 94 | return Status::OK(); |
| 95 | } |
| 96 | |
| 97 | Status SubplanNode::Open(RuntimeState* state) { |
| 98 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |
nothing calls this directly
no test coverage detected