Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f7f210b

Browse files
committed
Fix grammatical errors in some new message strings.
Daniele Varrazzo
1 parent 683abc7 commit f7f210b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/transam/multixact.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1980,14 +1980,14 @@ SetMultiXactIdLimit(MultiXactId oldest_datminmxid, Oid oldest_datoid)
19801980

19811981
if (oldest_datname)
19821982
ereport(WARNING,
1983-
(errmsg("database \"%s\" must be vacuumed before %u more MultiXactId are used",
1983+
(errmsg("database \"%s\" must be vacuumed before %u more MultiXactIds are used",
19841984
oldest_datname,
19851985
multiWrapLimit - curMulti),
19861986
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n"
19871987
"You might also need to commit or roll back old prepared transactions.")));
19881988
else
19891989
ereport(WARNING,
1990-
(errmsg("database with OID %u must be vacuumed before %u more MultiXactId are used",
1990+
(errmsg("database with OID %u must be vacuumed before %u more MultiXactIds are used",
19911991
oldest_datoid,
19921992
multiWrapLimit - curMulti),
19931993
errhint("To avoid a database shutdown, execute a database-wide VACUUM in that database.\n"

0 commit comments

Comments
 (0)