diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-28 10:11:56 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-28 10:11:56 -0400 |
commit | 04dd6b3727c7786a4824897e78b0b2982ecd6f5b (patch) | |
tree | a004501c5981c841f5e58ffa7063b9f16fa6e78e /src/urweb.lex | |
parent | d44f359d3913fc9cc8a284919180d78f083a6159 (diff) |
INNER JOIN
Diffstat (limited to 'src/urweb.lex')
-rw-r--r-- | src/urweb.lex | 4 |
1 files changed, 4 insertions, 0 deletions
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]+; <INITIAL> "OFFSET" => (Tokens.OFFSET (pos yypos, pos yypos + size yytext)); <INITIAL> "ALL" => (Tokens.ALL (pos yypos, pos yypos + size yytext)); +<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> "UNION" => (Tokens.UNION (pos yypos, pos yypos + size yytext)); <INITIAL> "INTERSECT" => (Tokens.INTERSECT (pos yypos, pos yypos + size yytext)); <INITIAL> "EXCEPT" => (Tokens.EXCEPT (pos yypos, pos yypos + size yytext)); |