This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 5e6a04b2bf4 [chore](regression-test) Fix error add partition operation
due to duplicate partition range #26742 (#26758)
5e6a04b2bf4 is described below
commit 5e6a04b2bf47ecea98a6fd0aa1b1518269044f20
Author: AlexYue <[email protected]>
AuthorDate: Fri Nov 10 22:01:39 2023 +0800
[chore](regression-test) Fix error add partition operation due to duplicate
partition range #26742 (#26758)
---
.../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]