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

hellostephen 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 2299dde53ab [regression-test](case) fix test_bloom_filter_hit.groovy 
(#47057)
2299dde53ab is described below

commit 2299dde53ab63f7fb614858cf97c21eb8f5f7768
Author: shuke <[email protected]>
AuthorDate: Thu Jan 23 15:44:49 2025 +0800

    [regression-test](case) fix test_bloom_filter_hit.groovy (#47057)
    
    ### What problem does this PR solve?
    
    Issue Number: close #xxx
    
    Related PR: #xxx
    #46890
    
    Problem Summary:
    not suitable for multi-be cluster
---
 regression-test/suites/bloom_filter_p0/test_bloom_filter_hit.groovy | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit.groovy 
b/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit.groovy
index 3c7b7340743..8835e89d947 100644
--- a/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit.groovy
+++ b/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit.groovy
@@ -20,6 +20,12 @@ import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
 suite("test_bloom_filter_hit") {
+    def be_num = sql "show backends;"
+    if (be_num.size() > 1) {
+        // not suitable for multiple be cluster.
+        return
+    }
+
     def tableName = "test_bloom_filter_hit"
     sql """ DROP TABLE IF EXISTS ${tableName} """
     sql """


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

Reply via email to