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

Method GetNext

be/src/exec/grouping-aggregator.cc:267–274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265}
266
267Status GroupingAggregator::GetNext(RuntimeState* state, RowBatch* row_batch, bool* eos) {
268 RETURN_IF_ERROR(QueryMaintenance(state));
269 if (!partition_eos_) {
270 RETURN_IF_ERROR(GetRowsFromPartition(state, row_batch));
271 }
272 *eos = partition_eos_;
273 return Status::OK();
274}
275
276Status GroupingAggregator::GetRowsFromPartition(
277 RuntimeState* state, RowBatch* row_batch) {

Callers 1

ProcessStreamMethod · 0.45

Calls 1

OKFunction · 0.85

Tested by

no test coverage detected