Mercurial > urweb
diff src/urweb.lex @ 1682:ac141fbb313a
'ORDER BY RANDOM' (based on a patch from Ron de Bruijn)
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 02 Feb 2012 11:40:10 -0500 |
parents | da788bd72c9e |
children | 4a03aa3251cb |
line wrap: on
line diff
--- a/src/urweb.lex Sun Jan 22 20:25:14 2012 -0500 +++ b/src/urweb.lex Thu Feb 02 11:40:10 2012 -0500 @@ -490,6 +490,7 @@ <INITIAL> "ASC" => (Tokens.ASC (pos yypos, pos yypos + size yytext)); <INITIAL> "DESC" => (Tokens.DESC (pos yypos, pos yypos + size yytext)); +<INITIAL> "RANDOM" => (Tokens.RANDOM (pos yypos, pos yypos + size yytext)); <INITIAL> "INSERT" => (Tokens.INSERT (pos yypos, pos yypos + size yytext)); <INITIAL> "INTO" => (Tokens.INTO (pos yypos, pos yypos + size yytext));