1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-09-11 08:30:57 +03:00

Modify test suite to work when SQLITE_OMIT_VIEW is defined. (CVS 2132)

FossilOrigin-Name: 711e8d7695dfc74b3f1ee00591dcdda2cd7fc7d5
This commit is contained in:
danielk1977
2004-11-22 08:43:32 +00:00
parent 03aded4924
commit 0fa8ddbdec
20 changed files with 135 additions and 46 deletions

View File

@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the CREATE TABLE statement.
#
# $Id: sort.test,v 1.16 2004/11/03 13:59:06 drh Exp $
# $Id: sort.test,v 1.17 2004/11/22 08:43:32 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -281,6 +281,10 @@ do_test sort-7.2 {
SELECT b FROM t4 ORDER BY 1
}
} {1 11 12 2}
# Omit tests sort-7.3 to sort-7.8 if view support was disabled at
# compilatation time.
ifcapable view {
do_test sort-7.3 {
execsql {
CREATE VIEW v4 AS SELECT * FROM t4;
@@ -312,6 +316,8 @@ do_test sort-7.8 {
SELECT b FROM t4 UNION SELECT b FROM v4 ORDER BY 1;
}
} {1 11 12 2}
} ;# ifcapable view
#### Version 3 works differently here:
#do_test sort-7.9 {
# execsql {