Mercurial > urweb
diff src/urweb.lex @ 467:3f1b9231a37b
Inserted a NULL value
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 06 Nov 2008 15:37:38 -0500 |
parents | f542bc3133dc |
children | 7cb418e9714f |
line wrap: on
line diff
--- a/src/urweb.lex Thu Nov 06 14:03:50 2008 -0500 +++ b/src/urweb.lex Thu Nov 06 15:37:38 2008 -0500 @@ -357,6 +357,7 @@ <INITIAL> "UPDATE" => (Tokens.UPDATE (pos yypos, pos yypos + size yytext)); <INITIAL> "SET" => (Tokens.SET (pos yypos, pos yypos + size yytext)); <INITIAL> "DELETE" => (Tokens.DELETE (pos yypos, pos yypos + size yytext)); +<INITIAL> "NULL" => (Tokens.NULL (pos yypos, pos yypos + size yytext)); <INITIAL> "CURRENT_TIMESTAMP" => (Tokens.CURRENT_TIMESTAMP (pos yypos, pos yypos + size yytext));