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

dataroaring pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new b96833b3707 branch-4.0: [fix](case) fix cloud_delete_bitmap/test_load 
#56536 (#56572)
b96833b3707 is described below

commit b96833b3707b925f73bff11ebd317a8c948bfe06
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Sep 28 21:40:44 2025 +0800

    branch-4.0: [fix](case) fix cloud_delete_bitmap/test_load #56536 (#56572)
    
    Cherry-picked from #56536
    
    Co-authored-by: meiyi <me...@selectdb.com>
---
 .../unique_with_mow_p0/cloud_delete_bitmap/test_load.groovy    | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/regression-test/suites/unique_with_mow_p0/cloud_delete_bitmap/test_load.groovy
 
b/regression-test/suites/unique_with_mow_p0/cloud_delete_bitmap/test_load.groovy
index 0e5ae6fe7cc..438f7f99a6c 100644
--- 
a/regression-test/suites/unique_with_mow_p0/cloud_delete_bitmap/test_load.groovy
+++ 
b/regression-test/suites/unique_with_mow_p0/cloud_delete_bitmap/test_load.groovy
@@ -20,8 +20,10 @@ import org.apache.doris.regression.suite.ClusterOptions
 suite("test_load", "docker") {
     def options = new ClusterOptions()
     options.beConfigs += [
-        'delete_bitmap_store_version=2',
-        'delete_bitmap_max_bytes_store_in_fdb=-1',
+        'delete_bitmap_store_write_version=2',
+        'delete_bitmap_store_read_version=2',
+        'delete_bitmap_store_v2_max_bytes_in_fdb=-1',
+        'enable_sync_tablet_delete_bitmap_by_cache=false',
         'enable_delete_bitmap_store_v2_check_correctness=true',
         'enable_java_support=false'
     ]
@@ -46,8 +48,8 @@ suite("test_load", "docker") {
         sql """ insert into test_load values(3, 3), (4, 4); """
         sql """ insert into test_load values(1, 10), (3, 30); """
         order_qt_select_1 "SELECT * FROM test_load;"
-        // change be config: delete_bitmap_max_bytes_store_in_fdb=0
-        update_all_be_config("delete_bitmap_max_bytes_store_in_fdb", "0")
+        // change be config: delete_bitmap_store_v2_max_bytes_in_fdb=0
+        update_all_be_config("delete_bitmap_store_v2_max_bytes_in_fdb", "0")
         sql """ insert into test_load values(2, 20), (4, 40); """
         order_qt_select_2 "SELECT * FROM test_load;"
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to