]> granicus.if.org Git - postgresql/commit
Fix two bugs in setting the vm bit of empty pages.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 23 Oct 2013 11:03:54 +0000 (14:03 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 23 Oct 2013 11:24:37 +0000 (14:24 +0300)
commit83eb54001cb69d6ee8f0813c4e280be876823068
tree14fb288e289dcb9c2edb95b2a7272e89913cf22a
parent5f1ab4610102a73c124000788585c1af2a36284b
Fix two bugs in setting the vm bit of empty pages.

Use a critical section when setting the all-visible flag on an empty page,
and WAL-logging it. log_newpage_buffer() contains an assertion that it
must be called inside a critical section, and it's the right thing to do
when modifying a buffer anyway.

Also, the page should be marked dirty before calling log_newpage_buffer(),
per the comment in log_newpage_buffer() and src/backend/access/transam/README.

Patch by Andres Freund, in response to my report. Backpatch to 9.2, like
the patch that introduced these bugs (a6370fd9).
src/backend/commands/vacuumlazy.c