File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/backend/access/transam Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1020,14 +1020,14 @@ GetNewMultiXactId(int nmembers, MultiXactOffset *offset)
10201020 if (oldest_datname )
10211021 ereport (ERROR ,
10221022 (errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1023- errmsg ("database is not accepting commands that generate new MultiXactIds to avoid wraparound data loss in database \"%s\"" ,
1023+ errmsg ("database is not accepting commands that assign new MultiXactIds to avoid wraparound data loss in database \"%s\"" ,
10241024 oldest_datname ),
10251025 errhint ("Execute a database-wide VACUUM in that database.\n"
10261026 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots." )));
10271027 else
10281028 ereport (ERROR ,
10291029 (errcode (ERRCODE_PROGRAM_LIMIT_EXCEEDED ),
1030- errmsg ("database is not accepting commands that generate new MultiXactIds to avoid wraparound data loss in database with OID %u" ,
1030+ errmsg ("database is not accepting commands that assign new MultiXactIds to avoid wraparound data loss in database with OID %u" ,
10311031 oldest_datoid ),
10321032 errhint ("Execute a database-wide VACUUM in that database.\n"
10331033 "You might also need to commit or roll back old prepared transactions, or drop stale replication slots." )));
You can’t perform that action at this time.
0 commit comments