mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 09:27:04 +08: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:
@ -4587,7 +4587,7 @@ wait_for_local_flush(RetainDeadTuplesData *rdt_data)
|
||||
MyLogicalRepWorker->oldest_nonremovable_xid = rdt_data->candidate_xid;
|
||||
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),
|
||||
rdt_data->candidate_xid);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user