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

Change wal.test and walhook.test so that they work with DEFAULT_AUTOVACUUM=1 builds.

FossilOrigin-Name: 4cde92909c20982f7d4e6b550f55d786df398ccd
This commit is contained in:
dan
2010-05-07 12:49:22 +00:00
parent 65f2ac58b6
commit 65bddc1223
5 changed files with 24 additions and 14 deletions

View File

@ -36,6 +36,7 @@ db wal_hook wal_hook
do_test walhook-1.1 {
execsql {
PRAGMA page_size = 1024;
PRAGMA auto_vacuum = 0;
PRAGMA journal_mode = wal;
PRAGMA synchronous = normal;
CREATE TABLE t1(i PRIMARY KEY, j);