This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 44e60a93c5f branch-2.1: [fix] (property) Filter table property storage_policy for db sync #44756 (#45578) 44e60a93c5f is described below commit 44e60a93c5fa4b202830bc40634677480fd40cda Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Wed Dec 18 22:53:41 2024 +0800 branch-2.1: [fix] (property) Filter table property storage_policy for db sync #44756 (#45578) Cherry-picked from #44756 Co-authored-by: Uniqueyou <wangyix...@selectdb.com> --- fe/fe-core/src/main/java/org/apache/doris/catalog/TableProperty.java | 1 + 1 file changed, 1 insertion(+) diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/TableProperty.java b/fe/fe-core/src/main/java/org/apache/doris/catalog/TableProperty.java index 0c075191923..2569201167b 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/catalog/TableProperty.java +++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/TableProperty.java @@ -402,6 +402,7 @@ public class TableProperty implements Writable { public void removeInvalidProperties() { properties.remove(PropertyAnalyzer.PROPERTIES_STORAGE_POLICY); + storagePolicy = ""; properties.remove(PropertyAnalyzer.PROPERTIES_COLOCATE_WITH); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org