v.21.10Improvements
ALTER MODIFY COLUMN to Nullable(T) No Longer Requires Mutation
NowALTER MODIFY COLUMTtoNullable(T)doesn't require mutation. #27787 (victorgao).
Why it matters
This feature improves schema modification efficiency by enabling users to make columns nullable directly throughALTER MODIFY COLUMN without triggering costly mutations, thus reducing downtime and resource usage during schema changes.How to use it
To make a column nullable, use theALTER TABLE <table> MODIFY COLUMN <column> Nullable(<Type>) statement. The change will be applied instantly without initiating a mutation process.