diff options
author | drh <drh@noemail.net> | 2008-07-08 23:40:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-07-08 23:40:20 +0000 |
commit | a9671a22b370710dfc89c0220cf02a1967ac869f (patch) | |
tree | fbbb23b5a85f4d24e2a37c405f112f02258eadb3 /src/insert.c | |
parent | 96d9cf064b9024abc1c4e4da79992ff8e618347f (diff) | |
download | sqlite-a9671a22b370710dfc89c0220cf02a1967ac869f.tar.gz sqlite-a9671a22b370710dfc89c0220cf02a1967ac869f.zip |
Remove obsolete code from select.c, including the "affinity" parameter
to the sqlite3Select() module. (CVS 5380)
FossilOrigin-Name: cbd3c1585b7a8f8042aa1448fe1be87de056c41a
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 586775e5c..9dda3954f 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.246 2008/07/08 22:28:49 shane Exp $ +** $Id: insert.c,v 1.247 2008/07/08 23:40:20 drh Exp $ */ #include "sqliteInt.h" @@ -530,7 +530,7 @@ void sqlite3Insert( VdbeComment((v, "Jump over SELECT coroutine")); /* Resolve the expressions in the SELECT statement and execute it. */ - rc = sqlite3Select(pParse, pSelect, &dest, 0, 0, 0, 0); + rc = sqlite3Select(pParse, pSelect, &dest, 0, 0, 0); if( rc || pParse->nErr || db->mallocFailed ){ goto insert_cleanup; } |