]> granicus.if.org Git - postgresql/commitdiff
Fix minor breakage to regression tests induced in previous commit -- I had
authorNeil Conway <neilc@samurai.com>
Thu, 7 Apr 2005 03:29:01 +0000 (03:29 +0000)
committerNeil Conway <neilc@samurai.com>
Thu, 7 Apr 2005 03:29:01 +0000 (03:29 +0000)
updated the expected/ output, not the output/ output. Apologies.

src/test/regress/output/misc.source

index 0c1ed5deaf4d583b4ed2633b418a2f204556eb5b..6bab1673d0340d1f77ed9538a4ab942242ced5e8 100644 (file)
@@ -24,10 +24,12 @@ UPDATE onek
 -- 
 UPDATE tmp
    SET stringu1 = reverse_name(onek.stringu1)
+   FROM onek
    WHERE onek.stringu1 = 'JBAAAA' and
          onek.stringu1 = tmp.stringu1;
 UPDATE tmp
    SET stringu1 = reverse_name(onek2.stringu1)
+   FROM onek2
    WHERE onek2.stringu1 = 'JCAAAA' and
          onek2.stringu1 = tmp.stringu1;
 DROP TABLE tmp;