From ec08850c081ed0e835888829c65050310fe7ca06 Mon Sep 17 00:00:00 2001 From: Xiangyu Wang Date: Wed, 6 Dec 2023 20:46:09 +0800 Subject: [PATCH] [Config](multi-catalog) Enable query hive views as default. (#27906) Remove EXPERIMENTAL tag for enable_query_hive_views and set enable_query_hive_views to true as default. This feature has been used on our cluster which has more then a hundred thousands of tables for several months, i think it is fine to enable it as default. --- .../src/main/java/org/apache/doris/common/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java index d350a44c9f..9421364b48 100644 --- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java +++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java @@ -1890,8 +1890,8 @@ public class Config extends ConfigBase { * If set to true, doris will try to parse the ddl of a hive view and try to execute the query * otherwise it will throw an AnalysisException. */ - @ConfField(mutable = true, varType = VariableAnnotation.EXPERIMENTAL) - public static boolean enable_query_hive_views = false; + @ConfField(mutable = true) + public static boolean enable_query_hive_views = true; /** * If set to true, doris will automatically synchronize hms metadata to the cache in fe.