1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Enhance the "PRAGMA integrity_check" command to verify that all indices are

correctly constructed.  New calls to integrity_check are made in the test
suite. These changes are intended to prevent any future problems such
as seen in ticket #334. (CVS 1024)

FossilOrigin-Name: c9734c27074d2039a1896a8c6965c08d03711b13
This commit is contained in:
drh
2003-06-15 23:42:24 +00:00
parent 3ca691106b
commit ed717fe3b2
21 changed files with 262 additions and 69 deletions

View File

@ -11,7 +11,7 @@
# This file implements some common TCL routines used for regression
# testing the SQLite library
#
# $Id: tester.tcl,v 1.25 2003/03/01 19:45:35 drh Exp $
# $Id: tester.tcl,v 1.26 2003/06/15 23:42:25 drh Exp $
# Make sure tclsqlite was compiled correctly. Abort now with an
# error message if not.
@ -247,5 +247,5 @@ proc forcedelete {filename} {
proc integrity_check {name} {
do_test $name {
execsql {PRAGMA integrity_check}
} {ok ok}
} {ok}
}