1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Omit a couple of test cases if the library is compiled without subqueries. (CVS 2488)

FossilOrigin-Name: 6bc372978364a1a4bfa14732a818a6bba613b1e3
This commit is contained in:
danielk1977
2005-05-29 14:23:12 +00:00
parent 44ee5bf795
commit a38b4134e7
4 changed files with 25 additions and 21 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the INSERT statement.
#
# $Id: insert.test,v 1.25 2005/03/29 03:11:00 danielk1977 Exp $
# $Id: insert.test,v 1.26 2005/05/29 14:23:13 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -346,11 +346,13 @@ do_test insert-7.3 {
# to see if the right-hand side of an INSERT...SELECT references the left-hand
# side.
#
do_test insert-8.1 {
execsql {
INSERT INTO t3 SELECT * FROM (SELECT * FROM t3 UNION ALL SELECT 1,2,3)
}
} {}
ifcapable subquery {
do_test insert-8.1 {
execsql {
INSERT INTO t3 SELECT * FROM (SELECT * FROM t3 UNION ALL SELECT 1,2,3)
}
} {}
}
integrity_check insert-99.0