| 260 | } |
| 261 | |
| 262 | void SimpleAggregateFinalize::finalizeInternal(ExecutionContext* /*context*/) { |
| 263 | sharedState->finalizeAggregateStates(); |
| 264 | if (metrics) { |
| 265 | metrics->numOutputTuple.incrementByOne(); |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | void SimpleAggregateFinalize::executeInternal(ExecutionContext* context) { |
| 270 | DASSERT(sharedState->isReadyForFinalization()); |
nothing calls this directly
no test coverage detected