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 cbff9a6e4ba branch-3.1: [Fix](case) Fix
test_table_properties/test_primary_key_partial_update_complex_type #53701
(#53719)
cbff9a6e4ba is described below
commit cbff9a6e4ba6c4ffd6677b5922481743f1f62838
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 23 14:07:39 2025 +0800
branch-3.1: [Fix](case) Fix
test_table_properties/test_primary_key_partial_update_complex_type #53701
(#53719)
Cherry-picked from #53701
Co-authored-by: bobhan1 <[email protected]>
---
regression-test/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 7465497ae76..766bcf86fe3 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 502c4284ebf..2ae6e741385 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<STRING,int> 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})"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]