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 53ca312751d [cherry-pick](branch-2.1) Pick "[Fix](delete) Fix delete
on value case due to compaction (#37917)" (#38116)
53ca312751d is described below
commit 53ca312751d7f87759d8941b191a053c6635bc60
Author: abmdocrt <[email protected]>
AuthorDate: Fri Jul 19 13:51:39 2024 +0800
[cherry-pick](branch-2.1) Pick "[Fix](delete) Fix delete on value case due
to compaction (#37917)" (#38116)
## Proposed changes
Issue Number: close #xxx
<!--Describe your changes.-->
Pick #37917
---
regression-test/suites/delete_p0/test_delete_on_value.groovy | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/regression-test/suites/delete_p0/test_delete_on_value.groovy
b/regression-test/suites/delete_p0/test_delete_on_value.groovy
index f1e0f2f48a8..d980fb09ca1 100644
--- a/regression-test/suites/delete_p0/test_delete_on_value.groovy
+++ b/regression-test/suites/delete_p0/test_delete_on_value.groovy
@@ -32,6 +32,7 @@ suite("test_delete_on_value") {
DISTRIBUTED BY HASH(`x`) BUCKETS 4
PROPERTIES (
"replication_num" = "1",
+ "disable_auto_compaction" = "true",
"enable_unique_key_merge_on_write" = "true"
);"""
sql """ insert into ${tableName}
values(1,1,1),(2,2,2),(3,3,3),(4,4,4),(5,5,5),(6,6,6),(7,7,7),(8,8,8),(9,9,9);
"""
@@ -65,6 +66,7 @@ suite("test_delete_on_value") {
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`x`) BUCKETS 4
PROPERTIES (
+ "disable_auto_compaction" = "true",
"replication_num" = "1"
);"""
sql """ insert into ${tableName2} values(1,1,1); """
@@ -87,6 +89,7 @@ suite("test_delete_on_value") {
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`x`) BUCKETS 4
PROPERTIES (
+ "disable_auto_compaction" = "true",
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "true",
"function_column.sequence_col" = "z"
@@ -123,6 +126,7 @@ suite("test_delete_on_value") {
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`x`) BUCKETS 4
PROPERTIES (
+ "disable_auto_compaction" = "true",
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "false",
"function_column.sequence_col" = "z"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]