From: Tom Lane Date: Tue, 26 Mar 2013 21:52:00 +0000 (-0400) Subject: Fix grammatical errors in some new message strings. X-Git-Tag: REL9_3_BETA1~174 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7f210b5c4c9c76e87fffc5abef7dea752d1ac9a;p=thirdparty%2Fpostgresql.git Fix grammatical errors in some new message strings. Daniele Varrazzo --- 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"