v.18.16Improvement

arrayReverse Function Now Supports All Array Types

The arrayReverse function now works with any types of arrays. 73e3a7b6
The arrayReverse function in ClickHouse has been extended to support arrays of any data type.

Why it matters

Previously, the arrayReverse function may have had limitations on the types of arrays it could process. This enhancement allows users to reverse arrays containing any data type, increasing the function's flexibility and usability across diverse datasets.

How to use it

Users can now apply the arrayReverse function directly to arrays of any type within their queries, for example:

SELECT arrayReverse(your_array_column) FROM your_table;