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 0a2956036b0 branch-3.0: [fix](case) catch exception to figure out 
failures #54282 (#54298)
0a2956036b0 is described below

commit 0a2956036b01fd58a994cfd188cb85e1da299b4d
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Aug 4 22:12:40 2025 +0800

    branch-3.0: [fix](case) catch exception to figure out failures #54282 
(#54298)
    
    Cherry-picked from #54282
    
    Co-authored-by: Yongqiang YANG <[email protected]>
---
 .../compaction9/test_schema_change_with_compaction9.groovy           | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/regression-test/suites/cloud_p0/schema_change/compaction9/test_schema_change_with_compaction9.groovy
 
b/regression-test/suites/cloud_p0/schema_change/compaction9/test_schema_change_with_compaction9.groovy
index 4a9ea8ea41e..316b10283b1 100644
--- 
a/regression-test/suites/cloud_p0/schema_change/compaction9/test_schema_change_with_compaction9.groovy
+++ 
b/regression-test/suites/cloud_p0/schema_change/compaction9/test_schema_change_with_compaction9.groovy
@@ -60,8 +60,10 @@ suite('test_schema_change_with_compaction9', 'docker') {
             // check load state
             while (true) {
                 def stateResult = sql "show load where Label = '${loadLabel}'"
+                logger.info("State result: " + stateResult)
                 def loadState = stateResult[stateResult.size() - 
1][2].toString()
                 if ("CANCELLED".equalsIgnoreCase(loadState)) {
+                    logger.error("Load ${loadLabel} cancelled.")
                     throw new IllegalStateException("load ${loadLabel} 
failed.")
                 } else if ("FINISHED".equalsIgnoreCase(loadState)) {
                     break
@@ -164,6 +166,9 @@ suite('test_schema_change_with_compaction9', 'docker') {
             cluster.restartFrontends()
             sleep(30000)
             context.reconnectFe()
+        } catch (Exception e) {
+            logger.error("Exception: " + e.getMessage())
+            assertEquals(1, 2)
         } finally {
             if (injectBe != null) {
                 GetDebugPoint().disableDebugPointForAllBEs(injectName)


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

Reply via email to