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

Commit 89e0614

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 cd043b5 commit 89e0614

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
- `REPLACE(str,from_str,to_str)`: Returns the string str with all occurrences of the string from_str replaced by the string to_str.
105105
- `IFNULL(expr1, expr2)`: If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2.
106106
- `NULLIF(expr1, expr2)`: Returns NULL if expr1 = expr2 is true, otherwise returns expr1.
107+
- `TO_BASE64(str)`: Encodes the string str in base64 format.
108+
- `FROM_BASE64(str)`: Decodes the base64-encoded string str.
107109

108110
## Example
109111

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)