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

Commit ee0bce0

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 96001aa commit ee0bce0

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
@@ -104,6 +104,8 @@ We support and actively test against certain third-party clients to ensure compa
104104
|`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.|
105105
|`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.|
106106
|`SUM(expr)`|Returns the sum of expr in all rows.|
107+
|`TO_BASE64(str)`|Encodes the string str in base64 format.|
108+
|`FROM_BASE64(str)`|Decodes the base64-encoded string str.|
107109
|`TRIM(str)`|Returns the string str with all spaces removed.|
108110
|`UPPER(str)`|Returns the string str with all characters in upper case.|
109111
|`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
@@ -109,6 +109,8 @@
109109
- LN
110110
- LOG2
111111
- LOG10
112+
- TO_BASE64
113+
- FROM_BASE64
112114

113115
## Time functions
114116
- DAY

0 commit comments

Comments
 (0)