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

Method DebugString

be/src/exec/hbase/hbase-scan-node.cc:298–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296}
297
298void HBaseScanNode::DebugString(int indentation_level, stringstream* out) const {
299 *out << string(indentation_level * 2, ' ');
300 *out << "HBaseScanNode(tupleid=" << tuple_id_ << " table=" << table_name_;
301 for(int i = 0; i < scan_range_vector_.size(); i++) {
302 *out << " region(" << i << "):";
303 HBaseTableScanner::ScanRange scan_range = scan_range_vector_[i];
304 scan_range.DebugString(0, out);
305 }
306 *out << ")" << endl;
307 for (int i = 0; i < children_.size(); ++i) {
308 children_[i]->DebugString(indentation_level + 1, out);
309 }
310}

Callers 13

HandleConvertErrorMethod · 0.45
ValidatePrimitiveTypeMethod · 0.45
CreateMethod · 0.45
OrcColumnReaderMethod · 0.45
CreateChildForSlotMethod · 0.45
OrcStructReaderMethod · 0.45
OrcListReaderMethod · 0.45
OrcMapReaderMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected