python-tabulate
python-tabulate copied to clipboard
Feature: Add mysql \G modifier as an output option.
Another output type that would have the same output as mysql \G modifier to make some information easier to read for tabulate.
mysql> SHOW MASTER STATUS;
+------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000193 | 7061 | | |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)
mysql> SHOW MASTER STATUS\G
*************************** 1. row ***************************
File: mysql-bin.000193
Position: 7061
Binlog_Do_DB:
Binlog_Ignore_DB:
1 row in set (0.00 sec)