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:
@ -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)) );
|
||||
|
Reference in New Issue
Block a user