diff options
author | drh <drh@noemail.net> | 2015-11-10 00:02:49 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-11-10 00:02:49 +0000 |
commit | 07b09a942059b4330464a7003602700c75360c17 (patch) | |
tree | 67d90553efb1495f84c0eb5155e70020a8da0222 /src | |
parent | 822a62f84daff89539eec5d7b979380e91046424 (diff) | |
download | sqlite-07b09a942059b4330464a7003602700c75360c17.tar.gz sqlite-07b09a942059b4330464a7003602700c75360c17.zip |
Remove an unused non-terminal from the grammar.
FossilOrigin-Name: 3c37c522883ea9f2eec4f0ba5c5141912c003425
Diffstat (limited to 'src')
-rw-r--r-- | src/parse.y | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parse.y b/src/parse.y index 220df6368..842bf306e 100644 --- a/src/parse.y +++ b/src/parse.y @@ -651,7 +651,6 @@ dbnm(A) ::= DOT nm(X). {A = X;} fullname(A) ::= nm(X) dbnm(Y). {A = sqlite3SrcListAppend(pParse->db,0,&X,&Y);} %type joinop {int} -%type joinop2 {int} joinop(X) ::= COMMA|JOIN. { X = JT_INNER; } joinop(X) ::= JOIN_KW(A) JOIN. { X = sqlite3JoinType(pParse,&A,0,0); } joinop(X) ::= JOIN_KW(A) nm(B) JOIN. { X = sqlite3JoinType(pParse,&A,&B,0); } |