v.25.10New Feature
Alias engine creates a proxy
The Alias engine creates a proxy to another table. All read and write operations are forwarded to the target table, while the alias itself stores no data and only maintains a reference to the target table. #87965 (Kai Zhu).Why it matters
This feature simplifies table management by allowing users to create lightweight aliases that reference existing tables. It eliminates data duplication and provides a convenient way to rename or redirect tables without impacting the underlying data storage.How to use it
To use theAlias engine, create a table with the Alias engine specifying the target table name. For example:CREATE TABLE alias_table_name ENGINE = Alias('original_table_name');All queries against the alias table will be transparently forwarded to the target table.