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

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


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new 9e9788fd1ed branch-4.0: [fix](case) Fix recycler case for global 
variables (#56538)
9e9788fd1ed is described below

commit 9e9788fd1ed3574abb764267b331e4e9eef36dc1
Author: Yixuan Wang <[email protected]>
AuthorDate: Sun Sep 28 11:30:07 2025 +0800

    branch-4.0: [fix](case) Fix recycler case for global variables (#56538)
---
 regression-test/suites/cloud_p0/recycler/test_recycler.groovy       | 2 +-
 .../cloud_p0/recycler/test_recycler_with_truncate_table.groovy      | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/regression-test/suites/cloud_p0/recycler/test_recycler.groovy 
b/regression-test/suites/cloud_p0/recycler/test_recycler.groovy
index ec4863ef381..7d56edcdb56 100644
--- a/regression-test/suites/cloud_p0/recycler/test_recycler.groovy
+++ b/regression-test/suites/cloud_p0/recycler/test_recycler.groovy
@@ -114,7 +114,7 @@ suite("test_recycler") {
         checkJobInfoApi.call() {
             respCode, body ->
                 logger.info("http cli result: ${body} ${respCode}")
-                checkJobInfoResult = body
+                def checkJobInfoResult = body
                 logger.info("checkJobInfoResult:${checkJobInfoResult}")
                 assertEquals(respCode, 200)
                 def info = parseJson(checkJobInfoResult.trim())
diff --git 
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_truncate_table.groovy
 
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_truncate_table.groovy
index bf33ce90e54..15f18fbc009 100644
--- 
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_truncate_table.groovy
+++ 
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_truncate_table.groovy
@@ -23,6 +23,12 @@ suite("test_recycler_with_truncate_table") {
     def instanceId = context.config.instanceId;
     def cloudUniqueId = context.config.cloudUniqueId
     def tableName = 'test_recycler_with_truncate_table'
+    def recycleBeforeTest = context.config.recycleBeforeTest
+
+    if( recycleBeforeTest == 'true') {
+        triggerRecycle(token, instanceId)
+        Thread.sleep(60000)
+    }
 
     sql """ DROP TABLE IF EXISTS ${tableName} FORCE"""
     sql """


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

Reply via email to