Fix two bugs in setting the vm bit of empty pages.

Heikki Linnakangas <heikki.linnakangas@iki.fi>

Commit: f90d7426ed3605ab925910a387783163763833fa
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: 2013-10-23T11:25:43Z
Releases: 9.3.2
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).

Files

PathChange+/−
src/backend/commands/vacuumlazy.c modified +6 −1