Mercurial > urweb
diff src/lacweb.lex @ 227:524e10c91478
GROUP BY and HAVING
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 21 Aug 2008 14:09:08 -0400 |
parents | b0041cc7e5f7 |
children | 016d71e878c1 |
line wrap: on
line diff
--- a/src/lacweb.lex Thu Aug 21 13:59:49 2008 -0400 +++ b/src/lacweb.lex Thu Aug 21 14:09:08 2008 -0400 @@ -297,6 +297,7 @@ <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> "HAVING" => (Tokens.HAVING (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));