v.18.16Improvement
arrayReverse Function Now Supports All Array Types
The arrayReverse function now works with any types of arrays. 73e3a7b6Why it matters
Previously, thearrayReverse 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 thearrayReverse function directly to arrays of any type within their queries, for example:SELECT arrayReverse(your_array_column) FROM your_table;