Mercurial > urweb
diff src/lacweb.lex @ 226:b0041cc7e5f7
Basic GROUP BY
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 21 Aug 2008 13:59:49 -0400 |
parents | 2b665e822e9a |
children | 524e10c91478 |
line wrap: on
line diff
--- a/src/lacweb.lex Thu Aug 21 13:47:18 2008 -0400 +++ b/src/lacweb.lex Thu Aug 21 13:59:49 2008 -0400 @@ -295,6 +295,8 @@ <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));