This is an automated email from the ASF dual-hosted git repository.

dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new bd66f122351 [fix](merge-cloud) Ignore in_memory property in cloud mode 
(#30702)
bd66f122351 is described below

commit bd66f12235194ce0bb8f506d2fe601e13f4e708a
Author: walter <w41te...@gmail.com>
AuthorDate: Fri Feb 2 14:02:28 2024 +0800

    [fix](merge-cloud) Ignore in_memory property in cloud mode (#30702)
---
 .../java/org/apache/doris/cloud/common/util/CloudPropertyAnalyzer.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/common/util/CloudPropertyAnalyzer.java
 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/common/util/CloudPropertyAnalyzer.java
index 7f3aa05a79d..a63fbaa5f45 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/common/util/CloudPropertyAnalyzer.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/common/util/CloudPropertyAnalyzer.java
@@ -27,8 +27,9 @@ import com.google.common.collect.ImmutableList;
 public class CloudPropertyAnalyzer extends PropertyAnalyzer {
 
     public CloudPropertyAnalyzer() {
+        // Ignore unsupported properties in cloud mode
         forceProperties = ImmutableList.of(
-                RewriteProperty.replace(PropertyAnalyzer.PROPERTIES_INMEMORY, 
"true"),
+                RewriteProperty.delete(PropertyAnalyzer.PROPERTIES_INMEMORY),
                 
RewriteProperty.delete(PropertyAnalyzer.PROPERTIES_STORAGE_MEDIUM),
                 
RewriteProperty.replace(PropertyAnalyzer.PROPERTIES_STORAGE_FORMAT, "V2"),
                 
RewriteProperty.delete(PropertyAnalyzer.PROPERTIES_STORAGE_POLICY),


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to