This repository was archived by the owner on Jan 28, 2021. It is now read-only.
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
[SQLAlchemy] missing column in SHOW FULL TABLES #562
Closed
Description
Following discussion from #319 (comment)
SQLAlchemy uses Table_type
column in SHOW FULL TABLES
results:
- get_table_names and line :2081
As of MySQL 5.0.2, the FULL modifier is supported such that SHOW FULL TABLES displays a second output column
http://ftp.nchu.edu.tw/MySQL/doc/refman/5.0/en/show-tables.html
Right now SHOW FULL TABLES
works, but does not include a Table_type
column.
Here is a python snippet to reproduce this.