JingsongLi commented on code in PR #5445:
URL: https://github.com/apache/paimon/pull/5445#discussion_r2153558259
##########
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:
DEFAULT looks better to me.
--
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]