diff --git a/doc/sql.extensions/README.builtin_functions.txt b/doc/sql.extensions/README.builtin_functions.txt index 8dc757c0f1..baad51923d 100644 --- a/doc/sql.extensions/README.builtin_functions.txt +++ b/doc/sql.extensions/README.builtin_functions.txt @@ -575,6 +575,21 @@ Example: select hash(x using sha256) from y; +----------------------------- +HEX_ENCODE / HEX_DECODE +----------------------------- + +Function: + Encodes / decodes input data to / from hexadecimal representation. Works with character strings and blobs. + +Format: + HEX_ENCODE( ) + HEX_DECODE( ) + +Example: + select hex_encode(public_key) from clients; + + -------- LAST_DAY --------