yiguolei commented on code in PR #14654: URL: https://github.com/apache/doris/pull/14654#discussion_r1034362007
########## be/src/common/configbase.cpp: ########## @@ -432,6 +433,20 @@ Status set_config(const std::string& field, const std::string& value, bool need_ it->second.type); } +Status set_fuzzy_config(const std::string& field, const std::string& value) { + return set_config(field, value, false, true); +} + +void set_fuzzy_configs() { + // random value true or false + Status s = set_fuzzy_config("enable_storage_vectorization", Review Comment: Not fuzzy this variable, maybe some code could not run under non-vectorization engine. I think you could fuzzy disable storage page cache. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org