Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 261cf89

Browse filesBrowse files
committed
Fix incorrect format placeholders
1 parent da324d6 commit 261cf89
Copy full SHA for 261cf89

File tree

1 file changed

+2
-2
lines changed
Filter options

1 file changed

+2
-2
lines changed

‎src/backend/storage/ipc/standby.c

Copy file name to clipboardExpand all lines: src/backend/storage/ipc/standby.c
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1347,15 +1347,15 @@ LogCurrentRunningXacts(RunningTransactions CurrRunningXacts)
13471347

13481348
if (CurrRunningXacts->subxid_overflow)
13491349
elog(trace_recovery(DEBUG2),
1350-
"snapshot of %u running transactions overflowed (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
1350+
"snapshot of %d running transactions overflowed (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
13511351
CurrRunningXacts->xcnt,
13521352
LSN_FORMAT_ARGS(recptr),
13531353
CurrRunningXacts->oldestRunningXid,
13541354
CurrRunningXacts->latestCompletedXid,
13551355
CurrRunningXacts->nextXid);
13561356
else
13571357
elog(trace_recovery(DEBUG2),
1358-
"snapshot of %u+%u running transaction ids (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
1358+
"snapshot of %d+%d running transaction ids (lsn %X/%X oldest xid %u latest complete %u next xid %u)",
13591359
CurrRunningXacts->xcnt, CurrRunningXacts->subxcnt,
13601360
LSN_FORMAT_ARGS(recptr),
13611361
CurrRunningXacts->oldestRunningXid,

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.