|
|
@ -277,6 +277,9 @@ drop table t1; |
|
|
select json_unquote('"abc"'); |
|
|
select json_unquote('"abc"'); |
|
|
json_unquote('"abc"') |
|
|
json_unquote('"abc"') |
|
|
abc |
|
|
abc |
|
|
|
|
|
select json_unquote('abc'); |
|
|
|
|
|
json_unquote('abc') |
|
|
|
|
|
abc |
|
|
select json_object("a", json_object("b", "abcd")); |
|
|
select json_object("a", json_object("b", "abcd")); |
|
|
json_object("a", json_object("b", "abcd")) |
|
|
json_object("a", json_object("b", "abcd")) |
|
|
{"a": {"b": "abcd"}} |
|
|
{"a": {"b": "abcd"}} |
|
|
|