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

Method VLogRows

be/src/runtime/row-batch.cc:496–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

494}
495
496void RowBatch::VLogRows(const string& context) {
497 if (!VLOG_ROW_IS_ON) return;
498 VLOG_ROW << context << ": #rows=" << num_rows_;
499 for (int i = 0; i < num_rows_; ++i) {
500 VLOG_ROW << PrintRow(GetRow(i), *row_desc_);
501 }
502}
503
504void RowBatch::CopyRows(RowBatch* src, int num_rows, int src_offset, int dst_offset) {
505 DCHECK_GT(num_rows, 0);

Callers 2

FlushBufferedRecordsMethod · 0.80
ExecInternalMethod · 0.80

Calls 1

PrintRowFunction · 0.85

Tested by

no test coverage detected