| 30 | namespace impala { |
| 31 | |
| 32 | Status SystemTableScanNode::Prepare(RuntimeState* state) { |
| 33 | RETURN_IF_ERROR(ScanNode::Prepare(state)); |
| 34 | tuple_desc_ = state->desc_tbl().GetTupleDescriptor( |
| 35 | plan_node().tnode_->system_table_scan_node.tuple_id); |
| 36 | DCHECK(tuple_desc_ != nullptr); |
| 37 | return Status::OK(); |
| 38 | } |
| 39 | |
| 40 | Status SystemTableScanNode::Open(RuntimeState* state) { |
| 41 | SCOPED_TIMER(runtime_profile_->total_time_counter()); |
nothing calls this directly
no test coverage detected