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 ee40e102ee7 branch-3.1: [Fix](test) Fix regression test 
"test_s3tables_write_partitions" by renaming table name. #53294 (#53413)
ee40e102ee7 is described below

commit ee40e102ee7204be26a77154171aba1dc864b028
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jul 17 11:22:36 2025 +0800

    branch-3.1: [Fix](test) Fix regression test 
"test_s3tables_write_partitions" by renaming table name. #53294 (#53413)
    
    Cherry-picked from #53294
    
    Co-authored-by: Qi Chen <[email protected]>
---
 .../iceberg/test_s3tables_write_partitions.groovy  | 26 +++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git 
a/regression-test/suites/external_table_p2/iceberg/test_s3tables_write_partitions.groovy
 
b/regression-test/suites/external_table_p2/iceberg/test_s3tables_write_partitions.groovy
index d322cd5ab03..ab3968f29bc 100644
--- 
a/regression-test/suites/external_table_p2/iceberg/test_s3tables_write_partitions.groovy
+++ 
b/regression-test/suites/external_table_p2/iceberg/test_s3tables_write_partitions.groovy
@@ -18,13 +18,13 @@
 suite("test_s3tables_write_partitions", 
"p0,external,iceberg,external_docker,external_docker_iceberg") {
     def format_compressions = ["parquet_snappy", "orc_zlib"]
 
-    def test_columns_out_of_order = {  String format_compression, String 
catalog_name ->
+    def test_s3_columns_out_of_order = {  String format_compression, String 
catalog_name ->
         def parts = format_compression.split("_")
         def format = parts[0]
         def compression = parts[1]
-        sql """ drop table if exists 
columns_out_of_order_source_tbl_${format_compression} """
+        sql """ drop table if exists 
s3_columns_out_of_order_source_tbl_${format_compression} """
         sql """
-            CREATE TABLE columns_out_of_order_source_tbl_${format_compression} 
(
+            CREATE TABLE 
s3_columns_out_of_order_source_tbl_${format_compression} (
                 `col3` bigint,
                 `col6` int,
                 `col1` bigint,
@@ -37,9 +37,9 @@ suite("test_s3tables_write_partitions", 
"p0,external,iceberg,external_docker,ext
                     "write-format"=${format}
                 )
         """;
-        sql """ drop table if exists 
columns_out_of_order_target_tbl_${format_compression} """
+        sql """ drop table if exists 
s3_columns_out_of_order_target_tbl_${format_compression} """
         sql """
-            CREATE TABLE columns_out_of_order_target_tbl_${format_compression} 
(
+            CREATE TABLE 
s3_columns_out_of_order_target_tbl_${format_compression} (
                 `col1` bigint,
                 `col2` bigint,
                 `col3` bigint,
@@ -57,23 +57,23 @@ suite("test_s3tables_write_partitions", 
"p0,external,iceberg,external_docker,ext
         """;
 
         sql """
-            INSERT INTO columns_out_of_order_source_tbl_${format_compression} (
+            INSERT INTO 
s3_columns_out_of_order_source_tbl_${format_compression} (
               col1, col2, col3, col4, col5, col6
             ) VALUES (1, 2, 3, 4, 5, 6);
             """
-        order_qt_columns_out_of_order01 """ SELECT * FROM 
columns_out_of_order_source_tbl_${format_compression} """
+        order_qt_columns_out_of_order01 """ SELECT * FROM 
s3_columns_out_of_order_source_tbl_${format_compression} """
 
         sql """
-            INSERT INTO columns_out_of_order_target_tbl_${format_compression} (
+            INSERT INTO 
s3_columns_out_of_order_target_tbl_${format_compression} (
               col1, col2, col3, col4, col5, col6
             ) VALUES (1, 2, 3, 4, 5, 6);
             """
 
-        order_qt_columns_out_of_order02 """ SELECT * FROM 
columns_out_of_order_target_tbl_${format_compression} """
+        order_qt_columns_out_of_order02 """ SELECT * FROM 
s3_columns_out_of_order_target_tbl_${format_compression} """
 
-        sql """ drop table 
columns_out_of_order_source_tbl_${format_compression} """
-        sql """ drop table 
columns_out_of_order_target_tbl_${format_compression} """
-        sql """ drop database if exists `test_columns_out_of_order` """;
+        sql """ drop table 
s3_columns_out_of_order_source_tbl_${format_compression} """
+        sql """ drop table 
s3_columns_out_of_order_target_tbl_${format_compression} """
+        sql """ drop database if exists `test_s3_columns_out_of_order` """;
     }
 
     String enabled = 
context.config.otherConfigs.get("enableExternalIcebergTest")
@@ -100,7 +100,7 @@ suite("test_s3tables_write_partitions", 
"p0,external,iceberg,external_docker,ext
     try {
         for (String format_compression in format_compressions) {
             logger.info("Process format_compression " + format_compression)
-            test_columns_out_of_order(format_compression, catalog_name)
+            test_s3_columns_out_of_order(format_compression, catalog_name)
         }
     } finally {
     }


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

Reply via email to