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 4b23caf1f8a branch-3.1: [regression-test](point query) remove 
test_point_query nonconcurrent #52004 (#55725)
4b23caf1f8a is described below

commit 4b23caf1f8a5224c494b34f93017992d19ee1fae
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 8 10:55:48 2025 +0800

    branch-3.1: [regression-test](point query) remove test_point_query 
nonconcurrent #52004 (#55725)
    
    Cherry-picked from #52004
    
    Co-authored-by: lihangyu <[email protected]>
---
 .../suites/point_query_p0/test_point_query.groovy      | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/regression-test/suites/point_query_p0/test_point_query.groovy 
b/regression-test/suites/point_query_p0/test_point_query.groovy
index c550b61c14a..3fe6a7f1a94 100644
--- a/regression-test/suites/point_query_p0/test_point_query.groovy
+++ b/regression-test/suites/point_query_p0/test_point_query.groovy
@@ -28,16 +28,7 @@ import java.sql.PreparedStatement
 import java.sql.ResultSet
 import java.util.concurrent.CopyOnWriteArrayList
 
-suite("test_point_query", "nonConcurrent") {
-    def backendId_to_backendIP = [:]
-    def backendId_to_backendHttpPort = [:]
-    getBackendIpHttpPort(backendId_to_backendIP, backendId_to_backendHttpPort);
-    def set_be_config = { key, value ->
-        for (String backend_id: backendId_to_backendIP.keySet()) {
-            def (code, out, err) = 
update_be_config(backendId_to_backendIP.get(backend_id), 
backendId_to_backendHttpPort.get(backend_id), key, value)
-            logger.info("update config: code=" + code + ", out=" + out + ", 
err=" + err)
-        }
-    }
+suite("test_point_query") {
     def user = context.config.jdbcUser
     def password = context.config.jdbcPassword
     def realDb = "regression_test_serving_p0"
@@ -56,9 +47,8 @@ suite("test_point_query", "nonConcurrent") {
     // set server side prepared statement url
     def prepare_url = "jdbc:mysql://" + sql_ip + ":" + sql_port + "/" + realDb 
+ "?&useServerPrepStmts=true"
     try {
-        set_be_config.call("disable_storage_row_cache", "false")
-        sql "set global enable_fallback_to_original_planner = false"
-        sql """set global enable_nereids_planner=true"""
+        sql """set enable_fallback_to_original_planner = false"""
+        sql """set enable_nereids_planner=true"""
         def tableName = realDb + ".tbl_point_query"
         sql "CREATE DATABASE IF NOT EXISTS ${realDb}"
 
@@ -322,8 +312,6 @@ suite("test_point_query", "nonConcurrent") {
             WHERE
              aaaid = '1111111'"""
     } finally {
-        set_be_config.call("disable_storage_row_cache", "true")
-        sql """set global enable_nereids_planner=true"""
     }
 
     // test partial update/delete


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

Reply via email to