diff options
author | drh <drh@noemail.net> | 2006-06-11 23:41:55 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-06-11 23:41:55 +0000 |
commit | b9bb7c187e5cc9cce7d4e6fac38533339e865f33 (patch) | |
tree | 3d12b363c1d5496178d24a45ff90913049986880 /src/insert.c | |
parent | e09daa90ac013c75806e582d7a073bf4d98783c2 (diff) | |
download | sqlite-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 'src/insert.c')
-rw-r--r-- | src/insert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insert.c b/src/insert.c index c8c5090e9..295d753d3 100644 --- a/src/insert.c +++ b/src/insert.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. ** -** $Id: insert.c,v 1.164 2006/03/15 16:26:10 drh Exp $ +** $Id: insert.c,v 1.165 2006/06/11 23:41:55 drh Exp $ */ #include "sqliteInt.h" @@ -371,7 +371,7 @@ void sqlite3Insert( ** back up and execute the SELECT code above. */ sqlite3VdbeJumpHere(v, iInitCode); - sqlite3VdbeAddOp(v, OP_OpenVirtual, srcTab, 0); + sqlite3VdbeAddOp(v, OP_OpenEphemeral, srcTab, 0); sqlite3VdbeAddOp(v, OP_SetNumColumns, srcTab, nColumn); sqlite3VdbeAddOp(v, OP_Goto, 0, iSelectLoop); sqlite3VdbeResolveLabel(v, iCleanup); |