From: Peter Eisentraut Date: Mon, 12 Oct 2015 01:44:27 +0000 (-0400) Subject: Fix whitespace X-Git-Tag: REL9_5_BETA2~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7109c606d00f972359052bb8c8879a1ecfc1850f;p=postgresql Fix whitespace --- diff --git a/src/test/regress/sql/json_encoding.sql b/src/test/regress/sql/json_encoding.sql index 47536fbaa8..87a2d564ff 100644 --- a/src/test/regress/sql/json_encoding.sql +++ b/src/test/regress/sql/json_encoding.sql @@ -65,4 +65,3 @@ SELECT jsonb '{ "a": "dollar \u0024 character" }' ->> 'a' as correct_everywhere SELECT jsonb '{ "a": "dollar \\u0024 character" }' ->> 'a' as not_an_escape; SELECT jsonb '{ "a": "null \u0000 escape" }' ->> 'a' as fails; SELECT jsonb '{ "a": "null \\u0000 escape" }' ->> 'a' as not_an_escape; -