Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0e22e08

Browse files
committed
Make hstore regression tests independent of standard_conforming_strings.
Per buildfarm.
1 parent 5ffaa90 commit 0e22e08

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

contrib/hstore/expected/hstore.out

+4-4
Original file line numberDiff line numberDiff line change
@@ -207,25 +207,25 @@ select 'aa=>"NuLl"'::hstore;
207207
"aa"=>"NuLl"
208208
(1 row)
209209

210-
select '\\=a=>q=w'::hstore;
210+
select e'\\=a=>q=w'::hstore;
211211
hstore
212212
-------------
213213
"=a"=>"q=w"
214214
(1 row)
215215

216-
select '"=a"=>q\\=w'::hstore;
216+
select e'"=a"=>q\\=w'::hstore;
217217
hstore
218218
-------------
219219
"=a"=>"q=w"
220220
(1 row)
221221

222-
select '"\\"a"=>q>w'::hstore;
222+
select e'"\\"a"=>q>w'::hstore;
223223
hstore
224224
--------------
225225
"\"a"=>"q>w"
226226
(1 row)
227227

228-
select '\\"a=>q"w'::hstore;
228+
select e'\\"a=>q"w'::hstore;
229229
hstore
230230
---------------
231231
"\"a"=>"q\"w"

contrib/hstore/sql/hstore.sql

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ select 'aa=>null'::hstore;
4848
select 'aa=>NuLl'::hstore;
4949
select 'aa=>"NuLl"'::hstore;
5050

51-
select '\\=a=>q=w'::hstore;
52-
select '"=a"=>q\\=w'::hstore;
53-
select '"\\"a"=>q>w'::hstore;
54-
select '\\"a=>q"w'::hstore;
51+
select e'\\=a=>q=w'::hstore;
52+
select e'"=a"=>q\\=w'::hstore;
53+
select e'"\\"a"=>q>w'::hstore;
54+
select e'\\"a=>q"w'::hstore;
5555

5656
select ''::hstore;
5757
select ' '::hstore;

0 commit comments

Comments
 (0)