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

Make sure the change-counter and SQLite-version fields of the header are

set correctly even when doing a VACUUM with locking_mode=EXCLUSIVE.
Ticket [5d863f876ee9561b].

FossilOrigin-Name: 04fa1e16905183b948ee6456675799a873d5f97d
This commit is contained in:
drh
2011-01-16 00:56:19 +00:00
parent 0bf1f496b8
commit d40d7ec78b
4 changed files with 15 additions and 14 deletions

View File

@ -299,13 +299,13 @@ do_test exclusive2-3.5 {
INSERT INTO t1 VALUES(randstr(10, 400));
}
readPagerChangeCounter test.db
} {4}
} {5}
do_test exclusive2-3.6 {
execsql {
INSERT INTO t1 VALUES(randstr(10, 400));
}
readPagerChangeCounter test.db
} {5}
} {6}
sqlite3_soft_heap_limit $cmdlinearg(soft-heap-limit)
finish_test