mirror of
https://github.com/apache/druid.git
synced 2025-02-17 15:35:56 +00:00
fix groupBy deserialization
This commit is contained in:
parent
72eb64a40c
commit
3261fd879a
@ -355,7 +355,7 @@ public class GroupByQueryQueryToolChest extends QueryToolChest<Row, GroupByQuery
|
||||
|
||||
while (aggsIter.hasNext()) {
|
||||
final AggregatorFactory factory = aggsIter.next();
|
||||
Object agg = event.remove(factory.getName());
|
||||
Object agg = event.get(factory.getName());
|
||||
if (agg != null) {
|
||||
event.put(factory.getName(), factory.deserialize(agg));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user