1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-24 08:21:29 +03:00

Remove obsolete code from select.c, including the "affinity" parameter

to the sqlite3Select() module. (CVS 5380)

FossilOrigin-Name: cbd3c1585b7a8f8042aa1448fe1be87de056c41a
This commit is contained in:
drh
2008-07-08 23:40:20 +00:00
parent 96d9cf064b
commit a9671a22b3
13 changed files with 128 additions and 187 deletions

View File

@@ -14,7 +14,7 @@
** the parser. Lemon will also generate a header file containing
** numeric codes for all of the tokens.
**
** @(#) $Id: parse.y,v 1.244 2008/06/05 16:47:39 danielk1977 Exp $
** @(#) $Id: parse.y,v 1.245 2008/07/08 23:40:20 drh Exp $
*/
// All token codes are small integers with #defines that begin with "TK_"
@@ -361,7 +361,7 @@ cmd ::= DROP VIEW ifexists(E) fullname(X). {
//
cmd ::= select(X). {
SelectDest dest = {SRT_Callback, 0, 0, 0, 0};
sqlite3Select(pParse, X, &dest, 0, 0, 0, 0);
sqlite3Select(pParse, X, &dest, 0, 0, 0);
sqlite3SelectDelete(X);
}