From cfb9123c54037b262a095bcdb3772c928eb1fdf3 Mon Sep 17 00:00:00 2001 From: bobhan1 Date: Tue, 22 Jul 2025 15:03:42 +0800 Subject: [PATCH] fix --- .../suites/query_p0/system/test_table_properties.groovy | 1 + .../partial_update/test_partial_update_complex_type.groovy | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/query_p0/system/test_table_properties.groovy b/regression-test/suites/query_p0/system/test_table_properties.groovy index 7465497ae76d08..766bcf86fe391d 100644 --- a/regression-test/suites/query_p0/system/test_table_properties.groovy +++ b/regression-test/suites/query_p0/system/test_table_properties.groovy @@ -36,6 +36,7 @@ suite("test_table_properties") { UNIQUE KEY(`user_id`, `username`) DISTRIBUTED BY HASH(`user_id`) BUCKETS 1 PROPERTIES ( + "enable_mow_light_delete" = "false", "replication_allocation" = "tag.location.default: 1" ); """ diff --git a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_complex_type.groovy b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_complex_type.groovy index 502c4284ebf75a..2ae6e741385e82 100644 --- a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_complex_type.groovy +++ b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_complex_type.groovy @@ -131,7 +131,8 @@ suite("test_primary_key_partial_update_complex_type", "p0") { `c_map` MAP not null) UNIQUE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 1 PROPERTIES("replication_num" = "1", "enable_unique_key_merge_on_write" = "true", - "store_row_column" = "${use_row_store}","disable_auto_compaction" = "true"); """ + "store_row_column" = "${use_row_store}","disable_auto_compaction" = "true", + "enable_mow_light_delete" = "false"); """ sql """insert into ${tableName2} values(2, "doris2", '{"jsonk2": 333, "jsonk4": 444}', [300, 400], {3, 4}, {'a': 2})""" sql """insert into ${tableName2} values(1, "doris1", '{"jsonk1": 123, "jsonk2": 456}', [100, 200], {1, 2}, {'b': 3})"""