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 and lsy3993 committed Jun 7, 2024
1 parent d0383b4 commit e7e8eb1
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 e7e8eb1

Please sign in to comment.