Tanya-W commented on code in PR #20605: URL: https://github.com/apache/doris/pull/20605#discussion_r1223754422
########## fe/fe-core/src/main/java/org/apache/doris/planner/OriginalPlanner.java: ########## @@ -572,50 +572,14 @@ private void pushSortToOlapScan() { * column unique id for `A` and `B` will put into outputColumnUniqueIds. * */ + // this opt will only work with nereidsPlanner private void pushOutColumnUniqueIdsToOlapScan(PlanFragment rootFragment, Analyzer analyzer) { Set<Integer> outputColumnUniqueIds = new HashSet<>(); - ArrayList<Expr> outputExprs = rootFragment.getOutputExprs(); - for (Expr expr : outputExprs) { - if (expr instanceof SlotRef) { - if (((SlotRef) expr).getColumn() != null) { - outputColumnUniqueIds.add(((SlotRef) expr).getColumn().getUniqueId()); - } - } - } + // add '-1', make compatible for nereidsPlanner Review Comment: updated -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org