Skip to content

Commit

Permalink
[fix](auto bucket) Fix hit not support alter estimate_partition_size (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
deardeng committed Jul 10, 2024
1 parent 12e6648 commit d76628d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ public void analyze(Analyzer analyzer) throws AnalysisException {
}
this.needTableStable = false;
this.opType = AlterOpType.MODIFY_TABLE_PROPERTY_SYNC;
} 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());
}
Expand Down

0 comments on commit d76628d

Please sign in to comment.