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

Function PrintBatch

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

Source from the content-addressed store, hash-verified

263}
264
265void PrintBatch(const RowBatch* batch, stringstream* out) {
266 for (int i = 0; i < batch->num_rows(); ++i) {
267 PrintRow(batch->GetRow(i), *batch->row_desc(), out);
268 *out << "\n";
269 }
270}
271
272string PrintBatch(const RowBatch* batch) {
273 stringstream out;

Callers 1

TestRowBatchInternalMethod · 0.85

Calls 5

PrintRowFunction · 0.85
num_rowsMethod · 0.45
GetRowMethod · 0.45
row_descMethod · 0.45
strMethod · 0.45

Tested by 1

TestRowBatchInternalMethod · 0.68