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