OSDN Git Service

Make hstore regression tests independent of standard_conforming_strings.
authorRobert Haas <rhaas@postgresql.org>
Tue, 20 Jul 2010 01:22:52 +0000 (01:22 +0000)
committerRobert Haas <rhaas@postgresql.org>
Tue, 20 Jul 2010 01:22:52 +0000 (01:22 +0000)
Per buildfarm.

contrib/hstore/expected/hstore.out
contrib/hstore/sql/hstore.sql

index e78264d..0ed1092 100644 (file)
@@ -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"
index 8fefcbb..76f7422 100644 (file)
@@ -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;