summaryrefslogtreecommitdiff
path: root/src/lacweb.lex
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-21 13:59:49 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-21 13:59:49 -0400
commit4832e63e1f6c7b5bb7c098e371c794111f32f878 (patch)
treed2df75857d17583826cdc8b4a182607d237a31b1 /src/lacweb.lex
parent71e2a7c3c0fd3cbf7e472e85b491ed890fe5976c (diff)
Basic GROUP BY
Diffstat (limited to 'src/lacweb.lex')
-rw-r--r--src/lacweb.lex2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lacweb.lex b/src/lacweb.lex
index 70e55df7..0a7d2433 100644
--- a/src/lacweb.lex
+++ b/src/lacweb.lex
@@ -295,6 +295,8 @@ notags = [^<{\n]+;
<INITIAL> "FROM" => (Tokens.FROM (pos yypos, pos yypos + size yytext));
<INITIAL> "AS" => (Tokens.AS (pos yypos, pos yypos + size yytext));
<INITIAL> "WHERE" => (Tokens.CWHERE (pos yypos, pos yypos + size yytext));
+<INITIAL> "GROUP" => (Tokens.GROUP (pos yypos, pos yypos + size yytext));
+<INITIAL> "BY" => (Tokens.BY (pos yypos, pos yypos + size yytext));
<INITIAL> "TRUE" => (Tokens.TRUE (pos yypos, pos yypos + size yytext));
<INITIAL> "FALSE" => (Tokens.FALSE (pos yypos, pos yypos + size yytext));