v.24.3Improvement
Fix has() Function for Nullable Column
Fixhas()function withNullablecolumn (fixes #60214). #61249 (Mikhail Koviazin).
Why it matters
The fix addresses an issue where thehas() function did not work properly with Nullable columns, ensuring accurate checks for the presence of elements in such columns. This improves reliability of queries involving nullable data types.How to use it
No user action is required other than updating to the fixed version. After updating, you can continue using thehas() function with Nullable columns as usual, for example:SELECT has(nullable_column, some_value) FROM table_name;