From: Tom Lane Date: Sat, 1 Apr 2017 00:29:30 +0000 (-0400) Subject: Fix unstable regression test result. X-Git-Tag: REL_10_BETA1~429 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c281cd5fe178c946dc23eae4d4642be5ddbe3eb4;p=postgresql Fix unstable regression test result. Whoops, missed that same test was made for json as well as jsonb. --- diff --git a/src/test/regress/expected/json.out b/src/test/regress/expected/json.out index 47b2b6e6a5..a229472d54 100644 --- a/src/test/regress/expected/json.out +++ b/src/test/regress/expected/json.out @@ -1689,7 +1689,7 @@ select to_tsvector('simple', '{"a": "aaa bbb ddd ccc", "b": ["eee fff ggg"], "c" (1 row) -- json to tsvector with stop words -select to_tsvector('{"a": "aaa in bbb ddd ccc", "b": ["the eee fff ggg"], "c": {"d": "hhh. iii"}}'::json); +select to_tsvector('english', '{"a": "aaa in bbb ddd ccc", "b": ["the eee fff ggg"], "c": {"d": "hhh. iii"}}'::json); to_tsvector ---------------------------------------------------------------------------- 'aaa':1 'bbb':3 'ccc':5 'ddd':4 'eee':8 'fff':9 'ggg':10 'hhh':12 'iii':13 diff --git a/src/test/regress/sql/json.sql b/src/test/regress/sql/json.sql index 1acf4decd6..0973737289 100644 --- a/src/test/regress/sql/json.sql +++ b/src/test/regress/sql/json.sql @@ -559,7 +559,7 @@ select to_tsvector('{"a": "aaa bbb ddd ccc", "b": ["eee fff ggg"], "c": {"d": "h select to_tsvector('simple', '{"a": "aaa bbb ddd ccc", "b": ["eee fff ggg"], "c": {"d": "hhh iii"}}'::json); -- json to tsvector with stop words -select to_tsvector('{"a": "aaa in bbb ddd ccc", "b": ["the eee fff ggg"], "c": {"d": "hhh. iii"}}'::json); +select to_tsvector('english', '{"a": "aaa in bbb ddd ccc", "b": ["the eee fff ggg"], "c": {"d": "hhh. iii"}}'::json); -- ts_vector corner cases select to_tsvector('""'::json);