v.20.8Improvement
Update: ALTER Query for Version Column in VersionedCollapsingMergeTree
Now it's possible to change the type of version column forVersionedCollapsingMergeTreewithALTERquery. #15442 (alesapin).
Why it matters
This feature allows users to modify the data type of the version column inVersionedCollapsingMergeTree tables without recreating the table. It solves the problem of inflexibility in schema evolution related to version columns, improving manageability and reducing downtime.How to use it
Use theALTER TABLE query to change the type of the version column in a VersionedCollapsingMergeTree table. Example syntax:ALTER TABLE table_name MODIFY COLUMN version_column_name NEW_TYPE