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

dataroaring 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 b23dd27c5e7 [chore](regression-test) Fix error add partition operation 
due to duplicate partition range  (#26742)
b23dd27c5e7 is described below

commit b23dd27c5e7a7889f1f58c14da92e0849d39242c
Author: AlexYue <[email protected]>
AuthorDate: Sun Nov 12 11:00:52 2023 +0800

    [chore](regression-test) Fix error add partition operation due to duplicate 
partition range  (#26742)
---
 .../suites/cold_heat_separation_p2/add_drop_partition.groovy          | 4 ++--
 .../cold_heat_separation_p2/create_table_use_dynamic_partition.groovy | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/regression-test/suites/cold_heat_separation_p2/add_drop_partition.groovy 
b/regression-test/suites/cold_heat_separation_p2/add_drop_partition.groovy
index 3544f6fb3b0..24f2062e04b 100644
--- a/regression-test/suites/cold_heat_separation_p2/add_drop_partition.groovy
+++ b/regression-test/suites/cold_heat_separation_p2/add_drop_partition.groovy
@@ -251,11 +251,11 @@ suite("add_drop_partition") {
     
     sql """
         alter table ${tableName} ADD PARTITION np
-        VALUES LESS THAN ("2016-01-01");
+        VALUES LESS THAN ("2017-01-01");
     """
 
     sql """
-        insert into ${tableName} values(1, "2016-01-01");
+        insert into ${tableName} values(1, "2017-01-01");
     """
 
     partitions = sql "show partitions from ${tableName}"
diff --git 
a/regression-test/suites/cold_heat_separation_p2/create_table_use_dynamic_partition.groovy
 
b/regression-test/suites/cold_heat_separation_p2/create_table_use_dynamic_partition.groovy
index e5ae29293cb..a9737b37abb 100644
--- 
a/regression-test/suites/cold_heat_separation_p2/create_table_use_dynamic_partition.groovy
+++ 
b/regression-test/suites/cold_heat_separation_p2/create_table_use_dynamic_partition.groovy
@@ -259,7 +259,7 @@ suite("cold_heat_dynamic_partition") {
     }
 
     sql """
-    sql * from ${tableName}
+    select * from ${tableName}
     """
 
     sql """


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

Reply via email to