v.22.6New Feature
Implemented Comment Change for ReplicatedMergeTree Tables
Implemented changing the comment for ReplicatedMergeTree tables. #37416 (Vasily Nemkov).Why it matters
This feature allows users to modify the comment metadata ofReplicatedMergeTree 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 existingReplicatedMergeTree table using the standard ALTER TABLE statement with the COMMENT clause. For example:ALTER TABLE table_name COMMENT 'New comment';