aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authordrh <>2025-01-02 15:39:54 +0000
committerdrh <>2025-01-02 15:39:54 +0000
commit52c87ac084ddb84901580c86ff2acbd7e30ff1df (patch)
tree59ac8a5c6ea1378bb0af108d5029842628ae2f2b /test
parent3835cf6ea1f0bee954426c9c196fda9f2ee4662d (diff)
downloadsqlite-52c87ac084ddb84901580c86ff2acbd7e30ff1df.tar.gz
sqlite-52c87ac084ddb84901580c86ff2acbd7e30ff1df.zip
Fix recent test cases so that they work even when auto_vacuum defaults to on.
FossilOrigin-Name: 41f6e46695b547dece4daf2f3714e29f231aa04774f57fbd31aeb0a4290c0e7d
Diffstat (limited to 'test')
-rw-r--r--test/dbpage.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dbpage.test b/test/dbpage.test
index 5344937c9..27d532bf9 100644
--- a/test/dbpage.test
+++ b/test/dbpage.test
@@ -123,10 +123,12 @@ reset_db
forcedelete test.db2
sqlite3 db2 test.db2
db2 eval {
+ PRAGMA auto_vacuum=NONE;
CREATE TABLE t1(x, y);
}
do_execsql_test 500 {
+ PRAGMA auto_vacuum=NONE;
CREATE TABLE x1(a);
INSERT INTO x1 VALUES( hex(randomblob(2000)) );
INSERT INTO x1 VALUES( hex(randomblob(2000)) );