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

Method GetBatch

be/src/runtime/blocking-row-batch-queue.cc:51–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51unique_ptr<RowBatch> BlockingRowBatchQueue::GetBatch() {
52 unique_ptr<RowBatch> result;
53 if (batch_queue_->BlockingGet(&result)) return result;
54 return unique_ptr<RowBatch>();
55}
56
57bool BlockingRowBatchQueue::IsFull() const {
58 return batch_queue_->AtCapacity();

Callers

nothing calls this directly

Calls 1

BlockingGetMethod · 0.45

Tested by

no test coverage detected