diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-02-02 11:40:10 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-02-02 11:40:10 -0500 |
commit | 1a92bdc65a47614912b4bfd0cf6f442d7134ce23 (patch) | |
tree | 5271983ec2581bb6cf7fecc8053b8c3e41de9250 /src/urweb.lex | |
parent | 912c6fcf0c09348965262dd13c8faaefa61c2999 (diff) |
'ORDER BY RANDOM' (based on a patch from Ron de Bruijn)
Diffstat (limited to 'src/urweb.lex')
-rw-r--r-- | src/urweb.lex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/urweb.lex b/src/urweb.lex index b3b590f2..50ebe843 100644 --- a/src/urweb.lex +++ b/src/urweb.lex @@ -490,6 +490,7 @@ xint = x[0-9a-fA-F][0-9a-fA-F]; <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)); |