Skip to content

Commit

Permalink
Fix insert overwrite cases (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter authored Jun 3, 2024
1 parent 2dc9ed1 commit 06261fe
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ suite("test_insert_overwrite") {
"""
sql "sync"

sleep(10000)
assertTrue(checkRestoreFinishTimesOf("${uniqueTable}", 60))

assertTrue(checkSelectTimesOf("SELECT * FROM ${uniqueTable} WHERE test=3", 5, 60))
assertTrue(checkSelectTimesOf("SELECT * FROM ${uniqueTable} WHERE test=2", 0, 60))
assertTrue(checkSelectTimesOf("SELECT * FROM ${uniqueTable}", 5, 60))

qt_sql "SELECT * FROM ${uniqueTable} ORDER BY test, id"
Expand Down

0 comments on commit 06261fe

Please sign in to comment.