1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix a test script problem in windowfault.test.

FossilOrigin-Name: 47010bf17cb080cc1c693c84d16b986ea4addf9c54bd7e22de1e0f6b555ea9d1
This commit is contained in:
dan
2019-07-09 12:03:21 +00:00
parent 0ba323476a
commit e0155b7af9
3 changed files with 10 additions and 9 deletions

View File

@ -209,6 +209,7 @@ proc tmpread_injectstop {} {
return $ret
}
set L [db eval {SELECT 0.0 FROM t}]
do_faultsim_test 9 -end 25 -faults tmpread -body {
execsql {
SELECT sum(y) OVER win FROM t
@ -217,7 +218,7 @@ do_faultsim_test 9 -end 25 -faults tmpread -body {
)
}
} -test {
faultsim_test_result {0 {}}
faultsim_test_result [list 0 $::L]
}
catch {db close}