This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 3ad9227ea18 branch-2.1: [fix](regression-test) Fix unstable regression test case due to trigger compaction failed #48228 (#48246) 3ad9227ea18 is described below commit 3ad9227ea182c4e726d19ad5a2340f923045f8a0 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Feb 24 20:37:38 2025 +0800 branch-2.1: [fix](regression-test) Fix unstable regression test case due to trigger compaction failed #48228 (#48246) Cherry-picked from #48228 Co-authored-by: Siyang Tang <tangsiy...@selectdb.com> --- .../suites/schema_change_p0/test_dup_keys_schema_change.groovy | 2 +- .../suites/schema_change_p0/test_uniq_keys_schema_change.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-test/suites/schema_change_p0/test_dup_keys_schema_change.groovy b/regression-test/suites/schema_change_p0/test_dup_keys_schema_change.groovy index 9ab83fb9f8d..759554969f2 100644 --- a/regression-test/suites/schema_change_p0/test_dup_keys_schema_change.groovy +++ b/regression-test/suites/schema_change_p0/test_dup_keys_schema_change.groovy @@ -46,7 +46,7 @@ suite ("test_dup_keys_schema_change") { `min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间") DUPLICATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`) BUCKETS 8 - PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" ); + PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false", "disable_auto_compaction" = "true"); """ sql """ INSERT INTO ${tableName} VALUES diff --git a/regression-test/suites/schema_change_p0/test_uniq_keys_schema_change.groovy b/regression-test/suites/schema_change_p0/test_uniq_keys_schema_change.groovy index e1f65075394..93b1f8032af 100644 --- a/regression-test/suites/schema_change_p0/test_uniq_keys_schema_change.groovy +++ b/regression-test/suites/schema_change_p0/test_uniq_keys_schema_change.groovy @@ -42,7 +42,7 @@ suite ("test_uniq_keys_schema_change") { `min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间") UNIQUE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`) BUCKETS 8 - PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false"); + PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false", "disable_auto_compaction" = "true"); """ sql """ INSERT INTO schema_change_uniq_keys_regression_test VALUES --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org