xzj7019 commented on code in PR #45081:
URL: https://github.com/apache/doris/pull/45081#discussion_r1873092364


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/PredicatesSplitter.java:
##########
@@ -102,9 +104,9 @@ public Void visit(Expression expr, Void context) {
 
     public Predicates.SplitPredicate getSplitPredicate() {
         return Predicates.SplitPredicate.of(
-                equalPredicates.isEmpty() ? null : 
ExpressionUtils.and(equalPredicates),
-                rangePredicates.isEmpty() ? null : 
ExpressionUtils.and(rangePredicates),
-                residualPredicates.isEmpty() ? null : 
ExpressionUtils.and(residualPredicates));
+                equalPredicates.isEmpty() ? null : 
ExpressionUtils.and(Lists.newArrayList(equalPredicates)),

Review Comment:
   what's the opt point for these kind of change?



-- 
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

Reply via email to