hawk9821 commented on code in PR #8074: URL: https://github.com/apache/seatunnel/pull/8074#discussion_r1953955390
########## seatunnel-connectors-v2/connector-paimon/src/main/java/org/apache/seatunnel/connectors/seatunnel/paimon/sink/PaimonSinkWriter.java: ########## @@ -128,10 +128,9 @@ public PaimonSinkWriter( this.sinkPaimonTableSchema = this.paimonFileStoretable.schema(); this.newTableWrite(); BucketMode bucketMode = this.paimonFileStoretable.bucketMode(); - this.dynamicBucket = - BucketMode.DYNAMIC == bucketMode || BucketMode.GLOBAL_DYNAMIC == bucketMode; Review Comment: The paimon interface has changed in the new version ``` public enum BucketMode { HASH_FIXED, HASH_DYNAMIC, CROSS_PARTITION, BUCKET_UNAWARE; ... } ``` -- 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: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org