[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.
This commit is contained in:
Xiangyu Wang
2023-12-06 20:46:09 +08:00
committed by GitHub
parent 3868926088
commit ec08850c08

View File

@ -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.