This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new d32e5b7aaaf branch-4.0: [fix](regression) Avoid prepared Arrow JDBC
path in remote IP auth test #64024 (#64047)
d32e5b7aaaf is described below
commit d32e5b7aaafe1468bfad3e980b978ad7fab9a454
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Jun 9 11:29:10 2026 +0800
branch-4.0: [fix](regression) Avoid prepared Arrow JDBC path in remote IP
auth test #64024 (#64047)
Cherry-picked from #64024
Co-authored-by: Calvin Kirs <[email protected]>
---
regression-test/suites/arrow_flight_sql_p0/test_auth_remote_ip.groovy | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/regression-test/suites/arrow_flight_sql_p0/test_auth_remote_ip.groovy
b/regression-test/suites/arrow_flight_sql_p0/test_auth_remote_ip.groovy
index 1b58a31fb63..1d9f02260da 100644
--- a/regression-test/suites/arrow_flight_sql_p0/test_auth_remote_ip.groovy
+++ b/regression-test/suites/arrow_flight_sql_p0/test_auth_remote_ip.groovy
@@ -18,6 +18,8 @@
import java.sql.Connection
import java.sql.DriverManager
+import org.apache.doris.regression.util.JdbcUtils
+
suite("test_auth_remote_ip", "arrow_flight_sql") {
String user = "flight_auth_remote_ip_user"
String password = "flight_auth_remote_ip_pwd"
@@ -60,7 +62,7 @@ suite("test_auth_remote_ip", "arrow_flight_sql") {
Connection conn = DriverManager.getConnection(arrowFlightSqlUrl, user,
password)
try {
- List<List<Object>> result = sql_impl(conn, "SELECT 1")
+ def (result, meta) = JdbcUtils.executeQueryToList(conn, "SELECT 1")
assertEquals(1, result.size())
assertEquals(1, (result[0][0] as Number).intValue())
} finally {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]