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

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


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new 36b2dbe7ff6 branch-3.1: [fix](case) make some cases stable #54763 
(#54982)
36b2dbe7ff6 is described below

commit 36b2dbe7ff6092c2b39303a9bb6443199b10bd40
Author: Sun Chenyang <[email protected]>
AuthorDate: Tue Aug 19 15:57:20 2025 +0800

    branch-3.1: [fix](case) make some cases stable #54763 (#54982)
    
    pick from master #54763
---
 .../compaction/test_single_compaction_fault_injection.groovy       | 4 ++++
 .../suites/fault_injection_p0/test_variant_bloom_filter.groovy     | 7 ++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/compaction/test_single_compaction_fault_injection.groovy
 
b/regression-test/suites/compaction/test_single_compaction_fault_injection.groovy
index 5399002ba58..a8f3da94470 100644
--- 
a/regression-test/suites/compaction/test_single_compaction_fault_injection.groovy
+++ 
b/regression-test/suites/compaction/test_single_compaction_fault_injection.groovy
@@ -18,6 +18,10 @@
 import org.codehaus.groovy.runtime.IOGroovyMethods
 
 suite("test_single_compaction_fault_injection", "p2, nonConcurrent") {
+    if (isCloudMode()) {
+        logger.info("Skip test in cloud mode")
+        return
+    }
     def tableName = "test_single_compaction"
 
     def backendId_to_backendIP = [:]
diff --git 
a/regression-test/suites/fault_injection_p0/test_variant_bloom_filter.groovy 
b/regression-test/suites/fault_injection_p0/test_variant_bloom_filter.groovy
index 927a57d375d..3ac1738b9c7 100644
--- a/regression-test/suites/fault_injection_p0/test_variant_bloom_filter.groovy
+++ b/regression-test/suites/fault_injection_p0/test_variant_bloom_filter.groovy
@@ -61,7 +61,7 @@ suite("test_variant_bloom_filter", "nonConcurrent") {
         )
         DUPLICATE KEY(`k`)
         DISTRIBUTED BY HASH(k) BUCKETS 1
-        properties("replication_num" = "1", "disable_auto_compaction" = 
"false", "bloom_filter_columns" = "v");
+        properties("replication_num" = "1", "disable_auto_compaction" = 
"true", "bloom_filter_columns" = "v");
     """
     load_json_data.call(index_table, """${getS3Url() + 
'/regression/gharchive.m/2015-01-01-0.json'}""")
     load_json_data.call(index_table, """${getS3Url() + 
'/regression/gharchive.m/2015-01-01-0.json'}""")
@@ -72,6 +72,9 @@ suite("test_variant_bloom_filter", "nonConcurrent") {
     def backendId_to_backendIP = [:]
     def backendId_to_backendHttpPort = [:]
     getBackendIpHttpPort(backendId_to_backendIP, backendId_to_backendHttpPort);
+
+    sql """ select count() from ${index_table}; """
+
     def tablets = sql_return_maparray """ show tablets from ${index_table}; """
 
     for (def tablet in tablets) {
@@ -91,6 +94,8 @@ suite("test_variant_bloom_filter", "nonConcurrent") {
     // trigger compactions for all tablets in ${tableName}
     trigger_and_wait_compaction(index_table, "full")
 
+    sql """ select count() from ${index_table}; """
+
     for (def tablet in tablets) {
         int afterSegmentCount = 0
         String tablet_id = tablet.TabletId


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

Reply via email to