Thanks to visit codestin.com Credit goes to github.com
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
}
0 commit comments