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 @@ -98,6 +98,8 @@ suite("test_delete_publish_skip_read", "nonConcurrent") {
t1.join()
t2.join()

sleep(2000)
sql "sync;"
order_qt_sql "select * from ${table1};"

sql "set skip_delete_sign=true;"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ suite("test_partial_update_conflict_skip_compaction", "nonConcurrent") {
t1.join()
t2.join()

sleep(2000)
sql "sync;"
order_qt_sql "select * from ${table1};"

check_rs_metas(3, {int startVersion, int endVersion, int numSegments, int numRows, String overlapPb ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ suite("test_partial_update_with_delete_col_in_publish", "nonConcurrent") {

disable_block_in_publish()
threads.each { t -> t.join() }

sleep(2000)
sql "sync;"
qt_sql "select * from ${tableName} order by k;"
} catch(Exception e) {
logger.info(e.getMessage())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ suite("test_partial_update_merge_type", "p0") {
UNIQUE KEY(`k`) DISTRIBUTED BY HASH(`k`) BUCKETS 1
PROPERTIES(
"replication_num" = "1",
"disable_auto_compaction" = "true",
"enable_unique_key_merge_on_write" = "true",
"store_row_column" = "${use_row_store}"); """
sql """insert into ${tableName} select number,number,number,number from numbers("number"="9");"""
Expand Down Expand Up @@ -118,6 +119,7 @@ suite("test_partial_update_merge_type", "p0") {
PROPERTIES(
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "true",
"disable_auto_compaction" = "true",
"function_column.sequence_type" = "BIGINT",
"store_row_column" = "${use_row_store}"); """
sql """insert into ${tableName}(k,c1,c2,c3,__DORIS_SEQUENCE_COL__) select number,number,number,number,1 from numbers("number"="9");"""
Expand Down
Loading