MCPcopy Create free account
hub / github.com/apache/arrow / ExecBatch

Method ExecBatch

cpp/src/arrow/compute/exec.cc:74–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74ExecBatch::ExecBatch(const RecordBatch& batch)
75 : values(batch.num_columns()), length(batch.num_rows()) {
76 auto columns = batch.column_data();
77 std::move(columns.begin(), columns.end(), values.begin());
78}
79
80bool ExecBatch::Equals(const ExecBatch& other) const {
81 return guarantee == other.guarantee && values == other.values;

Callers 1

TEST_FFunction · 0.45

Calls 5

column_dataMethod · 0.80
num_columnsMethod · 0.45
num_rowsMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by 1

TEST_FFunction · 0.36