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 e78264d12bc5402e27e72621dae4a7c822b2a896..0ed109203cfc60995b85d56c0cbd696df01147c7 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 8fefcbba93a623fa6a1b1087e0e80de907ec3811..76f742299ea962e096a69fafc94850bc07322d26 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;