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

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


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 0b640b938c3 [Test](bloom filter) add retry query for bloom filter test 
case #42937 (#42975)
0b640b938c3 is described below

commit 0b640b938c30520d4af2a6d749072e50b16261a6
Author: airborne12 <airborn...@gmail.com>
AuthorDate: Thu Oct 31 14:02:50 2024 +0800

    [Test](bloom filter) add retry query for bloom filter test case #42937 
(#42975)
    
    cherry pick from #42937
---
 .../bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
 
b/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
index c86be96d4b1..059d7c95445 100644
--- 
a/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
+++ 
b/regression-test/suites/bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy
@@ -112,7 +112,7 @@ suite("test_bloom_filter_hit_with_renamed_column") {
 
     sql """ SET enable_profile = true """
     sql """ set parallel_scan_min_rows_per_scanner = 2097152; """
-    sql """ select C_COMMENT_NEW from ${tableName} where C_COMMENT_NEW='OK' """
+    //sql """ select C_COMMENT_NEW from ${tableName} where C_COMMENT_NEW='OK' 
"""
 
     // get and check profile with retry logic
     def getProfileIdWithRetry = { query, maxRetries, waitSeconds ->
@@ -122,6 +122,7 @@ suite("test_bloom_filter_hit_with_renamed_column") {
         int attempt = 0
 
         while (attempt < maxRetries) {
+            sql """ ${query} """
             profiles = httpGet(profileUrl)
             log.info("profiles attempt ${attempt + 1}: {}", profiles)
             if (profiles == null) {


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

Reply via email to