1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Add a test case for ticket #464 but leave it commented out for now. We

will fix this problem when VACUUM is rewritten. (CVS 1105)

FossilOrigin-Name: 7ba8dc9b1e5c788f2c0ab32314754324c86aaa49
This commit is contained in:
drh
2003-09-27 01:08:37 +00:00
parent 3775084a75
commit 5b8424b9e4
3 changed files with 22 additions and 8 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the VACUUM statement.
#
# $Id: vacuum.test,v 1.12 2003/08/26 11:18:19 drh Exp $
# $Id: vacuum.test,v 1.13 2003/09/27 01:08:38 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -134,6 +134,20 @@ do_test vacuum-3.1 {
}
} {}
# Ticket #464. Make sure VACUUM works with the sqlite_compile() API.
#
if 0 {
do_test vacuum-4.1 {
db close
set DB [sqlite db test.db]
set VM [sqlite_compile $DB {VACUUM} TAIL]
sqlite_step $VM N VALUES COLNAMES
} {SQLITE_DONE}
do_test vacuum-4.2 {
sqlite_finalize $VM
} {}
}
catch {db2 close}
# finish_test