v.25.7Improvement
Function reinterpret function now supports conversion
Functionreinterpretfunction now supports conversion toArray(T)whereTis a fixed-size data type (issue #82621). #83399 (Shankar Iyer).
Why it matters
This feature extends the capabilities of thereinterpret function to allow users to convert data into arrays of fixed-size types, enabling more flexible and efficient data transformations and casting within ClickHouse.How to use it
Use thereinterpret function with the target type specified as Array(T), where T is a fixed-size data type. For example:SELECT reinterpret(Array(UInt32), some_column) FROM some_table;