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 | 1449b6ced5ba375fed814fda537718c2cd95a9b4 (patch) | |
tree | b676d0c9efa2bca49d410d153f0ec95092a3ab62 /src/backend/storage/buffer/bufmgr.c | |
parent | 2a8b5d2105fdb7d34b4a5911e6a4f5a39defac3f (diff) | |
download | postgresql-1449b6ced5ba375fed814fda537718c2cd95a9b4.tar.gz postgresql-1449b6ced5ba375fed814fda537718c2cd95a9b4.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/storage/buffer/bufmgr.c')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 3ae203fde01..1c431240491 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -2639,7 +2639,7 @@ IncrBufferRefCount(Buffer buffer) * This is essentially the same as MarkBufferDirty, except: * * 1. The caller does not write WAL; so if checksums are enabled, we may need - * to write an XLOG_HINT WAL record to protect against torn pages. + * to write an XLOG_FPI WAL record to protect against torn pages. * 2. The caller might have only share-lock instead of exclusive-lock on the * buffer's content lock. * 3. This function does not guarantee that the buffer is always marked dirty |