diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-06-17 18:05:55 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-06-17 18:05:55 -0400 |
commit | 1ca4a1b5d2c633d33161792af1c70e397f879ed9 (patch) | |
tree | 9fdb444a862b7a24cb8c1efc38fbe753f5faba3c /src/backend/access/transam | |
parent | 71d05a2c7b82379bb1013a0e338906349c54ed85 (diff) | |
download | postgresql-1ca4a1b5d2c633d33161792af1c70e397f879ed9.tar.gz postgresql-1ca4a1b5d2c633d33161792af1c70e397f879ed9.zip |
Finish up XLOG_HINT renaming
Commit b8fd1a09f3 renamed XLOG_HINT to XLOG_FPI, but neglected two
places.
Backpatch to 9.3, like that commit.
Diffstat (limited to 'src/backend/access/transam')
-rw-r--r-- | src/backend/access/transam/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/README b/src/backend/access/transam/README index 07efebc5c53..4ae4715339e 100644 --- a/src/backend/access/transam/README +++ b/src/backend/access/transam/README @@ -627,7 +627,7 @@ of optimising for performance. When a hint is written we use MarkBufferDirtyHint() to mark the block dirty. If the buffer is clean and checksums are in use then -MarkBufferDirtyHint() inserts an XLOG_HINT record to ensure that we +MarkBufferDirtyHint() inserts an XLOG_FPI record to ensure that we take a full page image that includes the hint. We do this to avoid a partial page write, when we write the dirtied page. WAL is not written during recovery, so we simply skip dirtying blocks because |