]> granicus.if.org Git - postgresql/commit
Simplify the way changes to full_page_writes are logged.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 6 Mar 2012 07:13:00 +0000 (09:13 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 6 Mar 2012 07:48:30 +0000 (09:48 +0200)
commit3b682df3260aa8e020201e4b6c5cbc31fe8ecb8e
treec8c7c76d02c1a263c1d19ed165dab6cda738e134
parent2127aac6ef56df14f2fc9e91871c6e9194c52eed
Simplify the way changes to full_page_writes are logged.

It's harmless to do full page writes even when not strictly necessary, so
when turning full_page_writes on, we can set the global flag first, and then
call XLogInsert. Likewise, when turning it off, we can write the WAL record
first, and then clear the flag. This way XLogInsert doesn't need any special
handling of the XLOG_FPW_CHANGE record type. XLogInsert is complicated
enough already, so anything we can keep away from there is a good thing.

Actually I don't think the atomicity of the shared memory flag matters,
anyway, because we only write the XLOG_FPW_CHANGE at the end of recovery,
when there are no concurrent WAL insertions going on. But might as well make
it safe, in case we allow changing full_page_writes on the fly in the
future.
src/backend/access/transam/xlog.c