From: Noah Misch Date: Fri, 12 Nov 2021 01:10:18 +0000 (-0800) Subject: Report any XLogReadRecord() error in XlogReadTwoPhaseData(). X-Git-Tag: REL_14_2~137 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=675cd765c2a5d5f2f020a5bf647086c178612abf;p=thirdparty%2Fpostgresql.git Report any XLogReadRecord() error in XlogReadTwoPhaseData(). Buildfarm members kittiwake and tadarida have witnessed errors at this site. The site discarded key facts. Back-patch to v10 (all supported versions). Reviewed by Michael Paquier and Tom Lane. Discussion: https://postgr.es/m/20211107013157.GB790288@rfd.leadboat.com --- diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index bc518c88672..4aa382839e9 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -1409,10 +1409,18 @@ XlogReadTwoPhaseData(XLogRecPtr lsn, char **buf, int *len) ThisTimeLineID = save_currtli; if (record == NULL) - ereport(ERROR, - (errcode_for_file_access(), - errmsg("could not read two-phase state from WAL at %X/%X", - LSN_FORMAT_ARGS(lsn)))); + { + if (errormsg) + ereport(ERROR, + (errcode_for_file_access(), + errmsg("could not read two-phase state from WAL at %X/%X: %s", + LSN_FORMAT_ARGS(lsn), errormsg))); + else + ereport(ERROR, + (errcode_for_file_access(), + errmsg("could not read two-phase state from WAL at %X/%X", + LSN_FORMAT_ARGS(lsn)))); + } if (XLogRecGetRmid(xlogreader) != RM_XACT_ID || (XLogRecGetInfo(xlogreader) & XLOG_XACT_OPMASK) != XLOG_XACT_PREPARE)