wzx140 commented on code in PR #3523:
URL: https://github.com/apache/fluss/pull/3523#discussion_r3517971377
##########
fluss-server/src/main/java/org/apache/fluss/server/utils/TableDescriptorValidation.java:
##########
@@ -179,6 +186,13 @@ public static void validateAlterTableProperties(
ConfigOptions.TABLE_KV_STANDBY_REPLICA_ENABLED.key()));
}
+ if (customKeysToChange.contains(PAIMON_PATH_KEY) &&
currentConfig.isDataLakeEnabled()) {
+ throw new InvalidAlterTableException(
+ String.format(
+ "'%s' can only be altered when datalake is
disabled.",
+ PAIMON_PATH_KEY));
+ }
Review Comment:
No need to change
--
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]