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

add two missing initializer values (CVS 4937)

FossilOrigin-Name: bf28f1c260b3efbec3b031edb97ccb7b4b039947
This commit is contained in:
rse
2008-03-29 12:50:33 +00:00
parent 28f667fc22
commit 907b46ca16
3 changed files with 9 additions and 9 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.241 2008/03/20 16:30:18 drh Exp $
** @(#) $Id: parse.y,v 1.242 2008/03/29 12:50:33 rse Exp $
*/
// All token codes are small integers with #defines that begin with "TK_"
@@ -360,7 +360,7 @@ cmd ::= DROP VIEW ifexists(E) fullname(X). {
//////////////////////// The SELECT statement /////////////////////////////////
//
cmd ::= select(X). {
SelectDest dest = {SRT_Callback, 0, 0};
SelectDest dest = {SRT_Callback, 0, 0, 0, 0};
sqlite3Select(pParse, X, &dest, 0, 0, 0, 0);
sqlite3SelectDelete(X);
}