v.1.1.54362New Feature
Implemented Empty Function for FixedString Null Byte Check
Implemented theemptyfunction from aFixedStringargument: the function returns 1 if the string consists entirely of null bytes (zhang2014).
Why it matters
This feature allows users to check whether aFixedString is effectively empty by verifying if it contains only null bytes. It helps in identifying uninitialized or placeholder fixed-length strings, improving data validation and processing.How to use it
Use theempty function by passing a FixedString column or value as an argument. For example:SELECT empty(fixed_string_column) FROM tableThis query will return 1 for each row where the
FixedString consists entirely of null bytes.