v.25.5Improvement
Support NULLs
Hash functions now support NULLs inside arrays, tuples, and maps. (issues #48365 and #48623). #79008 (Michael Kolupaev).Why it matters
This feature addresses issues where hash functions failed or produced incorrect results when encounteringNULL values inside arrays, tuples, or maps. By supporting NULLs, users can reliably perform hashing operations on complex nested data containing missing or undefined values, improving data integrity and query correctness.How to use it
No special configuration is needed to use this feature. When applying hash functions to arrays, tuples, or maps that containNULL values, the functions will now handle NULLs correctly automatically.