Rich-T-kid commented on code in PR #25311:
URL: https://github.com/apache/datafusion/pull/25311#discussion_r4020008875


##########
datafusion/pruning/src/pruning_predicate.rs:
##########
@@ -1792,8 +1792,9 @@ fn build_predicate_expression(
             } else {
                 Operator::Or
             };
-            let change_expr = in_list
-                .list()
+            let mut sorted_list: Vec<_> = in_list.list().to_vec();
+            sorted_list.sort_by_key(|a| a.to_string());

Review Comment:
   @asolimando updated this in the latest commit



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

Reply via email to