v.1.1.54390Improvement
Support for Array(Tuple(...)) in arrayEnumerateUniq Function
Added support forArray(Tuple(...))arguments for thearrayEnumerateUniqfunction (#2573).
Why it matters
This feature enablesarrayEnumerateUniq 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 anArray(Tuple(...)) type argument to the arrayEnumerateUniq function in your SQL queries. For example:SELECT arrayEnumerateUniq([('a', 1), ('b', 2), ('a', 1)]);