airborne12 opened a new pull request, #42609: URL: https://github.com/apache/doris/pull/42609
## Proposed changes fix case error as below ``` Exception in bloom_filter_p0/test_bloom_filter_hit_with_renamed_column.groovy(line 154): } else { attempt++ if (attempt < maxRetries) { log.info("profileId is null, retrying after ${waitSeconds} second(s)... (Attempt ${attempt + 1}/${maxRetries})") sleep(waitSeconds * 1000) } } } assertTrue(profileId != null, "Failed to retrieve profileId after ${maxRetries} attempts") ^^^^^^^^^^^^^^^^^^^^^^^^^^ERROR LINE^^^^^^^^^^^^^^^^^^^^^^^^^^ return profileId } def query = """select C_COMMENT_NEW from ${tableName} where C_COMMENT_NEW='OK'""" def profileId = getProfileIdWithRetry(query, 3, 1) log.info("profileId:{}", profileId) def profileDetail = httpGet("/rest/v1/query_profile/" + profileId) log.info("profileDetail:{}", profileDetail) assertTrue(profileDetail.contains("BloomFilterFiltered: 15.0K (15000)")) Exception: org.opentest4j.AssertionFailedError: Failed to retrieve profileId after 3 attempts ==> expected: <true> but was: <false> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org