diff options
author | Alexander Barkov <bar@mariadb.org> | 2016-09-17 08:14:07 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-05 15:02:44 +0400 |
commit | 6cd24d124ff1fdc484abc60932fedc1e2d3adac1 (patch) | |
tree | dd27f80fd074debd1a95477c491c24d2375a880e /sql/lex.h | |
parent | a83d0aee961132bdb19f4801834f87a63e053059 (diff) | |
download | mariadb-git-6cd24d124ff1fdc484abc60932fedc1e2d3adac1.tar.gz |
MDEV-10411 Providing compatibility for basic PL/SQL constructs
Part 15: ELSIF vs ELSEIF
Also, moving tests for Oracle keywords in sql_mode=DEFAULT
from "parser.test" to a better place "keywords.test".
Diffstat (limited to 'sql/lex.h')
-rw-r--r-- | sql/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index b1259eab42b..d258c9bac5b 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -203,6 +203,7 @@ static SYMBOL symbols[] = { { "EACH", SYM(EACH_SYM)}, { "ELSE", SYM(ELSE)}, { "ELSEIF", SYM(ELSEIF_SYM)}, + { "ELSIF", SYM(ELSIF_SYM)}, { "ENABLE", SYM(ENABLE_SYM)}, { "ENCLOSED", SYM(ENCLOSED)}, { "END", SYM(END)}, |