diff options
author | Jeff Davis <jdavis@postgresql.org> | 2022-04-08 00:02:10 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2022-04-08 00:26:44 -0700 |
commit | 2258e76f90bf0254504644df0515cddc0c0a87f9 (patch) | |
tree | 3b88e93614a4e065aa4cbf2d6ff3be25052d0822 /src/include/access/xlogutils.h | |
parent | 708007dced2b05ed9b4f1963e91b2eb67413bd19 (diff) | |
download | postgresql-2258e76f90bf0254504644df0515cddc0c0a87f9.tar.gz postgresql-2258e76f90bf0254504644df0515cddc0c0a87f9.zip |
Add contrib/pg_walinspect.
Provides similar functionality to pg_waldump, but from a SQL interface
rather than a separate utility.
Author: Bharath Rupireddy
Reviewed-by: Greg Stark, Kyotaro Horiguchi, Andres Freund, Ashutosh Sharma, Nitin Jadhav, RKN Sai Krishna
Discussion: https://postgr.es/m/CALj2ACUGUYXsEQdKhEdsBzhGEyF3xggvLdD8C0VT72TNEfOiog%40mail.gmail.com
Diffstat (limited to 'src/include/access/xlogutils.h')
-rw-r--r-- | src/include/access/xlogutils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/access/xlogutils.h b/src/include/access/xlogutils.h index ff40f96e423..3746e31e40f 100644 --- a/src/include/access/xlogutils.h +++ b/src/include/access/xlogutils.h @@ -93,6 +93,10 @@ extern void FreeFakeRelcacheEntry(Relation fakerel); extern int read_local_xlog_page(XLogReaderState *state, XLogRecPtr targetPagePtr, int reqLen, XLogRecPtr targetRecPtr, char *cur_page); +extern int read_local_xlog_page_no_wait(XLogReaderState *state, + XLogRecPtr targetPagePtr, int reqLen, + XLogRecPtr targetRecPtr, + char *cur_page); extern void wal_segment_open(XLogReaderState *state, XLogSegNo nextSegNo, TimeLineID *tli_p); |