This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-2.0-alpha in repository https://gitbox.apache.org/repos/asf/doris.git
commit 6dc7237346cb3d133d2d3366b6edd48e4bcf3b8f Author: xueweizhang <[email protected]> AuthorDate: Tue Apr 18 14:11:40 2023 +0800 [fix](olap) fix lost disable_auto_compaction info when fe restart (#18757) Signed-off-by: nextdreamblue <[email protected]> --- fe/fe-core/src/main/java/org/apache/doris/catalog/TableProperty.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 f8b1c15082..add5162d75 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 @@ -347,7 +347,8 @@ public class TableProperty implements Writable { .buildCompressionType() .buildStoragePolicy() .buildEnableLightSchemaChange() - .buildStoreRowColumn(); + .buildStoreRowColumn() + .buildDisableAutoCompaction(); if (Env.getCurrentEnvJournalVersion() < FeMetaVersion.VERSION_105) { // get replica num from property map and create replica allocation String repNum = tableProperty.properties.remove(PropertyAnalyzer.PROPERTIES_REPLICATION_NUM); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
