aboutsummaryrefslogtreecommitdiff
path: root/test/insert.test
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2006-06-11 23:41:55 +0000
committerdrh <drh@noemail.net>2006-06-11 23:41:55 +0000
commitb9bb7c187e5cc9cce7d4e6fac38533339e865f33 (patch)
tree3d12b363c1d5496178d24a45ff90913049986880 /test/insert.test
parente09daa90ac013c75806e582d7a073bf4d98783c2 (diff)
downloadsqlite-b9bb7c187e5cc9cce7d4e6fac38533339e865f33.tar.gz
sqlite-b9bb7c187e5cc9cce7d4e6fac38533339e865f33.zip
Progress toward CREATE VIRTUAL TABLE. Still not even close to working... (CVS 3211)
FossilOrigin-Name: 898ec36b4102aaa03979f8f5c510936e57e2ae48
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 b7d815c32..723a47d15 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.29 2006/01/17 09:35:02 danielk1977 Exp $
+# $Id: insert.test,v 1.30 2006/06/11 23:41:56 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -247,7 +247,7 @@ ifcapable tempdb {
set x [execsql {
EXPLAIN INSERT INTO t4 SELECT x+2 FROM t4;
}]
- expr {[lsearch $x OpenVirtual]>0}
+ expr {[lsearch $x OpenEphemeral]>0}
} {1}
}