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 9a54c27c802 [branch-2.0] Fix case `test_delete_on_value` (#40644)
9a54c27c802 is described below

commit 9a54c27c802ae1ebe3f5643ed9518ae921a92760
Author: bobhan1 <bh2444151...@outlook.com>
AuthorDate: Wed Sep 11 14:59:01 2024 +0800

    [branch-2.0] Fix case `test_delete_on_value` (#40644)
---
 regression-test/suites/delete_p0/test_delete_on_value.groovy | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

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 353e3d64f76..5b04bff10f0 100644
--- a/regression-test/suites/delete_p0/test_delete_on_value.groovy
+++ b/regression-test/suites/delete_p0/test_delete_on_value.groovy
@@ -35,7 +35,8 @@ suite("test_delete_on_value") {
             DISTRIBUTED BY HASH(`x`) BUCKETS 4
             PROPERTIES (
                 "replication_num" = "1",
-                "enable_unique_key_merge_on_write" = "true"
+                "enable_unique_key_merge_on_write" = "true",
+                "enable_mow_light_delete" = "false"
             );"""
     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); 
"""
     qt_sql "select * from ${tableName} order by x,y,z;"
@@ -92,6 +93,7 @@ suite("test_delete_on_value") {
             PROPERTIES (
                 "replication_num" = "1",
                 "enable_unique_key_merge_on_write" = "true",
+                "enable_mow_light_delete" = "false",
                 "function_column.sequence_col" = "z"
             );"""
     sql "insert into ${tableName3} values(1,1,10);"
@@ -127,7 +129,8 @@ suite("test_delete_on_value") {
             DISTRIBUTED BY HASH(`x`) BUCKETS 4
             PROPERTIES (
                 "replication_num" = "1",
-                "function_column.sequence_col" = "z"
+                "function_column.sequence_col" = "z",
+                "enable_mow_light_delete" = "false"
             );"""
     sql "insert into ${tableName4} values(1,1,10);"
     sql "insert into ${tableName4} values(1,1,5);"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to