mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
branches/zip:
Convert INFORMATION_SCHEMA tables' names to upper case so that they are consistent with other INFORMATION_SCHEMA tables. mysql> show tables; +---------------------------------------+ | Tables_in_information_schema | +---------------------------------------+ | CHARACTER_SETS | | COLLATIONS | | COLLATION_CHARACTER_SET_APPLICABILITY | | COLUMNS | | COLUMN_PRIVILEGES | | ENGINES | | EVENTS | | FILES | | GLOBAL_STATUS | | GLOBAL_VARIABLES | | KEY_COLUMN_USAGE | | PARTITIONS | | PLUGINS | | PROCESSLIST | | REFERENTIAL_CONSTRAINTS | | ROUTINES | | SCHEMATA | | SCHEMA_PRIVILEGES | | SESSION_STATUS | | SESSION_VARIABLES | | STATISTICS | | TABLES | | TABLE_CONSTRAINTS | | TABLE_PRIVILEGES | | TRIGGERS | | USER_PRIVILEGES | | VIEWS | | innodb_zip_reset | | innodb_trx | | innodb_locks | | innodb_lock_waits | | innodb_zip | +---------------------------------------+
This commit is contained in:
parent
1656f17211
commit
bda6490d67
1 changed files with 5 additions and 5 deletions
|
@ -370,7 +370,7 @@ struct st_mysql_plugin i_s_innodb_trx =
|
|||
|
||||
/* plugin name */
|
||||
/* const char* */
|
||||
STRUCT_FLD(name, "innodb_trx"),
|
||||
STRUCT_FLD(name, "INNODB_TRX"),
|
||||
|
||||
/* plugin author (for SHOW PLUGINS) */
|
||||
/* const char* */
|
||||
|
@ -616,7 +616,7 @@ struct st_mysql_plugin i_s_innodb_locks =
|
|||
|
||||
/* plugin name */
|
||||
/* const char* */
|
||||
STRUCT_FLD(name, "innodb_locks"),
|
||||
STRUCT_FLD(name, "INNODB_LOCKS"),
|
||||
|
||||
/* plugin author (for SHOW PLUGINS) */
|
||||
/* const char* */
|
||||
|
@ -766,7 +766,7 @@ struct st_mysql_plugin i_s_innodb_lock_waits =
|
|||
|
||||
/* plugin name */
|
||||
/* const char* */
|
||||
STRUCT_FLD(name, "innodb_lock_waits"),
|
||||
STRUCT_FLD(name, "INNODB_LOCK_WAITS"),
|
||||
|
||||
/* plugin author (for SHOW PLUGINS) */
|
||||
/* const char* */
|
||||
|
@ -1106,7 +1106,7 @@ struct st_mysql_plugin i_s_innodb_zip =
|
|||
|
||||
/* plugin name */
|
||||
/* const char* */
|
||||
STRUCT_FLD(name, "innodb_zip"),
|
||||
STRUCT_FLD(name, "INNODB_ZIP"),
|
||||
|
||||
/* plugin author (for SHOW PLUGINS) */
|
||||
/* const char* */
|
||||
|
@ -1155,7 +1155,7 @@ struct st_mysql_plugin i_s_innodb_zip_reset =
|
|||
|
||||
/* plugin name */
|
||||
/* const char* */
|
||||
STRUCT_FLD(name, "innodb_zip_reset"),
|
||||
STRUCT_FLD(name, "INNODB_ZIP_RESET"),
|
||||
|
||||
/* plugin author (for SHOW PLUGINS) */
|
||||
/* const char* */
|
||||
|
|
Loading…
Add table
Reference in a new issue