summaryrefslogtreecommitdiff
path: root/src/urweb.lex
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-04-28 10:11:56 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-04-28 10:11:56 -0400
commit04dd6b3727c7786a4824897e78b0b2982ecd6f5b (patch)
treea004501c5981c841f5e58ffa7063b9f16fa6e78e /src/urweb.lex
parentd44f359d3913fc9cc8a284919180d78f083a6159 (diff)
INNER JOIN
Diffstat (limited to 'src/urweb.lex')
-rw-r--r--src/urweb.lex4
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));