This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 93879db9beb [fix](auto bucket) Fix hit not support alter
estimate_partition_size (#33670)
93879db9beb is described below
commit 93879db9beb1e37fe2a3e5afe48c7957140098e1
Author: deardeng <[email protected]>
AuthorDate: Mon Apr 15 19:18:34 2024 +0800
[fix](auto bucket) Fix hit not support alter estimate_partition_size
(#33670)
---
.../java/org/apache/doris/analysis/ModifyTablePropertiesClause.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java
b/fe/fe-core/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java
index c5a4036f81f..29cf66ac05d 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java
@@ -306,6 +306,8 @@ public class ModifyTablePropertiesClause extends
AlterTableClause {
throw new AnalysisException("You can not modify storage vault
name");
} else if
(properties.containsKey(PropertyAnalyzer.PROPERTIES_STORAGE_VAULT_ID)) {
throw new AnalysisException("You can not modify storage vault id");
+ } else if
(properties.containsKey(PropertyAnalyzer.PROPERTIES_ESTIMATE_PARTITION_SIZE)) {
+ throw new AnalysisException("You can not modify estimate partition
size");
} else {
throw new AnalysisException("Unknown table property: " +
properties.keySet());
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]