Syntax
UNCOMPRESS(str)
Purpose
UNCOMPRESS() decompresses a string compressed by using the COMPRESS() function.
Examples
obclient [test]> SELECT UNCOMPRESS(COMPRESS('abc'));
+-----------------------------+
| UNCOMPRESS(COMPRESS('abc')) |
+-----------------------------+
| abc |
+-----------------------------+
1 row in set