1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-19 15:49:24 +03:00

Fix LSN format in debug message

Commit 2633dae2e4 standardized all existing messages to use `%X/%08X`
for LSNs, but this one crept back in after the commit.
This commit is contained in:
Heikki Linnakangas
2025-08-14 13:31:18 +03:00
parent 6304256e79
commit 4ec6e22b43

View File

@@ -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);