daixiaoyu commented on code in PR #1069:
URL: https://github.com/apache/incubator-paimon/pull/1069#discussion_r1185714703


##########
paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/action/CompactAction.java:
##########
@@ -74,6 +77,12 @@ public CompactAction withPartitions(List<Map<String, 
String>> partitions) {
         return this;
     }
 
+    static Options getOptions(MultipleParameterTool params) {
+        Options options = new Options();
+        params.toMap().forEach((k, v) -> options.set(k, v));
+        return options;
+    }
+

Review Comment:
   That's a good idea, I'm going to modify it in this format
    



-- 
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: issues-unsubscr...@paimon.apache.org

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

Reply via email to