Syntax
UNCOMPRESSED_LENGTH(str)
Purpose
Returns the length of the string before it was compressed by the COMPRESS() function.
Examples
obclient [test]> SELECT UNCOMPRESSED_LENGTH(COMPRESS('abc'));
+--------------------------------------+
| UNCOMPRESSED_LENGTH(COMPRESS('abc')) |
+--------------------------------------+
| 3 |
+--------------------------------------+
1 row in set
