Aitozi commented on code in PR #5445: URL: https://github.com/apache/paimon/pull/5445#discussion_r2153661922
########## paimon-api/src/main/java/org/apache/paimon/CoreOptions.java: ########## @@ -125,6 +125,18 @@ public class CoreOptions implements Serializable { + "if there is no primary key, the full row will be used.") .build()); + @Immutable + public static final ConfigOption<BucketFunctionType> BUCKET_FUNCTION_TYPE = + key("bucket-function.type") + .enumType(BucketFunctionType.class) + .defaultValue(BucketFunctionType.PAIMON) + .withDescription("The bucket function for paimon bucket"); + + /** Paimon bucket function type. */ + public enum BucketFunctionType { + PAIMON, Review Comment: renamed -- 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