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

Method AddRows

be/src/runtime/row-batch.h:127–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125 /// can be called to update num_rows_. Two consecutive AddRow() calls without a
126 /// CommitRows() call between them have the same effect as a single call.
127 int ALWAYS_INLINE AddRows(int n) {
128 DCHECK_LE(num_rows_ + n, capacity_);
129 return num_rows_;
130 }
131
132 int ALWAYS_INLINE AddRow() { return AddRows(1); }
133

Callers 1

DeepCopyToMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected