summaryrefslogtreecommitdiff
path: root/src/test/regress
diff options
context:
space:
mode:
authorTom Lane2017-09-26 19:25:57 +0000
committerTom Lane2017-09-26 19:25:57 +0000
commit14f94ac697cf6b70d939a1263d79d32a3362760b (patch)
treed69e6b379bd689c477c27e5f7431ff32a7b58770 /src/test/regress
parente5c058e2eed865114886823d010cece747914f8d (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/regress')
-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 bf5034ad685..fda1b390c09 100644
--- a/src/test/regress/expected/vacuum.out
+++ b/src/test/regress/expected/vacuum.out
@@ -81,8 +81,8 @@ SQL function "wrap_do_analyze" statement 1
VACUUM FULL vactst;
-- check behavior with duplicate column mentions
VACUUM ANALYZE vaccluster(i,i);
-ERROR: column "i" of relation "vaccluster" is specified twice
+ERROR: column "i" of relation "vaccluster" appears more than once
ANALYZE vaccluster(i,i);
-ERROR: column "i" of relation "vaccluster" is specified twice
+ERROR: column "i" of relation "vaccluster" appears more than once
DROP TABLE vaccluster;
DROP TABLE vactst;