As you might have recognized already, I love to take a look into
the Change logs from time to time and hope to find some goodies
there. Here's an especially nice one in the Change log of
5.1.12:
INFORMATION_SCHEMA contains new tables, GLOBAL_STATUS,
SESSION_STATUS, GLOBAL_VARIABLES, and SESSION_VARIABLES, that
correspond to the output from the SHOW {GLOBAL|SESSION} STATUS
and SHOW {GLOBAL|SESSION} VARIABLES statements.
This was reason enough for me to compile MySQL 5.1 from source
and take a look:
Welcome to the MySQL monitor. Commands end with ; or \g.[Read more]
Your MySQL connection id is 3 to server version: 5.1.12-beta-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use information_schema
Database changed
mysql> show tables;
+---------------------------------------+
| Tables_in_information_schema | …