We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent683abc7 commitf7f210bCopy full SHA for f7f210b
src/backend/access/transam/multixact.c
@@ -1980,14 +1980,14 @@ SetMultiXactIdLimit(MultiXactId oldest_datminmxid, Oid oldest_datoid)
1980
1981
if (oldest_datname)
1982
ereport(WARNING,
1983
-(errmsg("database \"%s\" must be vacuumed before %u moreMultiXactId are used",
+(errmsg("database \"%s\" must be vacuumed before %u moreMultiXactIds are used",
1984
oldest_datname,
1985
multiWrapLimit-curMulti),
1986
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n"
1987
"You might also need to commit or roll back old prepared transactions.")));
1988
else
1989
1990
-(errmsg("database with OID %u must be vacuumed before %u moreMultiXactId are used",
+(errmsg("database with OID %u must be vacuumed before %u moreMultiXactIds are used",
1991
oldest_datoid,
1992
1993