v.25.7Improvement

Function reinterpret function now supports conversion

Function reinterpret function now supports conversion to Array(T) where T is a fixed-size data type (issue #82621). #83399 (Shankar Iyer).
The reinterpret function now supports conversion to Array(T) where T is a fixed-size data type.

Why it matters

This feature extends the capabilities of the reinterpret 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 the reinterpret 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;