How is it possible to handle backslash as is with named_struct?
I am trying to achieve the return value of:
{"test": "DE844\/374"}
a) with this:
SELECT named_struct('test', "DE844\/374");
return value is:
{"test": "DE844/374"}
b) with this:
SELECT named_struct('test', "DE844\\/374");
return value is:
{"test": "DE844\\/374"}