Mercurial > urweb
diff src/lacweb.lex @ 230:87d41ac28b30
ORDER BY
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 21 Aug 2008 15:50:08 -0400 |
parents | 016d71e878c1 |
children | eadeea528f75 |
line wrap: on
line diff
--- a/src/lacweb.lex Thu Aug 21 15:27:04 2008 -0400 +++ b/src/lacweb.lex Thu Aug 21 15:50:08 2008 -0400 @@ -306,6 +306,7 @@ <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> "ORDER" => (Tokens.ORDER (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));