From 44b80fb03b282eecd9740a7cc00a94847f683c2b Mon Sep 17 00:00:00 2001 From: zzzxl <33418555+zzzxl1993@users.noreply.github.com> Date: Sun, 25 Aug 2024 08:42:36 +0800 Subject: [PATCH] [fix](inverted index) Fix Session Variable Compatibility (#39884) https://github.com/apache/doris/pull/39889 --- gensrc/thrift/PaloInternalService.thrift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gensrc/thrift/PaloInternalService.thrift b/gensrc/thrift/PaloInternalService.thrift index 422b4baaff..a0e7b97ec9 100644 --- a/gensrc/thrift/PaloInternalService.thrift +++ b/gensrc/thrift/PaloInternalService.thrift @@ -310,6 +310,9 @@ struct TQueryOptions { 119: optional bool keep_carriage_return = false; // \n,\r\n split line in CSV. + 120: optional bool enable_match_without_inverted_index = true; + 121: optional bool enable_fallback_on_missing_inverted_index = true; + 122: optional i32 runtime_bloom_filter_min_size = 1048576; //Access Parquet/ORC columns by name by default. Set this property to `false` to access columns @@ -317,10 +320,7 @@ struct TQueryOptions { 123: optional bool hive_parquet_use_column_names = true; 124: optional bool hive_orc_use_column_names = true; - 125: optional bool enable_match_without_inverted_index = true; - 126: optional bool enable_fallback_on_missing_inverted_index = true; - - 127: optional i32 runtime_bloom_filter_max_size = 16777216; + 126: optional i32 runtime_bloom_filter_max_size = 16777216; 128: optional bool enable_verbose_profile = false; 129: optional i32 rpc_verbose_profile_max_instance_count = 0;