]> granicus.if.org Git - postgresql/commitdiff
Fix unstable regression test result.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 1 Apr 2017 00:29:30 +0000 (20:29 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 1 Apr 2017 00:29:30 +0000 (20:29 -0400)
Whoops, missed that same test was made for json as well as jsonb.

src/test/regress/expected/json.out
src/test/regress/sql/json.sql

index 47b2b6e6a589cb3ef148b56856483514b04b1fca..a229472d54f1010ef06153fae71d14325ca10c7e 100644 (file)
@@ -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
index 1acf4decd68058d20c8d6f7bee767dc5a18a977e..0973737289bfccc3aef87237f3cc9c92dd65447a 100644 (file)
@@ -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);