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: [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]