pvary commented on code in PR #14500:
URL: https://github.com/apache/iceberg/pull/14500#discussion_r2704790407


##########
api/src/main/java/org/apache/iceberg/expressions/Literals.java:
##########
@@ -622,10 +637,26 @@ public <T> Literal<T> to(Type type) {
       return null;
     }
 
+    @Override
+    public Comparator<UUID> comparator() {
+      if (cmp == null) {
+        cmp = useSignedComparator ? SIGNED_CMP : RFC_CMP;
+      }
+      return cmp;

Review Comment:
   nit: newline



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