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 6f344adc775 branch-3.0: [fix](suite) Fix qt_master_sql arg type #46772
(#46776)
6f344adc775 is described below
commit 6f344adc775c13bb78eb156f8c78236fc148b5dd
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jan 11 19:44:29 2025 +0800
branch-3.0: [fix](suite) Fix qt_master_sql arg type #46772 (#46776)
Cherry-picked from #46772
Co-authored-by: walter <[email protected]>
---
.../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 1240a20ff53..bd0dfd70ec8 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
@@ -1262,7 +1262,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: [email protected]
For additional commands, e-mail: [email protected]