aboutsummaryrefslogtreecommitdiff
path: root/src/tokenize.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2000-05-31 20:00:52 +0000
committerdrh <drh@noemail.net>2000-05-31 20:00:52 +0000
commitefb7251d6ec9879ab5d7eec271e42fce26012b11 (patch)
tree605c5425feb4530751ae93f8b9e13f17249e0036 /src/tokenize.c
parentec86adb88b03e4770cd51b6f33469689da7241d2 (diff)
downloadsqlite-efb7251d6ec9879ab5d7eec271e42fce26012b11.tar.gz
sqlite-efb7251d6ec9879ab5d7eec271e42fce26012b11.zip
added DISTINCT on select (CVS 27)
FossilOrigin-Name: 1f0c4ffd98591e506201b6b0e6e60b9216ceb596
Diffstat (limited to 'src/tokenize.c')
-rw-r--r--src/tokenize.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tokenize.c b/src/tokenize.c
index d47476ff7..76e0b7a17 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.4 2000/05/31 02:27:49 drh Exp $
+** $Id: tokenize.c,v 1.5 2000/05/31 20:00:53 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -61,6 +61,7 @@ static Keyword aKeywordTable[] = {
{ "DELETE", 0, TK_DELETE, 0 },
{ "DELIMITERS", 0, TK_DELIMITERS, 0 },
{ "DESC", 0, TK_DESC, 0 },
+ { "DISTINCT", 0, TK_DISTINCT, 0 },
{ "DROP", 0, TK_DROP, 0 },
{ "EXPLAIN", 0, TK_EXPLAIN, 0 },
{ "FROM", 0, TK_FROM, 0 },