From 18f46707fe8462c480f824b2838920f7763c0427 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 15 Jun 2018 11:37:01 +0100 Subject: [PATCH] actualize names for *base64* family functions (#4568) Issue: #4563 --- docs/wiki/introduction/sql.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/wiki/introduction/sql.md b/docs/wiki/introduction/sql.md index e3a53a7f88b..0f0d21d275f 100644 --- a/docs/wiki/introduction/sql.md +++ b/docs/wiki/introduction/sql.md @@ -204,9 +204,9 @@ We have added `sha1`, `sha256`, and `md5` functions that take a single argument **Encoding functions** There are also encoding functions available to you to process query results. -- `base64`: base64 encode a string. -- `unbase64`: Decode a base64 encoded string. If the string is not valid base64 an empty string is returned. -- `conditional_base64`: Encode a string if and only if the string contains non-ASCII characters. +- `to_base64`: base64 encode a string. +- `from_base64`: Decode a base64 encoded string. If the string is not valid base64 an empty string is returned. +- `conditional_to_base64`: Encode a string if and only if the string contains non-ASCII characters. ### Table and column name deprecations