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

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


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new f63d5709c9c branch-3.1 [fix](regression) multi-contains in 
ExplainAction print undefined string #46095 (#56288)
f63d5709c9c is described below

commit f63d5709c9c41b0a96c066805279c4b3a80823f8
Author: minghong <[email protected]>
AuthorDate: Thu Sep 25 17:27:22 2025 +0800

    branch-3.1 [fix](regression) multi-contains in ExplainAction print 
undefined string #46095 (#56288)
    
    pick #46095
---
 .../main/groovy/org/apache/doris/regression/action/ExplainAction.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/ExplainAction.groovy
 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/ExplainAction.groovy
index f7a28c85acd..047616a80ba 100644
--- 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/ExplainAction.groovy
+++ 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/ExplainAction.groovy
@@ -118,7 +118,7 @@ class ExplainAction implements SuiteAction {
             for (Map.Entry entry : multiContainsStrings) {
                 int count = explainString.count(entry.key);
                 if (count != entry.value) {
-                    String msg = ("Explain and check failed, expect 
multiContains '${string}' , '${entry.value}' times, actural '${count}' times."
+                    String msg = ("Explain and check failed, expect 
multiContains '${entry.key}' , '${entry.value}' times, actural '${count}' 
times."
                             + "Actual explain string 
is:\n${explainString}").toString()
                     def t = new IllegalStateException(msg)
                     throw t


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

Reply via email to