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/update.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/update.c')
-rw-r--r-- | src/update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/update.c b/src/update.c index 5ce03bf40..22d301240 100644 --- a/src/update.c +++ b/src/update.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. ** -** $Id: update.c,v 1.178 2008/04/28 18:46:43 drh Exp $ +** $Id: update.c,v 1.179 2008/07/08 23:40:20 drh Exp $ */ #include "sqliteInt.h" @@ -649,7 +649,7 @@ static void updateVirtualTable( /* fill the ephemeral table */ sqlite3SelectDestInit(&dest, SRT_Table, ephemTab); - sqlite3Select(pParse, pSelect, &dest, 0, 0, 0, 0); + sqlite3Select(pParse, pSelect, &dest, 0, 0, 0); /* Generate code to scan the ephemeral table and call VUpdate. */ iReg = ++pParse->nMem; |