v.1.1.54390Improvement

Support for Array(Tuple(...)) in arrayEnumerateUniq Function

Added support for Array(Tuple(...)) arguments for the arrayEnumerateUniq function (#2573).
Added support for Array(Tuple(...)) arguments to the arrayEnumerateUniq function.

Why it matters

This feature enables arrayEnumerateUniq to work with arrays containing tuples, allowing users to enumerate unique tuples within arrays. It expands the usability of the function to more complex data types, providing more flexibility and functionality when processing nested or composite array data.

How to use it

Simply pass an Array(Tuple(...)) type argument to the arrayEnumerateUniq function in your SQL queries. For example:

SELECT arrayEnumerateUniq([('a', 1), ('b', 2), ('a', 1)]);