aboutsummaryrefslogtreecommitdiff
path: root/src/tokenize.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2000-06-06 01:50:43 +0000
committerdrh <drh@noemail.net>2000-06-06 01:50:43 +0000
commitfef5208c15bba962490d844321f06a66e605f461 (patch)
treee3e628f9c92e506bc08938d783ce1e5972294dbe /src/tokenize.c
parent600b1b2f0185a8b671a05624779039773fb62764 (diff)
downloadsqlite-fef5208c15bba962490d844321f06a66e605f461.tar.gz
sqlite-fef5208c15bba962490d844321f06a66e605f461.zip
:-) (CVS 55)
FossilOrigin-Name: bd8b2645cc16759571c8c622dce4752bd35c04cf
Diffstat (limited to 'src/tokenize.c')
-rw-r--r--src/tokenize.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tokenize.c b/src/tokenize.c
index 76e0b7a17..989010e04 100644
--- a/src/tokenize.c
+++ b/src/tokenize.c
@@ -27,7 +27,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
-** $Id: tokenize.c,v 1.5 2000/05/31 20:00:53 drh Exp $
+** $Id: tokenize.c,v 1.6 2000/06/06 01:50:43 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -49,9 +49,11 @@ struct Keyword {
** These are the keywords
*/
static Keyword aKeywordTable[] = {
+ { "ALL", 0, TK_ALL, 0 },
{ "AND", 0, TK_AND, 0 },
{ "AS", 0, TK_AS, 0 },
{ "ASC", 0, TK_ASC, 0 },
+ { "BETWEEN", 0, TK_BETWEEN, 0 },
{ "BY", 0, TK_BY, 0 },
{ "CHECK", 0, TK_CHECK, 0 },
{ "CONSTRAINT", 0, TK_CONSTRAINT, 0 },
@@ -66,6 +68,7 @@ static Keyword aKeywordTable[] = {
{ "EXPLAIN", 0, TK_EXPLAIN, 0 },
{ "FROM", 0, TK_FROM, 0 },
{ "GLOB", 0, TK_GLOB, 0 },
+ { "IN", 0, TK_IN, 0 },
{ "INDEX", 0, TK_INDEX, 0 },
{ "INSERT", 0, TK_INSERT, 0 },
{ "INTO", 0, TK_INTO, 0 },