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

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


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

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

    [Test](bloom filter) add retry query for bloom filter test case #42937 
(#42974)
    
    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