Content-Length: 265483 | pFad | http://github.com/postgrespro/postgres/commit/890614d2b35bd20468352043870edc7f24a7b8ec
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c69b33 commit 890614dCopy full SHA for 890614d
src/backend/access/transam/xlog.c
@@ -10847,7 +10847,11 @@ rm_redo_error_callback(void *arg)
10847
initStringInfo(&buf);
10848
xlog_outdesc(&buf, record);
10849
10850
- errcontext("xlog redo %s", buf.data);
+ /* translator: %s is an XLog record description */
10851
+ errcontext("xlog redo at %X/%X for %s",
10852
+ (uint32) (record->ReadRecPtr >> 32),
10853
+ (uint32) record->ReadRecPtr,
10854
+ buf.data);
10855
10856
pfree(buf.data);
10857
}
Fetched URL: http://github.com/postgrespro/postgres/commit/890614d2b35bd20468352043870edc7f24a7b8ec
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments