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

Minor change to the walcrash4.test module so that it works when

SQLITE_DEFAULT_WAL_SYNCHRONOUS is set to something other than 2.

FossilOrigin-Name: 61e239bc4310eff172e1e50d51522ecc75dd997e
This commit is contained in:
drh
2016-05-24 18:50:41 +00:00
parent fe912510ea
commit f34a25a23b
3 changed files with 9 additions and 8 deletions

View File

@ -46,6 +46,7 @@ for {set nExtra 0} {$nExtra < 10} {incr nExtra} {
sqlite3_test_control_pending_byte $::sqlite_pending_byte
sqlite3 db test.db -vfs crash
db eval {
PRAGMA main.synchronous=FULL;
BEGIN;
CREATE TABLE t1(x UNIQUE);
}