Skip to content

Commit 2cf41cd

Browse files
committed
Make multixact error message more explicit
There are recent reports involving a very old error message that we have no history of hitting -- perhaps a recently introduced bug. Improve the error message in an attempt to improve our chances of investigating the bug. Per reports from Dimos Stamatakis and Bob Krier. Backpatch to 11. Discussion: https://postgr.es/m/CO2PR0801MB2310579F65529380A4E5EDC0E20A9@CO2PR0801MB2310.namprd08.prod.outlook.com Discussion: https://postgr.es/m/17518-04e368df5ad7f2ee@postgresql.org
1 parent 385da73 commit 2cf41cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/access/transam/multixact.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,8 @@ MultiXactIdCreateFromMembers(int nmembers, MultiXactMember *members)
799799
if (ISUPDATE_from_mxstatus(members[i].status))
800800
{
801801
if (has_update)
802-
elog(ERROR, "new multixact has more than one updating member");
802+
elog(ERROR, "new multixact has more than one updating member: %s",
803+
mxid_to_string(InvalidMultiXactId, nmembers, members));
803804
has_update = true;
804805
}
805806
}

0 commit comments

Comments
 (0)