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 e4dbe8b379d [branch-2.0] Fix duplicate table name in p0 cases (#41092) e4dbe8b379d is described below commit e4dbe8b379dc8acede6e49a97a7392360cd1713f Author: bobhan1 <bh2444151...@outlook.com> AuthorDate: Sun Sep 22 17:13:29 2024 +0800 [branch-2.0] Fix duplicate table name in p0 cases (#41092) --- .../partial_update/test_partial_update_only_keys.groovy | 2 +- .../partial_update/test_partial_update_parallel.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_only_keys.groovy b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_only_keys.groovy index 1f56643b6e8..29f1257f9cb 100644 --- a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_only_keys.groovy +++ b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_only_keys.groovy @@ -26,7 +26,7 @@ suite("test_partial_update_only_keys", "p0") { connect(user = context.config.jdbcUser, password = context.config.jdbcPassword, url = context.config.jdbcUrl) { sql "use ${db};" - def tableName = "test_primary_key_partial_update" + def tableName = "test_partial_update_only_keys" sql """ DROP TABLE IF EXISTS ${tableName} force""" sql """ CREATE TABLE ${tableName} ( `k` BIGINT NOT NULL, diff --git a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_parallel.groovy b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_parallel.groovy index 9a96c3358e1..99300f2133f 100644 --- a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_parallel.groovy +++ b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_parallel.groovy @@ -18,7 +18,7 @@ suite("test_primary_key_partial_update_parallel", "p0") { // case 1: concurrent partial update - def tableName = "test_primary_key_partial_update" + def tableName = "test_primary_key_partial_update_parallel" sql """ DROP TABLE IF EXISTS ${tableName} """ sql """ CREATE TABLE ${tableName} ( --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org