summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Conway2005-04-07 03:29:01 +0000
committerNeil Conway2005-04-07 03:29:01 +0000
commit71d0b494dd74931212a8809b4e76eba02ecfb9b7 (patch)
treeba8d29c3ce8742a28ad64f07a97c4118d37d2475
parentf5ab0a14ea83eb6c27196b0c5d600b7f8b8b75fc (diff)
Fix minor breakage to regression tests induced in previous commit -- I had
updated the expected/ output, not the output/ output. Apologies.
-rw-r--r--src/test/regress/output/misc.source2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/regress/output/misc.source b/src/test/regress/output/misc.source
index 0c1ed5deaf4..6bab1673d03 100644
--- a/src/test/regress/output/misc.source
+++ b/src/test/regress/output/misc.source
@@ -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;