Mercurial > urweb
diff src/urweb.lex @ 751:f95d652086cd
RIGHT and FULL JOIN
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 28 Apr 2009 11:14:24 -0400 |
parents | 059074c8d2fc |
children | 8688e01ae469 |
line wrap: on
line diff
--- a/src/urweb.lex Tue Apr 28 11:05:28 2009 -0400 +++ b/src/urweb.lex Tue Apr 28 11:14:24 2009 -0400 @@ -341,7 +341,10 @@ <INITIAL> "JOIN" => (Tokens.JOIN (pos yypos, pos yypos + size yytext)); <INITIAL> "INNER" => (Tokens.INNER (pos yypos, pos yypos + size yytext)); <INITIAL> "CROSS" => (Tokens.CROSS (pos yypos, pos yypos + size yytext)); +<INITIAL> "OUTER" => (Tokens.OUTER (pos yypos, pos yypos + size yytext)); <INITIAL> "LEFT" => (Tokens.LEFT (pos yypos, pos yypos + size yytext)); +<INITIAL> "RIGHT" => (Tokens.RIGHT (pos yypos, pos yypos + size yytext)); +<INITIAL> "FULL" => (Tokens.FULL (pos yypos, pos yypos + size yytext)); <INITIAL> "UNION" => (Tokens.UNION (pos yypos, pos yypos + size yytext)); <INITIAL> "INTERSECT" => (Tokens.INTERSECT (pos yypos, pos yypos + size yytext));