Kikyou1997 commented on code in PR #9303:
URL: https://github.com/apache/incubator-doris/pull/9303#discussion_r861141153
##########
fe/fe-core/src/main/java/org/apache/doris/planner/SingleNodePlanner.java:
##########
@@ -1159,6 +1159,10 @@ private PlanNode createAggregationPlan(SelectStmt
selectStmt, Analyzer analyzer,
aggInfo.getSecondPhaseDistinctAggInfo());
newRoot.init(analyzer);
Preconditions.checkState(newRoot.hasValidStats());
+ } else if (aggInfo.isMetaScan()) {
+ Preconditions.checkState(root instanceof MetaScanNode);
+ MetaScanNode metaScanNode = (MetaScanNode) root;
+ metaScanNode.pullDictSlots(aggInfo);
Review Comment:
I think it's not necessary to do check here currently, have done this in
the analyze phase
--
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]