mirror of https://github.com/apache/druid.git
more squigglies
This commit is contained in:
parent
8eec41f934
commit
0b04114c12
|
@ -303,7 +303,9 @@ public class GroupByQueryEngine
|
|||
boolean hasNext = delegate.hasNext() || !cursor.isDone();
|
||||
if(!hasNext) {
|
||||
// cleanup
|
||||
for(BufferAggregator agg : aggregators) agg.close();
|
||||
for(BufferAggregator agg : aggregators) {
|
||||
agg.close();
|
||||
}
|
||||
}
|
||||
return hasNext;
|
||||
}
|
||||
|
|
|
@ -83,7 +83,9 @@ public class TimeseriesQueryEngine
|
|||
Result<TimeseriesResultValue> retVal = bob.build();
|
||||
|
||||
// cleanup
|
||||
for(Aggregator agg : aggregators) agg.close();
|
||||
for(Aggregator agg : aggregators) {
|
||||
agg.close();
|
||||
}
|
||||
|
||||
return retVal;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue