Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
Description
information_schema.xtradb_enhancements is not visible in SHOW TABLES:
mysql> use information_schema;
Database changed
mysql> show tables like 'xtradb_enhancements';
Empty set (0.00 sec)
mysql> select name from xtradb_enhancements limit 1;
--------------------------
| name |
--------------------------
| xtradb_show_enhancements |
--------------------------
1 row in set (0.00 sec)
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
Re: information_schema.xtradb_enhancements is not visible in SHOW TABLES
This is fixed and released:
au0013:~ hakan$ mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.44b-MariaDB-log Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use information_schema;
Database changed
mysql> show tables like 'xtradb_enhancements';
----------------------------------------------------
----------------------------------------------------
----------------------------------------------------
1 row in set (0.00 sec)
mysql> select name from xtradb_enhancements limit 1;
--------------------------
--------------------------
--------------------------
1 row in set (0.00 sec)
mysql>