Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit 689788f

Browse files
author
Juanjo Alvarez
committed
Add base64 functions info to readme.md and supported.md
Signed-off-by: Juanjo Alvarez <[email protected]>
1 parent e19ea5f commit 689788f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ We support and actively test against certain third-party clients to ensure compa
105105
|`SUBSTR(str, pos, [len])`|Return a substring from the provided string starting at `pos` with a length of `len` characters. If no `len` is provided, all characters from `pos` until the end will be taken.|
106106
|`SUBSTRING(str, pos, [len])`|Return a substring from the provided string starting at `pos` with a length of `len` characters. If no `len` is provided, all characters from `pos` until the end will be taken.|
107107
|`SUM(expr)`|Returns the sum of expr in all rows.|
108+
|`TO_BASE64(str)`|Encodes the string str in base64 format.|
109+
|`FROM_BASE64(str)`|Decodes the base64-encoded string str.|
108110
|`TRIM(str)`|Returns the string str with all spaces removed.|
109111
|`UPPER(str)`|Returns the string str with all characters in upper case.|
110112
|`WEEKDAY(date)`|Returns the weekday of the given date.|

SUPPORTED.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@
110110
- LOG2
111111
- LOG10
112112
- SLEEP
113+
- TO_BASE64
114+
- FROM_BASE64
113115

114116
## Time functions
115117
- DAY

0 commit comments

Comments
 (0)