summaryrefslogtreecommitdiff
path: root/sql/lex.h
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2020-04-09 01:11:35 +0300
committerMonty <monty@mariadb.org>2020-04-19 17:33:51 +0300
commit78357796e8069f8cd041ea0bb0f5802234bdd2bc (patch)
treee917fe022d8c0796336bb626a12a702bfa718b5c /sql/lex.h
parent91ffdc8380ab48a2d57dc81472beb80af115318f (diff)
downloadmariadb-git-78357796e8069f8cd041ea0bb0f5802234bdd2bc.tar.gz
Added support for VISIBLE attribute for indexes in CREATE TABLE
MDEV-22199 Add VISIBLE attribute for indexes in CREATE TABLE This was done to make it easier to read in dumps from MySQL 8.0 generated with MySQL workbench
Diffstat (limited to 'sql/lex.h')
-rw-r--r--sql/lex.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sql/lex.h b/sql/lex.h
index 30f330cedce..542356c0e43 100644
--- a/sql/lex.h
+++ b/sql/lex.h
@@ -43,6 +43,9 @@ SYM_GROUP sym_group_rtree= {"RTree keys", "HAVE_RTREE_KEYS"};
NOTE! The symbol tables should be the same regardless of what features
are compiled into the server. Don't add ifdef'ed symbols to the
lists
+ NOTE!!
+ If you add or delete symbols from this file, you must also update results for
+ the perfschema.start_server_low_digest_sql_length test!
*/
static SYMBOL symbols[] = {
@@ -174,7 +177,7 @@ static SYMBOL symbols[] = {
{ "DAY_MICROSECOND", SYM(DAY_MICROSECOND_SYM)},
{ "DAY_MINUTE", SYM(DAY_MINUTE_SYM)},
{ "DAY_SECOND", SYM(DAY_SECOND_SYM)},
- { "DEALLOCATE", SYM(DEALLOCATE_SYM)},
+ { "DEALLOCATE", SYM(DEALLOCATE_SYM)},
{ "DEC", SYM(DECIMAL_SYM)},
{ "DECIMAL", SYM(DECIMAL_SYM)},
{ "DECLARE", SYM(DECLARE_MARIADB_SYM)},
@@ -705,6 +708,7 @@ static SYMBOL symbols[] = {
{ "VIA", SYM(VIA_SYM)},
{ "VIEW", SYM(VIEW_SYM)},
{ "VIRTUAL", SYM(VIRTUAL_SYM)},
+ { "VISIBLE", SYM(VISIBLE_SYM)},
{ "VERSIONING", SYM(VERSIONING_SYM)},
{ "WAIT", SYM(WAIT_SYM)},
{ "WARNINGS", SYM(WARNINGS)},
@@ -713,7 +717,7 @@ static SYMBOL symbols[] = {
{ "WHEN", SYM(WHEN_SYM)},
{ "WHERE", SYM(WHERE)},
{ "WHILE", SYM(WHILE_SYM)},
- { "WINDOW", SYM(WINDOW_SYM)},
+ { "WINDOW", SYM(WINDOW_SYM)},
{ "WITH", SYM(WITH)},
{ "WITHIN", SYM(WITHIN)},
{ "WITHOUT", SYM(WITHOUT)},