[fix](regression) tests in unique_with_mow_p0/partial_update are flaky (#20633)

This commit is contained in:
zhannngchen
2023-06-11 13:51:49 +08:00
committed by GitHub
parent 8a2e0504e4
commit ca1e2ddf43
5 changed files with 17 additions and 3 deletions

View File

@ -52,8 +52,11 @@ suite("test_primary_key_partial_update", "p0") {
file 'basic.csv'
time 10000 // limit inflight 10s
}
sql "sync"
qt_select_default """
select * from ${tableName}
select * from ${tableName} order by id;
"""
// drop drop

View File

@ -52,8 +52,11 @@ suite("test_primary_key_partial_update_default_value", "p0") {
file 'default.csv'
time 10000 // limit inflight 10s
}
sql "sync"
qt_select_default """
select * from ${tableName}
select * from ${tableName} order by id;
"""
// drop drop

View File

@ -51,8 +51,11 @@ suite("test_primary_key_partial_update_orc", "p0") {
file 'update.orc'
time 10000 // limit inflight 10s
}
sql "sync"
qt_select_0 """
select * from ${tableName};
select * from ${tableName} order by col_0;
"""
// drop drop

View File

@ -61,6 +61,8 @@ suite("test_primary_key_partial_update_publish", "p0") {
time 10000 // limit inflight 10s
}
sql "sync"
qt_select_default """
select * from ${tableName} order by id;
"""

View File

@ -53,6 +53,9 @@ suite("test_primary_key_partial_update_with_row_column", "p0") {
file 'basic.csv'
time 10000 // limit inflight 10s
}
sql "sync"
qt_select_default """
select * from ${tableName} order by id
"""