From 04dd6b3727c7786a4824897e78b0b2982ecd6f5b Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Tue, 28 Apr 2009 10:11:56 -0400 Subject: INNER JOIN --- src/urweb.lex | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/urweb.lex') diff --git a/src/urweb.lex b/src/urweb.lex index 534d51c6..c20e9206 100644 --- a/src/urweb.lex +++ b/src/urweb.lex @@ -338,6 +338,10 @@ notags = [^<{\n]+; "OFFSET" => (Tokens.OFFSET (pos yypos, pos yypos + size yytext)); "ALL" => (Tokens.ALL (pos yypos, pos yypos + size yytext)); + "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)); + "UNION" => (Tokens.UNION (pos yypos, pos yypos + size yytext)); "INTERSECT" => (Tokens.INTERSECT (pos yypos, pos yypos + size yytext)); "EXCEPT" => (Tokens.EXCEPT (pos yypos, pos yypos + size yytext)); -- cgit v1.2.3