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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 62f205b525b [fix](test) remove lakesoul test cases (#58439)
62f205b525b is described below

commit 62f205b525ba78c09bfbe40b0561edb330abc1cc
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Fri Nov 28 17:16:31 2025 +0800

    [fix](test) remove lakesoul test cases (#58439)
---
 .../lakesoul/test_lakesoul_filter.out              |  8 ---
 .../lakesoul/test_lakesoul_catalog.groovy          | 52 ---------------
 .../lakesoul/test_lakesoul_filter.groovy           | 74 ----------------------
 .../lakesoul/test_external_table_lakesoul.groovy   | 72 ---------------------
 4 files changed, 206 deletions(-)

diff --git 
a/regression-test/data/external_table_p0/lakesoul/test_lakesoul_filter.out 
b/regression-test/data/external_table_p0/lakesoul/test_lakesoul_filter.out
deleted file mode 100644
index cb1899326bd..00000000000
--- a/regression-test/data/external_table_p0/lakesoul/test_lakesoul_filter.out
+++ /dev/null
@@ -1,8 +0,0 @@
--- This file is automatically generated. You should know what you did if you 
want to edit this
--- !lakesoul --
-0      AFRICA  lar deposits. blithely final packages cajole. regular waters 
are final requests. regular accounts are according to 
-2      ASIA    ges. thinly even pinto beans ca
-3      EUROPE  ly final courts cajole furiously final excuse
-1      AMERICA hs use ironic, even requests. s
-4      MIDDLE EAST     uickly special accounts cajole carefully blithely close 
requests. carefully final asymptotes haggle furiousl
-
diff --git 
a/regression-test/suites/external_table_p0/lakesoul/test_lakesoul_catalog.groovy
 
b/regression-test/suites/external_table_p0/lakesoul/test_lakesoul_catalog.groovy
deleted file mode 100644
index ffd95d93097..00000000000
--- 
a/regression-test/suites/external_table_p0/lakesoul/test_lakesoul_catalog.groovy
+++ /dev/null
@@ -1,52 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-suite("test_lakesoul_catalog", 
"p0,external,doris,external_docker,external_docker_doris") {
-    String enabled = context.config.otherConfigs.get("enableLakesoulTest")
-    // open it when docker image is ready to run in regression test
-    if (enabled != null && enabled.equalsIgnoreCase("true")) {
-        String catalog_name = "lakesoul"
-        String db_name = "default"
-        String pg_user = context.config.otherConfigs.get("lakesoulPGUser")
-        String pg_pwd = context.config.otherConfigs.get("lakesoulPGPwd")
-        String pg_url = context.config.otherConfigs.get("lakesoulPGUrl")
-        String minio_ak = context.config.otherConfigs.get("lakesoulMinioAK")
-        String minio_sk = context.config.otherConfigs.get("lakesoulMinioSK")
-        String minio_endpoint = 
context.config.otherConfigs.get("lakesoulMinioEndpoint")
-
-        sql """drop catalog if exists ${catalog_name}"""
-        sql """create catalog lakesoul  properties (
-            'type'='lakesoul',
-            'lakesoul.pg.username'='${pg_user}',
-            'lakesoul.pg.password'='${pg_pwd}',
-            'lakesoul.pg.url'='${pg_url}',
-            'minio.endpoint'='${minio_endpoint}',
-            'minio.access_key'='${minio_ak}',
-            'minio.secret_key'='${minio_sk}'
-            );"""
-
-        // analyze
-        sql """use `${catalog_name}`.`${db_name}`"""
-
-        sql """show tables;"""
-        // select
-        sql  """select * from nation;"""
-
-        sql  """show create table nation;"""
-    }
-}
-
diff --git 
a/regression-test/suites/external_table_p0/lakesoul/test_lakesoul_filter.groovy 
b/regression-test/suites/external_table_p0/lakesoul/test_lakesoul_filter.groovy
deleted file mode 100644
index 01c5d981c49..00000000000
--- 
a/regression-test/suites/external_table_p0/lakesoul/test_lakesoul_filter.groovy
+++ /dev/null
@@ -1,74 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-suite("test_lakesoul_filter", 
"p0,external,doris,external_docker,external_docker_doris") {
-    String enabled = context.config.otherConfigs.get("enableLakesoulTest")
-    // open it when docker image is ready to run in regression test
-    if (enabled != null && enabled.equalsIgnoreCase("true")) {
-        String catalog_name = "lakesoul"
-        String db_name = "default"
-        String pg_user = context.config.otherConfigs.get("lakesoulPGUser")
-        String pg_pwd = context.config.otherConfigs.get("lakesoulPGPwd")
-        String pg_url = context.config.otherConfigs.get("lakesoulPGUrl")
-        String minio_ak = context.config.otherConfigs.get("lakesoulMinioAK")
-        String minio_sk = context.config.otherConfigs.get("lakesoulMinioSK")
-        String minio_endpoint = 
context.config.otherConfigs.get("lakesoulMinioEndpoint")
-
-        sql """drop catalog if exists ${catalog_name}"""
-        sql """create catalog lakesoul  properties (
-            'type'='lakesoul',
-            'lakesoul.pg.username'='${pg_user}',
-            'lakesoul.pg.password'='${pg_pwd}',
-            'lakesoul.pg.url'='${pg_url}',
-            'minio.endpoint'='${minio_endpoint}',
-            'minio.access_key'='${minio_ak}',
-            'minio.secret_key'='${minio_sk}'
-            );"""
-
-        // analyze
-        sql """use `${catalog_name}`.`${db_name}`"""
-
-        sql """show tables;"""
-        // select
-        sql """select * from region;"""
-
-        sql """select * from nation;"""
-
-        sql """select * from nation where n_regionkey = 0 or n_nationkey > 
14;"""
-
-        sql """select * from nation where n_regionkey = 0 and n_nationkey > 
0;"""
-
-        sql """select * from nation where n_regionkey = 0;"""
-
-        // non-selecting query
-        sql """select count(*) from customer;"""
-
-        // filter by non-partition column
-        sql """select count(*) from customer where c_mktsegment='BUILDING';"""
-
-        // filter by partition column
-        sql """select count(*) from customer where c_nationkey=19;"""
-
-        // filter by both partition and non-partition column
-        sql """select count(*) from customer where c_mktsegment='BUILDING' and 
c_nationkey=19;"""
-
-        sql """select * from lineitem where l_shipdate <= DATE '1992-12-01' 
limit 10;"""
-
-        sql """select count(*) from part where p_type like 'MEDIUM 
POLISHED%';"""
-    }
-}
-
diff --git 
a/regression-test/suites/external_table_p2/lakesoul/test_external_table_lakesoul.groovy
 
b/regression-test/suites/external_table_p2/lakesoul/test_external_table_lakesoul.groovy
deleted file mode 100644
index 104f419e5d0..00000000000
--- 
a/regression-test/suites/external_table_p2/lakesoul/test_external_table_lakesoul.groovy
+++ /dev/null
@@ -1,72 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-suite("test_external_table_lakesoul", 
"p2,external,lakesoul,external_remote,external_remote_lakesoul") {
-    String enabled = context.config.otherConfigs.get("enablelakesoulTest")
-      // query data test
-        def q1 = """ select count(*) from region; """
-        def q11 = """ select count(*) from nation; """
-        // data test
-         def q2 = """ select * from nation  order by n_name; """
-         def q3 = """ select * from nation order by n_name limit 2; """
-         def q9 = """ select * from lineitem limit 2; """ // mutil types
-        // test partition table filter
-         def q4 =  """ select * from supplier  where s_nationkey = 1 limit 2; 
"""
-         def q5 = """ select * from supplier  where s_nationkey < 2 limit 2; 
"""
-         def q6 = """ select * from nation  where n_name = 'CHINA' or n_name 
like 'C%'; """
-            
-       def q7 =  """ select * from nation,region where n_nationkey = 
r_regionkey; """
-        def q8 =  """ select count(*) from region group by r_regionkey; """
-
-
-    if (enabled != null && enabled.equalsIgnoreCase("true")) {
-        String catalog_name = "lakesoul"
-        String db_name = "default"
-        String pg_user = context.config.otherConfigs.get("lakesoulPGUser")
-        String pg_pwd = context.config.otherConfigs.get("lakesoulPGPwd")
-        String pg_url = context.config.otherConfigs.get("lakesoulPGUrl")
-        String minio_ak = context.config.otherConfigs.get("lakesoulMinioAK")
-        String minio_sk = context.config.otherConfigs.get("lakesoulMinioSK")
-        String minio_endpoint = 
context.config.otherConfigs.get("lakesoulMinioEndpoint")
-
-        sql """drop catalog if exists ${catalog_name}"""
-        sql """create catalog lakesoul  properties (
-            'type'='lakesoul',
-            'lakesoul.pg.username'='${pg_user}',
-            'lakesoul.pg.password'='${pg_pwd}',
-            'lakesoul.pg.url'='${pg_url}',
-            'minio.endpoint'='${minio_endpoint}',
-            'minio.access_key'='${minio_ak}',
-            'minio.secret_key'='${minio_sk}'
-            );"""
-
-            // analyze
-            sql """use `${catalog_name}`.`${db_name}`"""
-
-        sql q1
-        sql q2
-        sql q3
-        sql q4
-        sql q5
-        sql q6
-        sql q7
-        sql q8
-        sql q9
-        sql q11
-
-    }
-}


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

Reply via email to