gortiz commented on code in PR #14727:
URL: https://github.com/apache/pinot/pull/14727#discussion_r1905490913
##########
pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/operator/AggregateOperator.java:
##########
@@ -64,12 +74,19 @@ public class AggregateOperator extends MultiStageOperator {
private final DataSchema _resultSchema;
private final MultistageAggregationExecutor _aggregationExecutor;
private final MultistageGroupByExecutor _groupByExecutor;
+
@Nullable
private TransferableBlock _eosBlock;
private final StatMap<StatKey> _statMap = new StatMap<>(StatKey.class);
private boolean _hasConstructedAggregateBlock;
+ private final boolean _errorOnNumGroupsLimit;
+
+ // trimming - related members
+ private final int _groupTrimSize;
+ private final PriorityQueue<Object[]> _priorityQueue;
Review Comment:
it should be annotated as nullable
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]