JingsongLi commented on code in PR #6394:
URL: https://github.com/apache/paimon/pull/6394#discussion_r2509585757


##########
paimon-common/src/main/java/org/apache/paimon/utils/InternalRowPartitionComputer.java:
##########
@@ -142,4 +143,13 @@ public static String partToSimpleString(
         String result = builder.toString();
         return result.substring(0, Math.min(result.length(), maxLength));
     }
+
+    public List<String> generateOrderPartValues(InternalRow in) {

Review Comment:
   Just use `new ArrayList<>(generatePartValues(in).values())`?



##########
paimon-common/src/main/java/org/apache/paimon/utils/InternalRowPartitionComputer.java:
##########
@@ -142,4 +143,13 @@ public static String partToSimpleString(
         String result = builder.toString();
         return result.substring(0, Math.min(result.length(), maxLength));
     }
+
+    public List<String> generateOrderPartValues(InternalRow in) {

Review Comment:
   Just use `new ArrayList<>(generatePartValues(in).values())`?



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

Reply via email to