From: Robert Haas Date: Wed, 6 Aug 2014 15:18:38 +0000 (-0400) Subject: Fix alternate regression test output file. X-Git-Tag: REL9_5_ALPHA1~1654 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=873de34b710196d1e3ce593bd85fa24768e58d6b;p=postgresql Fix alternate regression test output file. Commit 0ef99bdce3a6cd3195d7df12093042c16328c71c broke this. Jeff Janes --- diff --git a/src/test/regress/expected/json_1.out b/src/test/regress/expected/json_1.out index 2f8e8b0a9c..bfec32ffe7 100644 --- a/src/test/regress/expected/json_1.out +++ b/src/test/regress/expected/json_1.out @@ -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);