|
hstore_to_json_loose(hstore)hstore_to_json_loose
json
- get hstore as a json value, but attempting to distinguish numerical and Boolean values so they are unquoted in the JSON
+ get hstore as a json value, but attempt to distinguish numerical and Boolean values so they are unquoted in the JSON
hstore_to_json_loose('"a key"=>1, b=>t, c=>null, d=>12345, e=>012345, f=>1.234, g=>2.345e+4')
{"a key": 1, "b": true, "c": null, "d": 12345, "e": "012345", "f": 1.234, "g": 2.345e+4}