hawk9821 commented on code in PR #9219:
URL: https://github.com/apache/seatunnel/pull/9219#discussion_r2061463369
##########
seatunnel-connectors-v2/connector-paimon/src/main/java/org/apache/seatunnel/connectors/seatunnel/paimon/config/PaimonSinkOptions.java:
##########
@@ -40,6 +40,14 @@ public class PaimonSinkOptions extends PaimonBaseOptions {
.enumType(DataSaveMode.class)
.defaultValue(DataSaveMode.APPEND_DATA)
.withDescription("data_save_mode");
+
+ public static final Option<Boolean> NON_PRIMARY_KEY =
+ Options.key("paimon.table.non-primary-key")
+ .booleanType()
+ .defaultValue(false)
+ .withDescription(
+ "Default comma-separated list of columns that
identify a row in tables (primary key)");
Review Comment:
updated
--
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]