morrySnow commented on code in PR #46303: URL: https://github.com/apache/doris/pull/46303#discussion_r1903764083
########## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/expression/rules/RangeInference.java: ########## @@ -154,7 +155,11 @@ private ValueDesc simplify(ExpressionRewriteContext context, List<ValueDesc> valuePerRefs = Lists.newArrayList(); for (Entry<Expression, Collection<ValueDesc>> referenceValues : groupByReference.asMap().entrySet()) { + Expression reference = referenceValues.getKey(); List<ValueDesc> valuePerReference = (List) referenceValues.getValue(); + if (!isAnd) { + valuePerReference = ValueDesc.unionDiscreteAndRange(context, reference, valuePerReference); Review Comment: It might significantly slow down the planning speed? test with more than 10k disjunction -- 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