starocean999 commented on code in PR #50198: URL: https://github.com/apache/doris/pull/50198#discussion_r2051877574
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/ModifyTablePropertiesOp.java: ########## @@ -371,6 +371,9 @@ public void validate(ConnectContext ctx) throws UserException { throw new AnalysisException("You can not modify property 'enable_unique_key_skip_bitmap_column'."); } else if (properties.containsKey(PropertyAnalyzer.PROPERTIES_STORAGE_PAGE_SIZE)) { throw new AnalysisException("You can not modify storage_page_size"); + } else if (properties.containsKey(PropertyAnalyzer.PROPERTIES_STORAGE_MEDIUM)) { + this.needTableStable = false; + this.opType = AlterOpType.MODIFY_TABLE_PROPERTY; Review Comment: other properties's opType is MODIFY_TABLE_PROPERTY_SYNC, please check if MODIFY_TABLE_PROPERTY is correct -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org