Index: test/dbpage.test ================================================================== --- test/dbpage.test +++ test/dbpage.test @@ -20,10 +20,11 @@ finish_test return } do_execsql_test 100 { + PRAGMA auto_vacuum=0; PRAGMA page_size=4096; PRAGMA journal_mode=WAL; CREATE TABLE t1(a,b); WITH RECURSIVE c(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM c WHERE x<100) INSERT INTO t1(a,b) SELECT x, printf('%d-x%.*c',x,x,'x') FROM c;