v.1.1.54362New Feature
SHOW TABLES Query Updated to Include Temporary Tables
TheSHOW TABLESquery now also shows temporary tables. Added temporary tables and theis_temporarycolumn tosystem.tables(zhang2014).
Why it matters
This feature improves visibility of temporary tables by displaying them alongside regular tables in theSHOW TABLES output and allowing users to identify temporary tables programmatically via the is_temporary column in system.tables. It helps manage and monitor temporary tables more effectively.How to use it
Simply use theSHOW TABLES query to see both permanent and temporary tables listed. To differentiate temporary tables, query system.tables with the is_temporary column, for example:SELECT name, is_temporary FROM system.tables WHERE database = 'your_database';