mirror of
https://github.com/postgres/postgres.git
synced 2025-10-21 00:05:14 -04:00
Fix LSN format in debug message
Commit 2633dae2e48 standardized all existing messages to use `%X/%08X` for LSNs, but this one crept back in after the commit.
This commit is contained in:
parent
6304256e79
commit
4ec6e22b43
@ -4587,7 +4587,7 @@ wait_for_local_flush(RetainDeadTuplesData *rdt_data)
|
|||||||
MyLogicalRepWorker->oldest_nonremovable_xid = rdt_data->candidate_xid;
|
MyLogicalRepWorker->oldest_nonremovable_xid = rdt_data->candidate_xid;
|
||||||
SpinLockRelease(&MyLogicalRepWorker->relmutex);
|
SpinLockRelease(&MyLogicalRepWorker->relmutex);
|
||||||
|
|
||||||
elog(DEBUG2, "confirmed flush up to remote lsn %X/%X: new oldest_nonremovable_xid %u",
|
elog(DEBUG2, "confirmed flush up to remote lsn %X/%08X: new oldest_nonremovable_xid %u",
|
||||||
LSN_FORMAT_ARGS(rdt_data->remote_lsn),
|
LSN_FORMAT_ARGS(rdt_data->remote_lsn),
|
||||||
rdt_data->candidate_xid);
|
rdt_data->candidate_xid);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user