Commit 3dfa0568 authored by vasil's avatar vasil

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                            | 
 +---------------------------------------+
parent f1c8ace2
......@@ -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* */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment