yujun777 commented on code in PR #49851: URL: https://github.com/apache/doris/pull/49851#discussion_r2059500048
########## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/ExtractSingleTableExpressionFromDisjunction.java: ########## @@ -137,6 +142,23 @@ private Optional<Expression> extractSingleTableExpression(Expression expr, Strin for (Expression conjunct : conjuncts) { if (isSingleTableExpression(conjunct, qualifier)) { output.add(conjunct); + } else if (conjunct instanceof Or) { Review Comment: had added -- 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