python-tabulate icon indicating copy to clipboard operation
python-tabulate copied to clipboard

Feature: Add mysql \G modifier as an output option.

Open alteredtech opened this issue 2 years ago • 0 comments

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)

alteredtech avatar Mar 22 '23 18:03 alteredtech