v.1.1.54362New Feature
Added Virtual Columns to system.tables Table
Added thecreate_table_queryandengine_fullvirtual columns to thesystem.tablestable . Themetadata_modification_timecolumn is virtual.
Why it matters
This feature provides users with enhanced metadata visibility by exposing the full CREATE TABLE query, the complete engine description, and the metadata modification timestamp directly within thesystem.tables table. It helps users to easily inspect table definitions and metadata changes without extra queries or file access.How to use it
Users can query the newly added virtual columns directly from thesystem.tables table in SQL. For example, use:SELECT name, create_table_query, engine_full, metadata_modification_time
FROM system.tables
WHERE database = 'your_database'This will show the table schema creation query, engine details, and metadata modification time for each table.