This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 4aabc77fa07 branch-3.0: [Fix](case) Fix
`test_table_properties`/`test_primary_key_partial_update_complex_type` #53701
(#53716)
4aabc77fa07 is described below
commit 4aabc77fa07ef64c9598e7c5033798c1247b358d
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 23 09:52:48 2025 +0800
branch-3.0: [Fix](case) Fix
`test_table_properties`/`test_primary_key_partial_update_complex_type` #53701
(#53716)
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]