xuzifu666 commented on code in PR #4884:
URL: https://github.com/apache/paimon/pull/4884#discussion_r1912450915
##########
paimon-common/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -3163,4 +3206,26 @@ public enum MaterializedTableRefreshStatus {
ACTIVATED,
SUSPENDED
}
+
+ /** Actions performed during table writing. */
+ public enum WriteAction {
+
+ // Actions during commit.
+ PARTITION_EXPIRE("partition-expire"),
Review Comment:
Maybe we can add a option for all actions?
##########
paimon-common/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -2216,6 +2238,27 @@ public boolean writeOnly() {
return options.get(WRITE_ONLY);
}
+ public Set<WriteAction> writeSkippingActions() {
+ String str = options.get(WRITE_SKIP_ACTIONS);
Review Comment:
Here no default value,check isPresent?
--
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]