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

Make the test suite pass when SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS is defined. (CVS 2146)

FossilOrigin-Name: ff20c623c64d67b19c13c4fd3afe8ea137bb8a0b
This commit is contained in:
danielk1977
2004-11-23 11:16:42 +00:00
parent c7b4a44cda
commit 11cf9fbcf2
3 changed files with 12 additions and 8 deletions

View File

@ -12,7 +12,7 @@
#
# This file implements tests for the PRAGMA command.
#
# $Id: pragma.test,v 1.26 2004/11/23 10:52:51 danielk1977 Exp $
# $Id: pragma.test,v 1.27 2004/11/23 11:16:42 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -388,6 +388,8 @@ do_test pragma-7.3 {
# pragma-8.2: PRAGMA user_version
#
ifcapable schema_version {
# First check that we can set the schema version and then retrieve the
# same value.
do_test pragma-8.1.1 {
@ -584,4 +586,6 @@ do_test pragma-8.2.15 {
}
} {-450}
} ; # ifcapable schema_version
finish_test