Skip to content

Commit

Permalink
[regression-test](case) fix test_bloom_filter_hit.groovy, not suitabl…
Browse files Browse the repository at this point in the history
…e for multi-be cluster
  • Loading branch information
shuke987 committed Jan 16, 2025
1 parent 8880c00 commit 768d628
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 """
Expand Down

0 comments on commit 768d628

Please sign in to comment.