aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2013-03-26 17:52:00 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2013-03-26 17:52:00 -0400
commitf7f210b5c4c9c76e87fffc5abef7dea752d1ac9a (patch)
treeb421d7d23c4bf034cd4b01754481ffb9439f9d13
parent683abc73dff549e94555d4020dae8d02f32ed78b (diff)
downloadpostgresql-f7f210b5c4c9c76e87fffc5abef7dea752d1ac9a.tar.gz
postgresql-f7f210b5c4c9c76e87fffc5abef7dea752d1ac9a.zip
Fix grammatical errors in some new message strings.
Daniele Varrazzo
-rw-r--r--src/backend/access/transam/multixact.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c
index 9f804f75990..69e85463996 100644
--- a/src/backend/access/transam/multixact.c
+++ b/src/backend/access/transam/multixact.c
@@ -1980,14 +1980,14 @@ SetMultiXactIdLimit(MultiXactId oldest_datminmxid, Oid oldest_datoid)
if (oldest_datname)
ereport(WARNING,
- (errmsg("database \"%s\" must be vacuumed before %u more MultiXactId are used",
+ (errmsg("database \"%s\" must be vacuumed before %u more MultiXactIds are used",
oldest_datname,
multiWrapLimit - curMulti),
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n"
"You might also need to commit or roll back old prepared transactions.")));
else
ereport(WARNING,
- (errmsg("database with OID %u must be vacuumed before %u more MultiXactId are used",
+ (errmsg("database with OID %u must be vacuumed before %u more MultiXactIds are used",
oldest_datoid,
multiWrapLimit - curMulti),
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n"