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

Fix test script attach4.test so that it works with type 1 VFS implementations (no wal). And wal.test so that it work with a small default pager cache size.

FossilOrigin-Name: 29c7b42587000704d61f49badd584ac7040c3d7d
This commit is contained in:
dan
2011-04-07 05:17:32 +00:00
parent cef8368093
commit b73da5bd1c
4 changed files with 15 additions and 10 deletions

View File

@ -74,7 +74,11 @@ do_test 1.4 {
set L [list]
set S ""
foreach {name f} $files {
lappend L wal
if {[permutation] == "journaltest"} {
lappend L delete
} else {
lappend L wal
}
append S "
PRAGMA $name.journal_mode = WAL;
UPDATE $name.tbl SET x = '$name';