aboutsummaryrefslogtreecommitdiff
path: root/test/insert.test
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2006-01-16 16:24:25 +0000
committerdanielk1977 <danielk1977@noemail.net>2006-01-16 16:24:25 +0000
commitff890793fcbc1abfd9b1dd539aaf4b5c2a9077cb (patch)
tree095457016dad83dfe3022320e56feecc25e830ad /test/insert.test
parent8212defca2c7e7228659130767b420b8b0bcf3a9 (diff)
downloadsqlite-ff890793fcbc1abfd9b1dd539aaf4b5c2a9077cb.tar.gz
sqlite-ff890793fcbc1abfd9b1dd539aaf4b5c2a9077cb.zip
Test file fixes for libaries compiled with various SQLITE_OMIT_ macros. (CVS 2961)
FossilOrigin-Name: c058f483a52c8043178b6329aa5e58bedf0c8277
Diffstat (limited to 'test/insert.test')
-rw-r--r--test/insert.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/insert.test b/test/insert.test
index ae7ed919e..fef73e3fa 100644
--- a/test/insert.test
+++ b/test/insert.test
@@ -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.27 2005/07/08 17:13:47 drh Exp $
+# $Id: insert.test,v 1.28 2006/01/16 16:24:25 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -346,7 +346,7 @@ do_test insert-7.3 {
# to see if the right-hand side of an INSERT...SELECT references the left-hand
# side.
#
-ifcapable subquery {
+ifcapable subquery&&compound {
do_test insert-8.1 {
execsql {
INSERT INTO t3 SELECT * FROM (SELECT * FROM t3 UNION ALL SELECT 1,2,3)