1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Fix minor breakage to regression tests induced in previous commit -- I had

updated the expected/ output, not the output/ output. Apologies.
This commit is contained in:
Neil Conway
2005-04-07 03:29:01 +00:00
parent f5ab0a14ea
commit 71d0b494dd

View File

@@ -24,10 +24,12 @@ UPDATE onek
-- --
UPDATE tmp UPDATE tmp
SET stringu1 = reverse_name(onek.stringu1) SET stringu1 = reverse_name(onek.stringu1)
FROM onek
WHERE onek.stringu1 = 'JBAAAA' and WHERE onek.stringu1 = 'JBAAAA' and
onek.stringu1 = tmp.stringu1; onek.stringu1 = tmp.stringu1;
UPDATE tmp UPDATE tmp
SET stringu1 = reverse_name(onek2.stringu1) SET stringu1 = reverse_name(onek2.stringu1)
FROM onek2
WHERE onek2.stringu1 = 'JCAAAA' and WHERE onek2.stringu1 = 'JCAAAA' and
onek2.stringu1 = tmp.stringu1; onek2.stringu1 = tmp.stringu1;
DROP TABLE tmp; DROP TABLE tmp;