Make hstore regression tests independent of standard_conforming_strings.
Per buildfarm.
This commit is contained in:
parent
5ffaa9005c
commit
0e22e08fe5
@ -207,25 +207,25 @@ select 'aa=>"NuLl"'::hstore;
|
||||
"aa"=>"NuLl"
|
||||
(1 row)
|
||||
|
||||
select '\\=a=>q=w'::hstore;
|
||||
select e'\\=a=>q=w'::hstore;
|
||||
hstore
|
||||
-------------
|
||||
"=a"=>"q=w"
|
||||
(1 row)
|
||||
|
||||
select '"=a"=>q\\=w'::hstore;
|
||||
select e'"=a"=>q\\=w'::hstore;
|
||||
hstore
|
||||
-------------
|
||||
"=a"=>"q=w"
|
||||
(1 row)
|
||||
|
||||
select '"\\"a"=>q>w'::hstore;
|
||||
select e'"\\"a"=>q>w'::hstore;
|
||||
hstore
|
||||
--------------
|
||||
"\"a"=>"q>w"
|
||||
(1 row)
|
||||
|
||||
select '\\"a=>q"w'::hstore;
|
||||
select e'\\"a=>q"w'::hstore;
|
||||
hstore
|
||||
---------------
|
||||
"\"a"=>"q\"w"
|
||||
|
@ -48,10 +48,10 @@ select 'aa=>null'::hstore;
|
||||
select 'aa=>NuLl'::hstore;
|
||||
select 'aa=>"NuLl"'::hstore;
|
||||
|
||||
select '\\=a=>q=w'::hstore;
|
||||
select '"=a"=>q\\=w'::hstore;
|
||||
select '"\\"a"=>q>w'::hstore;
|
||||
select '\\"a=>q"w'::hstore;
|
||||
select e'\\=a=>q=w'::hstore;
|
||||
select e'"=a"=>q\\=w'::hstore;
|
||||
select e'"\\"a"=>q>w'::hstore;
|
||||
select e'\\"a=>q"w'::hstore;
|
||||
|
||||
select ''::hstore;
|
||||
select ' '::hstore;
|
||||
|
Loading…
x
Reference in New Issue
Block a user