MCPcopy Create free account
hub / github.com/apache/impala / Prepare

Method Prepare

be/src/exec/system-table-scan-node.cc:32–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30namespace impala {
31
32Status 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
40Status SystemTableScanNode::Open(RuntimeState* state) {
41 SCOPED_TIMER(runtime_profile_->total_time_counter());

Callers

nothing calls this directly

Calls 2

OKFunction · 0.85
GetTupleDescriptorMethod · 0.80

Tested by

no test coverage detected