====
github.com/progorker =_============
_ __ _ _ ___ __ _ ___ _ _| |_____ _ _
| '_ \ '_/ _ \/ _` / _ \ '_| / / -_) '_|
| .__/_| \___/\__, \___/_| |_\_\___|_|
=|_|===========|___/======================
API References of myTestorProxy
----- oOo -----
[function] api_testor_unescape
==========================================
-------|__/-------------------------
SYNTAX
------------------------------------
function mytestorproxy.api_testor_unescape (
p_input longtext
)
returns longtext
-------|__/-------------------------
USAGE
------------------------------------
$) set @v_input = '{__dq__n__dq__: 2}'; set @v_output = mytestorproxy.api_testor_unescape( @v_input ); select @v_input as `input`, @v_output as `output`;
----------------------------
+--------------------+----------+
| input | output |
+--------------------+----------+
| {__dq__n__dq__: 2} | {"n": 2} |
+--------------------+----------+
----------------------------