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

Method DebugStringTuple

be/src/exec/hash-table.cc:653–664  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

651}
652
653void HashTable::DebugStringTuple(stringstream& ss, HtData& htdata,
654 const RowDescriptor* desc) {
655 if (stores_tuples_) {
656 ss << "(" << htdata.tuple << ")";
657 } else {
658 ss << "(" << htdata.flat_row << ")";
659 }
660 if (desc != NULL) {
661 Tuple* row[num_build_tuples_];
662 ss << " " << PrintRow(GetRow(htdata, reinterpret_cast<TupleRow*>(row)), *desc);
663 }
664}
665
666string HashTable::DebugString(bool skip_empty, bool show_match,
667 const RowDescriptor* desc) {

Callers

nothing calls this directly

Calls 1

PrintRowFunction · 0.85

Tested by

no test coverage detected