This is an automated email from the ASF dual-hosted git repository.

hello-stephen 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 ee0dcfe5a77 [fix](config) Remove fuzzy of string_overflow_size (#63341)
ee0dcfe5a77 is described below

commit ee0dcfe5a77673a1da68f3baedcabe77c0732b75
Author: zclllyybb <[email protected]>
AuthorDate: Mon May 18 15:05:14 2026 +0800

    [fix](config) Remove fuzzy of string_overflow_size (#63341)
    
    Related PR: https://github.com/apache/doris/pull/63183
    
    Problem Summary:
    
    don't fuzzy it since the overflow may occurs in loading path which has
    no proper exception deal.
---
 be/src/common/config.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index 75215345f74..6351dbb2021 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -2259,8 +2259,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["string_overflow_size"] =
-            ((distribution(*generator) % 2) == 0) ? "10" : "4294967295";
     fuzzy_field_and_value["skip_writing_empty_rowset_metadata"] =
             ((distribution(*generator) % 2) == 0) ? "true" : "false";
     fuzzy_field_and_value["enable_packed_file"] =


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to