zstan commented on code in PR #5855:
URL: https://github.com/apache/ignite-3/pull/5855#discussion_r2101823575


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/util/RexUtils.java:
##########
@@ -1354,4 +1354,23 @@ public RexNode visitInputRef(RexInputRef inputRef) {
             return new RexLocalRef(inputRef.getIndex(), inputRef.getType());
         }
     }
+
+    /** Applies a {@link RexShuttle} to a list of {@link SearchBounds}. */
+    public static @Nullable List<SearchBounds> processSearchBounds(RexShuttle 
shuttle, @Nullable List<SearchBounds> searchBounds) {
+        if (searchBounds == null || searchBounds.isEmpty()) {

Review Comment:
   CollectionUtils.nullOrEmpty ?



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to