]> granicus.if.org Git - postgresql/commitdiff
Fix alternate regression test output file.
authorRobert Haas <rhaas@postgresql.org>
Wed, 6 Aug 2014 15:18:38 +0000 (11:18 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 7 Aug 2014 13:51:32 +0000 (09:51 -0400)
Commit 930e8ad738f5c78abd667626ca86f2553f36356f broke this.

Jeff Janes

src/test/regress/expected/json_1.out

index 2f8e8b0a9cbbb677e5d6afd220b827eb399e2ea4..bfec32ffe7edeeb3367e1e3de961186765da18d9 100644 (file)
@@ -1146,7 +1146,8 @@ SELECT json_build_object(1,2);
 
 -- keys must be scalar and not null
 SELECT json_build_object(null,2);
-ERROR:  arg 1: key cannot be null
+ERROR:  argument 1 cannot be null
+HINT:  Object keys should be text.
 SELECT json_build_object(r,2) FROM (SELECT 1 AS a, 2 AS b) r;
 ERROR:  key value must be scalar, not array, composite, or json
 SELECT json_build_object(json '{"a":1,"b":2}', 3);