This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 250c7b9ba2e branch-3.0: [Fix](p0) Fix
`test_cumu_compaction_with_delete` #54651 (#54743)
250c7b9ba2e is described below
commit 250c7b9ba2ee2607013158d4678f9e1add42ba73
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Aug 15 19:58:12 2025 +0800
branch-3.0: [Fix](p0) Fix `test_cumu_compaction_with_delete` #54651 (#54743)
Cherry-picked from #54651
Co-authored-by: bobhan1 <[email protected]>
---
.../suites/compaction/test_cumu_compaction_with_delete.groovy | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git
a/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
b/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
index dead69e9729..48ae2b0a4fd 100644
--- a/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
+++ b/regression-test/suites/compaction/test_cumu_compaction_with_delete.groovy
@@ -51,11 +51,10 @@ suite("test_cumu_compaction_with_delete", "nonConcurrent") {
CREATE TABLE ${tableName} (
`user_id` INT NOT NULL,
`value` INT NOT NULL)
- UNIQUE KEY(`user_id`)
+ DUPLICATE KEY(`user_id`)
DISTRIBUTED BY HASH(`user_id`)
BUCKETS 1
- PROPERTIES ("replication_allocation" = "tag.location.default: 1",
- "enable_mow_light_delete" = "true")"""
+ PROPERTIES ("replication_allocation" = "tag.location.default:
1")"""
for(int i = 1; i <= 100; ++i){
sql """ INSERT INTO ${tableName} VALUES (1,1)"""
@@ -95,11 +94,10 @@ suite("test_cumu_compaction_with_delete", "nonConcurrent") {
CREATE TABLE ${tableName} (
`user_id` INT NOT NULL,
`value` INT NOT NULL)
- UNIQUE KEY(`user_id`)
+ DUPLICATE KEY(`user_id`)
DISTRIBUTED BY HASH(`user_id`)
BUCKETS 1
- PROPERTIES ("replication_allocation" = "tag.location.default: 1",
- "enable_mow_light_delete" = "true")"""
+ PROPERTIES ("replication_allocation" = "tag.location.default:
1");"""
for(int i = 1; i <= 100; ++i){
sql """ INSERT INTO ${tableName} VALUES (1,1)"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]