summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAmit Kapila2024-02-16 06:04:11 +0000
committerAmit Kapila2024-02-16 06:04:11 +0000
commitb987be39c3c790821e462a64151b890dd3bcdd98 (patch)
tree722f159f04084e8b8e56bfc864059f3d5a06fc5d /src
parentd9e225f275b7d27e6d2b196f5c528f9ad8a39abf (diff)
Fix the incorrect format specifier used in commit 7a424ece48.
Author: Hou Zhijie Discussion: https://postgr.es/m/[email protected] Discussion: https://postgr.es/m/OS0PR01MB5716CB015BAD807B29BC55BE944C2@OS0PR01MB5716.jpnprd01.prod.outlook.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/replication/logical/slotsync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/slotsync.c b/src/backend/replication/logical/slotsync.c
index f1542ef0e96..4cab7b71011 100644
--- a/src/backend/replication/logical/slotsync.c
+++ b/src/backend/replication/logical/slotsync.c
@@ -321,7 +321,7 @@ reserve_wal_for_local_slot(XLogRecPtr restart_lsn)
oldest_segno = XLogGetOldestSegno(cur_timeline);
}
- elog(DEBUG1, "segno: %ld of purposed restart_lsn for the synced slot, oldest_segno: %ld available",
+ elog(DEBUG1, "segno: " UINT64_FORMAT " of purposed restart_lsn for the synced slot, oldest_segno: " UINT64_FORMAT " available",
segno, oldest_segno);
/*