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

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


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 637ecaf3adf branch-2.1: [fix](suite) Fix qt_master_sql arg type #46772 
(#46777)
637ecaf3adf is described below

commit 637ecaf3adfc11af8b5f5290dc31f21642d61817
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jan 11 15:40:50 2025 +0800

    branch-2.1: [fix](suite) Fix qt_master_sql arg type #46772 (#46777)
    
    Cherry-picked from #46772
    
    Co-authored-by: walter <maoch...@selectdb.com>
---
 .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
index 0d0d6054b16..89bf5a4eba0 100644
--- 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
+++ 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
@@ -1105,7 +1105,7 @@ class Suite implements GroovyInterceptable {
                 } else if (tag.contains("target_sql")) {
                     tupleResult = 
JdbcUtils.executeToStringList(context.getTargetConnection(this), (String) arg)
                 } else if (tag.contains("master_sql")) {
-                    tupleResult = 
JdbcUtils.executeToStringList(context.getMasterConnection(), 
(PreparedStatement) arg)
+                    tupleResult = 
JdbcUtils.executeToStringList(context.getMasterConnection(), (String) arg)
                 } else {
                     tupleResult = 
JdbcUtils.executeToStringList(context.getConnection(),  (String) arg)
                 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to