1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Get autovacuum and in-memory databases working together. Ticket #1727. (CVS 3148)

FossilOrigin-Name: 21446df6420df00468867f1131c28604a1ae91a3
This commit is contained in:
drh
2006-03-23 23:29:04 +00:00
parent b912b2889c
commit 5229ae4df5
4 changed files with 30 additions and 11 deletions

View File

@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the SELECT statement.
#
# $Id: autovacuum.test,v 1.20 2006/01/16 16:24:25 danielk1977 Exp $
# $Id: autovacuum.test,v 1.21 2006/03/23 23:29:04 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -525,4 +525,17 @@ do_test autovacuum-4.4 {
}
} {}
# Ticket #1727
do_test autovacuum-5.1 {
db close
sqlite3 db :memory:
db eval {
PRAGMA auto_vacuum=1;
CREATE TABLE t1(a);
CREATE TABLE t2(a);
DROP TABLE t1;
PRAGMA integrity_check;
}
} ok
finish_test