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

Method AccumulationQueue

cpp/src/arrow/acero/accumulation_queue.cc:32–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30namespace util {
31using arrow::compute::ExecBatch;
32AccumulationQueue::AccumulationQueue(AccumulationQueue&& that) {
33 this->batches_ = std::move(that.batches_);
34 this->row_count_ = that.row_count_;
35 that.Clear();
36}
37
38AccumulationQueue& AccumulationQueue::operator=(AccumulationQueue&& that) {
39 this->batches_ = std::move(that.batches_);

Callers

nothing calls this directly

Calls 1

ClearMethod · 0.45

Tested by

no test coverage detected