From ce12549593feae055d778b34ec9c5abef2b83123 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Tue, 28 Apr 2009 11:14:24 -0400 Subject: RIGHT and FULL JOIN --- src/urweb.lex | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/urweb.lex') diff --git a/src/urweb.lex b/src/urweb.lex index 517054b3..bb9004a6 100644 --- a/src/urweb.lex +++ b/src/urweb.lex @@ -341,7 +341,10 @@ notags = [^<{\n]+; "JOIN" => (Tokens.JOIN (pos yypos, pos yypos + size yytext)); "INNER" => (Tokens.INNER (pos yypos, pos yypos + size yytext)); "CROSS" => (Tokens.CROSS (pos yypos, pos yypos + size yytext)); + "OUTER" => (Tokens.OUTER (pos yypos, pos yypos + size yytext)); "LEFT" => (Tokens.LEFT (pos yypos, pos yypos + size yytext)); + "RIGHT" => (Tokens.RIGHT (pos yypos, pos yypos + size yytext)); + "FULL" => (Tokens.FULL (pos yypos, pos yypos + size yytext)); "UNION" => (Tokens.UNION (pos yypos, pos yypos + size yytext)); "INTERSECT" => (Tokens.INTERSECT (pos yypos, pos yypos + size yytext)); -- cgit v1.2.3