mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 00:32:10 -04:00
Fix grammatical errors in some new message strings.
Daniele Varrazzo
This commit is contained in:
parent
683abc73df
commit
f7f210b5c4
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue