mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Fix grammatical errors in some new message strings.
Daniele Varrazzo
This commit is contained in:
@ -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"
|
||||||
|
Reference in New Issue
Block a user