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

Method Close

be/src/exec/streaming-aggregation-node.cc:206–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204}
205
206void StreamingAggregationNode::Close(RuntimeState* state) {
207 if (is_closed()) return;
208 // All expr mem allocations should happen in the Aggregator.
209 DCHECK(expr_results_pool() == nullptr
210 || expr_results_pool()->total_allocated_bytes() == 0);
211 for (auto& agg : aggs_) agg->Close(state);
212 child_batch_.reset();
213 ExecNode::Close(state);
214}
215
216void StreamingAggregationNode::DebugString(
217 int indentation_level, stringstream* out) const {

Callers 1

GetRowsStreamingMethod · 0.45

Calls 2

resetMethod · 0.65
total_allocated_bytesMethod · 0.45

Tested by

no test coverage detected