diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2017-01-22 12:31:32 +0100 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2017-03-13 12:07:47 +0100 |
commit | 7aa09a5ed2480f2459d52833772bb5b7677c2add (patch) | |
tree | 5e80c81104489f93296871be0225028000a823b5 /sql/lex.h | |
parent | a4652c3b1a2a366065dbac3a7570e3cac09870ad (diff) | |
download | mariadb-git-7aa09a5ed2480f2459d52833772bb5b7677c2add.tar.gz |
MDEV-10141: Add support for INTERSECT (and common parts for EXCEPT)
MDEV-10140: Add support for EXCEPT
Diffstat (limited to 'sql/lex.h')
-rw-r--r-- | sql/lex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index baeae088234..35c9e33d7d9 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -217,6 +217,7 @@ static SYMBOL symbols[] = { { "EVENTS", SYM(EVENTS_SYM)}, { "EVERY", SYM(EVERY_SYM)}, { "EXAMINED", SYM(EXAMINED_SYM)}, + { "EXCEPT", SYM(EXCEPT_SYM)}, { "EXCHANGE", SYM(EXCHANGE_SYM)}, { "EXCLUDE", SYM(EXCLUDE_SYM)}, { "EXECUTE", SYM(EXECUTE_SYM)}, @@ -280,6 +281,7 @@ static SYMBOL symbols[] = { { "IGNORE_SERVER_IDS", SYM(IGNORE_SERVER_IDS_SYM)}, { "IMMEDIATE", SYM(IMMEDIATE_SYM)}, { "IMPORT", SYM(IMPORT)}, + { "INTERSECT", SYM(INTERSECT_SYM)}, { "IN", SYM(IN_SYM)}, { "INDEX", SYM(INDEX_SYM)}, { "INDEXES", SYM(INDEXES)}, |