This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 94052631055 branch-3.1: [Fix](p0) Fix
`test_cumu_compaction_with_delete` #54651 (#54746)
94052631055 is described below
commit 9405263105562e53819a25e51fc4b796501125db
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 14 17:38:57 2025 +0800
branch-3.1: [Fix](p0) Fix `test_cumu_compaction_with_delete` #54651 (#54746)
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]