summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTom Lane2017-09-26 19:25:56 +0000
committerTom Lane2017-09-26 19:25:56 +0000
commit9a50a93c7b1427f6182ed1f21ed76da5b1d6a57c (patch)
tree13f131c5d51797dc068db986d318a181e4bc59b9 /src/test
parent5ea96efaa0100e96b6b927eb1e67869143e1db4e (diff)
Improve wording of error message added in commit 714805010.
Per suggestions from Peter Eisentraut and David Johnston. Back-patch, like the previous commit. Discussion: https://postgr.es/m/E1dv9jI-0006oT-Fn@gemulon.postgresql.org
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/vacuum.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/vacuum.out b/src/test/regress/expected/vacuum.out
index a16f26da7e7..ced53ca9aaf 100644
--- a/src/test/regress/expected/vacuum.out
+++ b/src/test/regress/expected/vacuum.out
@@ -92,7 +92,7 @@ VACUUM (FULL) vacparted;
VACUUM (FREEZE) vacparted;
-- check behavior with duplicate column mentions
VACUUM ANALYZE vacparted(a,b,a);
-ERROR: column "a" of relation "vacparted" is specified twice
+ERROR: column "a" of relation "vacparted" appears more than once
ANALYZE vacparted(a,b,b);
-ERROR: column "b" of relation "vacparted" is specified twice
+ERROR: column "b" of relation "vacparted" appears more than once
DROP TABLE vacparted;