Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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})"""
Expand Down
Loading