json.sql 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. -- Strings.
  2. SELECT '""'::json; -- OK.
  3. SELECT $$''$$::json; -- ERROR, single quotes are not allowed
  4. SELECT '"abc"'::json; -- OK
  5. SELECT '"abc'::json; -- ERROR, quotes not closed
  6. SELECT '"abc
  7. def"'::json; -- ERROR, unescaped newline in string constant
  8. SELECT '"\n\"\\"'::json; -- OK, legal escapes
  9. SELECT '"\v"'::json; -- ERROR, not a valid JSON escape
  10. -- see json_encoding test for input with unicode escapes
  11. -- Numbers.
  12. SELECT '1'::json; -- OK
  13. SELECT '0'::json; -- OK
  14. SELECT '01'::json; -- ERROR, not valid according to JSON spec
  15. SELECT '0.1'::json; -- OK
  16. SELECT '9223372036854775808'::json; -- OK, even though it's too large for int8
  17. SELECT '1e100'::json; -- OK
  18. SELECT '1.3e100'::json; -- OK
  19. SELECT '1f2'::json; -- ERROR
  20. SELECT '0.x1'::json; -- ERROR
  21. SELECT '1.3ex100'::json; -- ERROR
  22. -- Arrays.
  23. SELECT '[]'::json; -- OK
  24. SELECT '[1,2]'::json; -- OK
  25. SELECT '[1,2,]'::json; -- ERROR, trailing comma
  26. SELECT '[1,2'::json; -- ERROR, no closing bracket
  27. SELECT '[1,[2]'::json; -- ERROR, no closing bracket
  28. -- Objects.
  29. SELECT '{}'::json; -- OK
  30. SELECT '{"abc"}'::json; -- ERROR, no value
  31. SELECT '{"abc":1}'::json; -- OK
  32. SELECT '{1:"abc"}'::json; -- ERROR, keys must be strings
  33. SELECT '{"abc",1}'::json; -- ERROR, wrong separator
  34. SELECT '{"abc"=1}'::json; -- ERROR, totally wrong separator
  35. SELECT '{"abc"::1}'::json; -- ERROR, another wrong separator
  36. SELECT '{"abc":1,"def":2,"ghi":[3,4],"hij":{"klm":5,"nop":[6]}}'::json; -- OK
  37. SELECT '{"abc":1:2}'::json; -- ERROR, colon in wrong spot
  38. SELECT '{"abc":1,3}'::json; -- ERROR, no value
  39. -- Miscellaneous stuff.
  40. SELECT 'true'::json; -- OK
  41. SELECT 'false'::json; -- OK
  42. SELECT 'null'::json; -- OK
  43. SELECT ' true '::json; -- OK, even with extra whitespace
  44. SELECT 'true false'::json; -- ERROR, too many values
  45. SELECT 'true, false'::json; -- ERROR, too many values
  46. SELECT 'truf'::json; -- ERROR, not a keyword
  47. SELECT 'trues'::json; -- ERROR, not a keyword
  48. SELECT ''::json; -- ERROR, no value
  49. SELECT ' '::json; -- ERROR, no value
  50. SELECT '{
  51. "one": 1,
  52. "two":,"two", -- ERROR extraneous comma before field "two"
  53. "three":
  54. true}'::json;
  55. SELECT '{
  56. "one": 1,
  57. "two":"two",
  58. "averyveryveryveryveryveryveryveryveryverylongfieldname":}'::json;
  59. -- ERROR missing value for last field
  60. --constructors
  61. -- array_to_json
  62. SELECT array_to_json(array(select 1 as a));
  63. SELECT array_to_json(array_agg(x),false) from generate_series(5,10) x;
  64. SELECT array_to_json('{{1,5},{99,100}}'::int[]);
  65. BEGIN;
  66. SET LOCAL TIME ZONE 10.5;
  67. SET LOCAL TIME ZONE -8;
  68. COMMIT;
  69. -- non-numeric output
  70. SELECT row_to_json(q)
  71. FROM (SELECT 'NaN'::float8 AS "float8field") q;
  72. SELECT row_to_json(q)
  73. FROM (SELECT 'Infinity'::float8 AS "float8field") q;
  74. SELECT row_to_json(q)
  75. FROM (SELECT '-Infinity'::float8 AS "float8field") q;
  76. -- json input
  77. SELECT row_to_json(q)
  78. FROM (SELECT '{"a":1,"b": [2,3,4,"d","e","f"],"c":{"p":1,"q":2}}'::json AS "jsonfield") q;
  79. -- json extraction functions
  80. CREATE TEMP TABLE test_json (
  81. json_type text,
  82. test_json json
  83. );
  84. INSERT INTO test_json VALUES
  85. ('scalar','"a scalar"'),
  86. ('array','["zero", "one","two",null,"four","five", [1,2,3],{"f1":9}]'),
  87. ('object','{"field1":"val1","field2":"val2","field3":null, "field4": 4, "field5": [1,2,3], "field6": {"f1":9}}');
  88. SELECT test_json -> 'x'
  89. FROM test_json
  90. WHERE json_type = 'scalar';
  91. SELECT test_json -> 'x'
  92. FROM test_json
  93. WHERE json_type = 'array';
  94. SELECT test_json -> 'x'
  95. FROM test_json
  96. WHERE json_type = 'object';
  97. SELECT test_json->'field2'
  98. FROM test_json
  99. WHERE json_type = 'object';
  100. SELECT test_json->>'field2'
  101. FROM test_json
  102. WHERE json_type = 'object';
  103. SELECT test_json -> 2
  104. FROM test_json
  105. WHERE json_type = 'scalar';
  106. SELECT test_json -> 2
  107. FROM test_json
  108. WHERE json_type = 'array';
  109. SELECT test_json -> -1
  110. FROM test_json
  111. WHERE json_type = 'array';
  112. SELECT test_json -> 2
  113. FROM test_json
  114. WHERE json_type = 'object';
  115. SELECT test_json->>2
  116. FROM test_json
  117. WHERE json_type = 'array';
  118. SELECT test_json ->> 6 FROM test_json WHERE json_type = 'array';
  119. SELECT test_json ->> 7 FROM test_json WHERE json_type = 'array';
  120. SELECT test_json ->> 'field4' FROM test_json WHERE json_type = 'object';
  121. SELECT test_json ->> 'field5' FROM test_json WHERE json_type = 'object';
  122. SELECT test_json ->> 'field6' FROM test_json WHERE json_type = 'object';
  123. -- nulls
  124. select (test_json->'field3') is null as expect_false
  125. from test_json
  126. where json_type = 'object';
  127. select (test_json->>'field3') is null as expect_true
  128. from test_json
  129. where json_type = 'object';
  130. select (test_json->3) is null as expect_false
  131. from test_json
  132. where json_type = 'array';
  133. select (test_json->>3) is null as expect_true
  134. from test_json
  135. where json_type = 'array';
  136. -- corner cases
  137. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json -> null::text;
  138. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json -> null::int;
  139. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json -> 1;
  140. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json -> -1;
  141. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json -> 'z';
  142. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json -> '';
  143. select '[{"b": "c"}, {"b": "cc"}]'::json -> 1;
  144. select '[{"b": "c"}, {"b": "cc"}]'::json -> 3;
  145. select '[{"b": "c"}, {"b": "cc"}]'::json -> 'z';
  146. select '{"a": "c", "b": null}'::json -> 'b';
  147. select '"foo"'::json -> 1;
  148. select '"foo"'::json -> 'z';
  149. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json ->> null::text;
  150. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json ->> null::int;
  151. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json ->> 1;
  152. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json ->> 'z';
  153. select '{"a": [{"b": "c"}, {"b": "cc"}]}'::json ->> '';
  154. select '[{"b": "c"}, {"b": "cc"}]'::json ->> 1;
  155. select '[{"b": "c"}, {"b": "cc"}]'::json ->> 3;
  156. select '[{"b": "c"}, {"b": "cc"}]'::json ->> 'z';
  157. select '{"a": "c", "b": null}'::json ->> 'b';
  158. select '"foo"'::json ->> 1;
  159. select '"foo"'::json ->> 'z';
  160. -- array length
  161. SELECT json_array_length('[1,2,3,{"f1":1,"f2":[5,6]},4]');
  162. SELECT json_array_length('[]');
  163. SELECT json_array_length('{"f1":1,"f2":[5,6]}');
  164. SELECT json_array_length('4');
  165. select * from json_each('{"f1":[1,2,3],"f2":{"f3":1},"f4":null,"f5":99,"f6":"stringy"}') q;
  166. select * from json_each_text('{"f1":[1,2,3],"f2":{"f3":1},"f4":null,"f5":99,"f6":"stringy"}') q;
  167. -- extract_path, extract_path_as_text
  168. select json_extract_path('{"f2":{"f3":1},"f4":{"f5":99,"f6":"stringy"}}','f4','f6');
  169. select json_extract_path('{"f2":{"f3":1},"f4":{"f5":99,"f6":"stringy"}}','f2');
  170. select json_extract_path('{"f2":["f3",1],"f4":{"f5":99,"f6":"stringy"}}','f2',0::text);
  171. select json_extract_path('{"f2":["f3",1],"f4":{"f5":99,"f6":"stringy"}}','f2',1::text);
  172. select json_extract_path_text('{"f2":{"f3":1},"f4":{"f5":99,"f6":"stringy"}}','f4','f6');
  173. select json_extract_path_text('{"f2":{"f3":1},"f4":{"f5":99,"f6":"stringy"}}','f2');
  174. select json_extract_path_text('{"f2":["f3",1],"f4":{"f5":99,"f6":"stringy"}}','f2',0::text);
  175. select json_extract_path_text('{"f2":["f3",1],"f4":{"f5":99,"f6":"stringy"}}','f2',1::text);
  176. -- extract_path nulls
  177. select json_extract_path('{"f2":{"f3":1},"f4":{"f5":null,"f6":"stringy"}}','f4','f5') is null as expect_false;
  178. select json_extract_path_text('{"f2":{"f3":1},"f4":{"f5":null,"f6":"stringy"}}','f4','f5') is null as expect_true;
  179. select json_extract_path('{"f2":{"f3":1},"f4":[0,1,2,null]}','f4','3') is null as expect_false;
  180. select json_extract_path_text('{"f2":{"f3":1},"f4":[0,1,2,null]}','f4','3') is null as expect_true;
  181. select * from json_array_elements('[1,true,[1,[2,3]],null,{"f1":1,"f2":[7,8,9]},false,"stringy"]') q;
  182. select * from json_array_elements_text('[1,true,[1,[2,3]],null,{"f1":1,"f2":[7,8,9]},false,"stringy"]') q;
  183. -- test type info caching in json_populate_record()
  184. CREATE TEMP TABLE jspoptest (js json);
  185. INSERT INTO jspoptest
  186. SELECT '{
  187. "jsa": [1, "2", null, 4],
  188. "rec": {"a": "abc", "c": "01.02.2003", "x": 43.2},
  189. "reca": [{"a": "abc", "b": 456}, null, {"c": "01.02.2003", "x": 43.2}]
  190. }'::json
  191. FROM generate_series(1, 3);
  192. --json_typeof() function
  193. select value, json_typeof(value)
  194. from (values (json '123.4'),
  195. (json '-1'),
  196. (json '"foo"'),
  197. (json 'true'),
  198. (json 'false'),
  199. (json 'null'),
  200. (json '[1, 2, 3]'),
  201. (json '[]'),
  202. (json '{"x":"foo", "y":123}'),
  203. (json '{}'),
  204. (NULL::json))
  205. as data(value);
  206. -- json_build_array, json_build_object, json_object_agg
  207. SELECT json_build_array('a',1,'b',1.2,'c',true,'d',null,'e',json '{"x": 3, "y": [1,2,3]}');
  208. SELECT json_build_array('a', NULL); -- ok
  209. SELECT json_build_object('a',1,'b',1.2,'c',true,'d',null,'e',json '{"x": 3, "y": [1,2,3]}');
  210. SELECT json_build_object('{a,b,c}'::text[]); -- error
  211. SELECT json_build_object('{a,b,c}'::text[], '{d,e,f}'::text[]); -- error, key cannot be array
  212. SELECT json_build_object('a', 'b', 'c'); -- error
  213. SELECT json_build_object(NULL, 'a'); -- error, key cannot be NULL
  214. SELECT json_build_object('a', NULL); -- ok
  215. -- empty objects/arrays
  216. SELECT json_build_array();
  217. SELECT json_build_object();
  218. -- make sure keys are quoted
  219. SELECT json_build_object(1,2);
  220. -- keys must be scalar and not null
  221. SELECT json_build_object(null,2);
  222. SELECT json_build_object(r,2) FROM (SELECT 1 AS a, 2 AS b) r;
  223. SELECT json_build_object(json '{"a":1,"b":2}', 3);
  224. SELECT json_build_object('{1,2,3}'::int[], 3);
  225. CREATE TEMP TABLE foo (serial_num int, name text, type text);
  226. INSERT INTO foo VALUES (847001,'t15','GE1043');
  227. INSERT INTO foo VALUES (847002,'t16','GE1043');
  228. INSERT INTO foo VALUES (847003,'sub-alpha','GESS90');
  229. SELECT json_build_object('turbines',json_object_agg(serial_num,json_build_object('name',name,'type',type)))
  230. FROM foo;
  231. SELECT json_object_agg(name, type) FROM foo;
  232. INSERT INTO foo VALUES (999999, NULL, 'bar');
  233. SELECT json_object_agg(name, type) FROM foo;
  234. -- json_object
  235. -- empty object, one dimension
  236. SELECT json_object('{}');
  237. -- empty object, two dimensions
  238. SELECT json_object('{}', '{}');
  239. -- one dimension
  240. SELECT json_object('{a,1,b,2,3,NULL,"d e f","a b c"}');
  241. -- same but with two dimensions
  242. SELECT json_object('{{a,1},{b,2},{3,NULL},{"d e f","a b c"}}');
  243. -- odd number error
  244. SELECT json_object('{a,b,c}');
  245. -- one column error
  246. SELECT json_object('{{a},{b}}');
  247. -- too many columns error
  248. SELECT json_object('{{a,b,c},{b,c,d}}');
  249. -- too many dimensions error
  250. SELECT json_object('{{{a,b},{c,d}},{{b,c},{d,e}}}');
  251. --two argument form of json_object
  252. select json_object('{a,b,c,"d e f"}','{1,2,3,"a b c"}');
  253. -- too many dimensions
  254. SELECT json_object('{{a,1},{b,2},{3,NULL},{"d e f","a b c"}}', '{{a,1},{b,2},{3,NULL},{"d e f","a b c"}}');
  255. -- mismatched dimensions
  256. select json_object('{a,b,c,"d e f",g}','{1,2,3,"a b c"}');
  257. select json_object('{a,b,c,"d e f"}','{1,2,3,"a b c",g}');
  258. -- null key error
  259. select json_object('{a,b,NULL,"d e f"}','{1,2,3,"a b c"}');
  260. -- empty key is allowed
  261. select json_object('{a,b,"","d e f"}','{1,2,3,"a b c"}');
  262. -- json_strip_nulls
  263. select json_strip_nulls(null);
  264. select json_strip_nulls('1');
  265. select json_strip_nulls('"a string"');
  266. select json_strip_nulls('null');
  267. select json_strip_nulls('[1,2,null,3,4]');
  268. select json_strip_nulls('{"a":1,"b":null,"c":[2,null,3],"d":{"e":4,"f":null}}');
  269. select json_strip_nulls('[1,{"a":1,"b":null,"c":2},3]');
  270. -- an empty object is not null and should not be stripped
  271. select json_strip_nulls('{"a": {"b": null, "c": null}, "d": {} }');