]> granicus.if.org Git - postgresql/commit
To support external compression of archived WAL data, add a flag bit to
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 20 May 2007 21:08:19 +0000 (21:08 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 20 May 2007 21:08:19 +0000 (21:08 +0000)
commita8d539f12498de52453c8113892cbf48cc62478d
tree70871681b9aea671e88bcccfd23c5707268493e4
parent2f2717d14ff1c401a125d9cd3e2e5fcf71d8b9bb
To support external compression of archived WAL data, add a flag bit to
WAL records that shows whether it is safe to remove full-page images
(ie, whether or not an on-line backup was in progress when the WAL entry
was made).  Also make provision for an XLOG_NOOP record type that can be
used to fill in the extra space when decompressing the data for restore.

This is the portion of Koichi Suzuki's "full page writes" patch that
has to go into the core database.  The remainder of that work is two
external compression and decompression programs, which for the time being
will undergo separate development on pgfoundry.  Per discussion.

Also, twiddle the handling of BTREE_SPLIT records to ensure it'll be
possible to compress them (the previous coding caused essential info
to be omitted).  The other commonly-used record types seem OK already,
with the possible exception of GIN and GIST WAL records, which I don't
understand well enough to opine on.
src/backend/access/nbtree/nbtinsert.c
src/backend/access/nbtree/nbtxlog.c
src/backend/access/transam/xlog.c
src/include/access/xlog.h
src/include/access/xlog_internal.h
src/include/catalog/pg_control.h