v.19.8New Features

Support Rename Operation for Materializeview Storage

Support rename operation for MaterializeView storage. #5209 (Guillaume Tassery)
Support for the RENAME operation on MaterializeView storage in ClickHouse.

Why it matters

This feature allows users to rename MaterializeView tables directly, improving schema management flexibility by enabling modifications to view names without needing to drop and recreate them.

How to use it

Users can apply the RENAME TABLE statement to MaterializeView tables to change their names:

RENAME TABLE old_view_name TO new_view_name;