v.1.1.54362New Feature

RENAME TABLE Can Be Used for VIEW

RENAME TABLE can be performed for VIEW.
Support for RENAME TABLE on VIEWs in ClickHouse.

Why it matters

This feature extends the functionality of the RENAME TABLE SQL command to allow renaming of VIEWs. Previously, users could rename only tables, but with this enhancement, views can also be renamed, improving management and flexibility of database objects.

How to use it

Users can rename views just like tables using the RENAME TABLE command. For example:

RENAME TABLE old_view_name TO new_view_name;