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

Method Close

be/src/exec/aggregation-node.cc:146–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146void AggregationNode::Close(RuntimeState* state) {
147 if (is_closed()) return;
148 // All expr mem allocations should happen in the Aggregator.
149 DCHECK(expr_results_pool() == nullptr
150 || expr_results_pool()->total_allocated_bytes() == 0);
151 for (auto& agg : aggs_) agg->Close(state);
152 ExecNode::Close(state);
153}
154
155void AggregationNode::DebugString(int indentation_level, stringstream* out) const {
156 *out << string(indentation_level * 2, ' ');

Callers 1

OpenMethod · 0.45

Calls 1

total_allocated_bytesMethod · 0.45

Tested by

no test coverage detected