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

dataroaring 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 22470f03b3a [fix](case) fix some failure cases (#55687)
22470f03b3a is described below

commit 22470f03b3a053033bd1fe8f0425572d6935a4f4
Author: Yongqiang YANG <[email protected]>
AuthorDate: Fri Sep 5 14:37:52 2025 +0800

    [fix](case) fix some failure cases (#55687)
---
 ...paction_remove_old_version_delete_bitmap.groovy | 24 +++++++++++-----------
 ...t_cloud_mow_stream_load_with_commit_fail.groovy |  2 +-
 .../cloud/test_cloud_version_already_merged.groovy |  2 +-
 3 files changed, 14 insertions(+), 14 deletions(-)

diff --git 
a/regression-test/suites/compaction/test_cu_compaction_remove_old_version_delete_bitmap.groovy
 
b/regression-test/suites/compaction/test_cu_compaction_remove_old_version_delete_bitmap.groovy
index 7b072666c1d..25c6470a675 100644
--- 
a/regression-test/suites/compaction/test_cu_compaction_remove_old_version_delete_bitmap.groovy
+++ 
b/regression-test/suites/compaction/test_cu_compaction_remove_old_version_delete_bitmap.groovy
@@ -92,9 +92,9 @@ suite("test_cu_compaction_remove_old_version_delete_bitmap", 
"nonConcurrent") {
 
         String command = sb.toString()
         logger.info(command)
-        process = command.execute()
-        code = process.waitFor()
-        out = process.getText()
+        def process = command.execute()
+        def code = process.waitFor()
+        def out = process.getText()
         logger.info("Get tablet status:  =" + code + ", out=" + out)
         assertEquals(code, 0)
         def tabletStatus = parseJson(out.trim())
@@ -112,9 +112,9 @@ 
suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {
 
             String command = sb.toString()
             logger.info(command)
-            process = command.execute()
-            code = process.waitFor()
-            out = process.getText()
+            def process = command.execute()
+            def code = process.waitFor()
+            def out = process.getText()
             logger.info("Get compaction status: code=" + code + ", out=" + out)
             assertEquals(code, 0)
             def compactionStatus = parseJson(out.trim())
@@ -132,9 +132,9 @@ 
suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {
 
         String command = sb.toString()
         logger.info(command)
-        process = command.execute()
-        code = process.waitFor()
-        out = process.getText()
+        def process = command.execute()
+        def code = process.waitFor()
+        def out = process.getText()
         logger.info("Get local delete bitmap count status:  =" + code + ", 
out=" + out)
         assertEquals(code, 0)
         def deleteBitmapStatus = parseJson(out.trim())
@@ -150,9 +150,9 @@ 
suite("test_cu_compaction_remove_old_version_delete_bitmap", "nonConcurrent") {
 
         String command = sb.toString()
         logger.info(command)
-        process = command.execute()
-        code = process.waitFor()
-        out = process.getText()
+        def process = command.execute()
+        def code = process.waitFor()
+        def out = process.getText()
         logger.info("Get ms delete bitmap count status:  =" + code + ", out=" 
+ out)
         assertEquals(code, 0)
         def deleteBitmapStatus = parseJson(out.trim())
diff --git 
a/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_stream_load_with_commit_fail.groovy
 
b/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_stream_load_with_commit_fail.groovy
index aaeb596fa07..77555980dba 100644
--- 
a/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_stream_load_with_commit_fail.groovy
+++ 
b/regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_stream_load_with_commit_fail.groovy
@@ -146,7 +146,7 @@ suite("test_cloud_mow_stream_load_with_commit_fail", 
"nonConcurrent") {
             file "test_stream_load0.csv"
 
             time 10000 // limit inflight 10s
-            directToBe backendIdToBackendIP.get(backendId), 
backendId_to_backendHttpPort.get(backendId)
+            directToBe backendIdToBackendIP.get(backendId), 
backendId_to_backendHttpPort.get(backendId).toInteger()
 
             check { result, exception, startTime, endTime ->
                 log.info("Stream load result: ${result}")
diff --git 
a/regression-test/suites/fault_injection_p0/cloud/test_cloud_version_already_merged.groovy
 
b/regression-test/suites/fault_injection_p0/cloud/test_cloud_version_already_merged.groovy
index f7453c93300..111fe556dfc 100644
--- 
a/regression-test/suites/fault_injection_p0/cloud/test_cloud_version_already_merged.groovy
+++ 
b/regression-test/suites/fault_injection_p0/cloud/test_cloud_version_already_merged.groovy
@@ -116,7 +116,7 @@ suite("test_cloud_version_already_merged", "nonConcurrent") 
{
 
         test {
             sql """ SELECT * from ${tblName} ORDER BY k1 """
-            exception "version already merged, meet error during remote 
capturing rowsets"
+            exception "versions are already compacted"
         }
 
     } finally {


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

Reply via email to