Commit f7f210b5 authored by Tom Lane's avatar Tom Lane

Fix grammatical errors in some new message strings.

Daniele Varrazzo
parent 683abc73
...@@ -1980,14 +1980,14 @@ SetMultiXactIdLimit(MultiXactId oldest_datminmxid, Oid oldest_datoid) ...@@ -1980,14 +1980,14 @@ SetMultiXactIdLimit(MultiXactId oldest_datminmxid, Oid oldest_datoid)
if (oldest_datname) if (oldest_datname)
ereport(WARNING, 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, oldest_datname,
multiWrapLimit - curMulti), multiWrapLimit - curMulti),
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n" 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."))); "You might also need to commit or roll back old prepared transactions.")));
else else
ereport(WARNING, 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, oldest_datoid,
multiWrapLimit - curMulti), multiWrapLimit - curMulti),
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n" errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment