Make hstore regression tests independent of standard_conforming_strings.

Per buildfarm.
pull/1/head
Robert Haas 15 years ago
parent 5ffaa9005c
commit 0e22e08fe5
  1. 8
      contrib/hstore/expected/hstore.out
  2. 8
      contrib/hstore/sql/hstore.sql

@ -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…
Cancel
Save