mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Revert "Make vacuum a bit more verbose to debug BF failure."
This reverts commit49967da65a
. Enough time has passed that we can be confident that07f32fcd23
resolved the issue. Therefore we can remove the temporary debugging aids. Author: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/E1k7tGP-0005V0-5k@gemulon.postgresql.org
This commit is contained in:
@ -6048,16 +6048,7 @@ FreezeMultiXactId(MultiXactId multi, uint16 t_infomask,
|
||||
TransactionIdIsInProgress(members[i].xid))
|
||||
{
|
||||
/* running locker cannot possibly be older than the cutoff */
|
||||
if (TransactionIdPrecedes(members[i].xid, cutoff_xid))
|
||||
{
|
||||
/* temporary on-bf debugging */
|
||||
elog(PANIC, "too old alive locker: multi: %u, member xid: %u, memb-current: %d, memb-progress: %d, cutoff: %u, cutoff-multi: %u, relfrozenxid: %u, relminmxid: %u",
|
||||
multi, members[i].xid,
|
||||
TransactionIdIsCurrentTransactionId(members[i].xid),
|
||||
TransactionIdIsInProgress(members[i].xid),
|
||||
cutoff_xid, cutoff_multi,
|
||||
relfrozenxid, relminmxid);
|
||||
}
|
||||
Assert(!TransactionIdPrecedes(members[i].xid, cutoff_xid));
|
||||
newmembers[nnewmembers++] = members[i];
|
||||
has_lockers = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user