v.22.6New Feature

Implemented Comment Change for ReplicatedMergeTree Tables

Implemented changing the comment for ReplicatedMergeTree tables. #37416 (Vasily Nemkov).
Implemented the ability to change the comment for ReplicatedMergeTree tables in ClickHouse.

Why it matters

This feature allows users to modify the comment metadata of ReplicatedMergeTree tables, enabling better table documentation and clarity without needing to recreate the table or lose replication settings.

How to use it

Users can change the comment on an existing ReplicatedMergeTree table using the standard ALTER TABLE statement with the COMMENT clause. For example:

ALTER TABLE table_name COMMENT 'New comment';