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

Function PrintRow

be/src/util/debug-util.cc:250–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248}
249
250void PrintRow(const TupleRow* row, const RowDescriptor& row_d, stringstream* out) {
251 *out << "[";
252 for (int i = 0; i < row_d.tuple_descriptors().size(); ++i) {
253 if (i != 0) *out << " ";
254 PrintTuple(row->GetTuple(i), *row_d.tuple_descriptors()[i], out);
255 }
256 *out << "]";
257}
258
259string PrintRow(const TupleRow* row, const RowDescriptor& row_d) {
260 stringstream out;

Callers 11

DebugStringTupleMethod · 0.85
GetNextLeftSemiJoinMethod · 0.85
GetNextRightSemiJoinMethod · 0.85
FindBuildMatchesMethod · 0.85
WriteMethod · 0.85
DebugStringMethod · 0.85
VLogRowsMethod · 0.85
PrintBatchFunction · 0.85
ToStringMethod · 0.85

Calls 4

PrintTupleFunction · 0.85
sizeMethod · 0.45
GetTupleMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected