zhannngchen commented on code in PR #25346: URL: https://github.com/apache/doris/pull/25346#discussion_r1356593322
########## regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_parallel.groovy: ########## @@ -90,5 +90,79 @@ suite("test_primary_key_partial_update_parallel", "p0") { qt_sql """ select * from ${tableName} order by id;""" sql """ DROP TABLE IF EXISTS ${tableName}; """ + + + tableName = "test_primary_key_row_store_partial_update" + // create table + sql """ DROP TABLE IF EXISTS ${tableName} """ + sql """ + CREATE TABLE ${tableName} ( + `id` int(11) NOT NULL COMMENT "用户 ID", + `name` varchar(65533) NOT NULL COMMENT "用户姓名", + `score` int(11) NOT NULL COMMENT "用户得分", + `test` int(11) NULL COMMENT "null test", + `dft` int(11) DEFAULT "4321") + UNIQUE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 1 + PROPERTIES("replication_num" = "1", "enable_unique_key_merge_on_write" = "true", "store_row_column" = "true") Review Comment: add sequence column -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org