Skip to content

Commit

Permalink
[fix](auto bucket) Fix hit not support alter estimate_partition_size #…
Browse files Browse the repository at this point in the history
…33670 (#37633)

cherry pick from #33670
  • Loading branch information
deardeng authored Jul 13, 2024
1 parent 00a5718 commit ec8467f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,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 ec8467f

Please sign in to comment.