diff options
author | Noah Misch <noah@leadboat.com> | 2020-03-21 09:38:33 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-03-21 09:38:35 -0700 |
commit | 14d2bb4941e6bdf181f274d81314415781933079 (patch) | |
tree | db1e69dcebf5fc5131b908b3abfb386a9f768bd3 /src/include/access/xloginsert.h | |
parent | a8f754aea01476641089212f9fff21a74935c370 (diff) |
Back-patch log_newpage_range().
Back-patch a subset of commit 9155580fd5fc2a0cbb23376dfca7cd21f59c2c7b
to v11, v10, 9.6, and 9.5. Include the latest repairs to this function.
Use a new XLOG_FPI_MULTI value instead of reusing XLOG_FPI. That way,
if an older server reads WAL from this function, that server will PANIC
instead of applying just one page of the record. The next commit adds a
call to this function.
Discussion: https://postgr.es/m/20200304.162919.898938381201316571.horikyota.ntt@gmail.com
Diffstat (limited to 'src/include/access/xloginsert.h')
-rw-r--r-- | src/include/access/xloginsert.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/access/xloginsert.h b/src/include/access/xloginsert.h index cc0177ef4e4..36c239658bb 100644 --- a/src/include/access/xloginsert.h +++ b/src/include/access/xloginsert.h @@ -16,6 +16,7 @@ #include "storage/block.h" #include "storage/buf.h" #include "storage/relfilenode.h" +#include "utils/relcache.h" /* * The minimum size of the WAL construction working area. If you need to @@ -55,6 +56,8 @@ extern bool XLogCheckBufferNeedsBackup(Buffer buffer); extern XLogRecPtr log_newpage(RelFileNode *rnode, ForkNumber forkNum, BlockNumber blk, char *page, bool page_std); extern XLogRecPtr log_newpage_buffer(Buffer buffer, bool page_std); +extern void log_newpage_range(Relation rel, ForkNumber forkNum, + BlockNumber startblk, BlockNumber endblk, bool page_std); extern XLogRecPtr XLogSaveBufferForHint(Buffer buffer, bool buffer_std); extern void InitXLogInsert(void); |