1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix recent test cases so that they work even when auto_vacuum defaults to on.

FossilOrigin-Name: 41f6e46695b547dece4daf2f3714e29f231aa04774f57fbd31aeb0a4290c0e7d
This commit is contained in:
drh
2025-01-02 15:39:54 +00:00
parent 3835cf6ea1
commit 52c87ac084
3 changed files with 10 additions and 8 deletions

View File

@ -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)) );