This is an automated email from the ASF dual-hosted git repository. gavinchou 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 20c476b3d31 [chore](config) Disable fuzzy vertical compaction to make CI stable (#42319) 20c476b3d31 is described below commit 20c476b3d31a4748ea267975454c4225342e258b Author: Siyang Tang <82279870+tangsiyang2...@users.noreply.github.com> AuthorDate: Thu Oct 24 13:58:56 2024 +0800 [chore](config) Disable fuzzy vertical compaction to make CI stable (#42319) --- be/src/common/config.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp index 790054f171f..ca339ae574e 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -1797,9 +1797,6 @@ Status set_fuzzy_configs() { ((distribution(*generator) % 2) == 0) ? "true" : "false"; fuzzy_field_and_value["enable_shrink_memory"] = ((distribution(*generator) % 2) == 0) ? "true" : "false"; - fuzzy_field_and_value["enable_vertical_compaction"] = - ((distribution(*generator) % 2) == 0) ? "true" : "false"; - fuzzy_field_and_value["string_overflow_size"] = ((distribution(*generator) % 2) == 0) ? "10" : "4294967295"; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org