We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a876cf8 commit 422f67eCopy full SHA for 422f67e
fluss-lake/fluss-lake-paimon/src/main/java/org/apache/fluss/lake/paimon/utils/PaimonConversions.java
@@ -60,7 +60,10 @@ public class PaimonConversions {
60
static {
61
PAIMON_UNSETTABLE_OPTIONS.add(CoreOptions.BUCKET.key());
62
PAIMON_UNSETTABLE_OPTIONS.add(CoreOptions.BUCKET_KEY.key());
63
- PAIMON_UNSETTABLE_OPTIONS.add(CoreOptions.PARTITION_GENERATE_LEGCY_NAME.key());
+ // use literal directly, a future paimon version will rename
64
+ // the variable PARTITION_GENERATE_LEGCY_NAME to PARTITION_GENERATE_LEGACY_NAME, use literal
65
+ // can help avoid NoSuchField error
66
+ PAIMON_UNSETTABLE_OPTIONS.add("partition.legacy-name");
67
}
68
69
public static RowKind toRowKind(ChangeType changeType) {
0 commit comments