diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-12 22:46:04 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-12 23:28:36 +0200 |
commit | a3115f0d9ec1ac93b82156535dc00b10172a4fe7 (patch) | |
tree | 675870269d119e1632d9345539efd11ac16d044e /src/backend/access/transam/xlog.c | |
parent | 17d787a3b160eefb2ff4a3fdf12ca1fedc02cbc1 (diff) | |
download | postgresql-a3115f0d9ec1ac93b82156535dc00b10172a4fe7.tar.gz postgresql-a3115f0d9ec1ac93b82156535dc00b10172a4fe7.zip |
Only WAL-log the modified portion in an UPDATE, if possible.
When a row is updated, and the new tuple version is put on the same page as
the old one, only WAL-log the part of the new tuple that's not identical to
the old. This saves significantly on the amount of WAL that needs to be
written, in the common case that most fields are not modified.
Amit Kapila, with a lot of back and forth with me, Robert Haas, and others.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index cdbe305f952..141edf43278 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -2336,6 +2336,29 @@ XLogRecPtrToBytePos(XLogRecPtr ptr) } /* + * Determine whether the buffer referenced has to be backed up. + * + * Since we don't yet have the insert lock, fullPageWrites and forcePageWrites + * could change later, so the result should be used for optimization purposes + * only. + */ +bool +XLogCheckBufferNeedsBackup(Buffer buffer) +{ + bool doPageWrites; + Page page; + + page = BufferGetPage(buffer); + + doPageWrites = XLogCtl->Insert.fullPageWrites || XLogCtl->Insert.forcePageWrites; + + if (doPageWrites && PageGetLSN(page) <= RedoRecPtr) + return true; /* buffer requires backup */ + + return false; /* buffer does not need to be backed up */ +} + +/* * Determine whether the buffer referenced by an XLogRecData item has to * be backed up, and if so fill a BkpBlock struct for it. In any case * save the buffer's LSN at *lsn. |