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

Method AddRowBatch

be/src/exec/row-batch-list.h:100–103  ·  view source on GitHub ↗

Add the 'row_batch' to the list. The RowBatch* and all of its resources are owned by the caller.

Source from the content-addressed store, hash-verified

98 /// Add the 'row_batch' to the list. The RowBatch* and all of its resources are owned
99 /// by the caller.
100 void AddRowBatch(RowBatch* row_batch) {
101 row_batches_.push_back(row_batch);
102 total_num_rows_ += row_batch->num_rows();
103 }
104
105 /// Resets the list.
106 void Reset() {

Callers 3

DeepCopyBuildBatchesMethod · 0.80
TEST_FFunction · 0.80
AddBuildBatchMethod · 0.80

Calls 2

push_backMethod · 0.80
num_rowsMethod · 0.45

Tested by 1

TEST_FFunction · 0.64