v.22.2Improvement
Added UUID Support for hex and bin Functions
AddedUUIDdata type support for functionshexandbin. #32170 (Frank Chen).
Why it matters
This feature allows users to convertUUID values to their hexadecimal and binary representations using the hex and bin functions, enabling easier manipulation and representation of UUID data.How to use it
Use the existinghex and bin functions directly on columns or values of type UUID to obtain their hexadecimal or binary string representations respectively, for example: sql<br>SELECT hex(uuid_column), bin(uuid_column) FROM table<br>