Fix variable confusion in BufferSync().
authorRobert Haas <rhaas@postgresql.org>
Fri, 6 Jan 2012 13:32:32 +0000 (08:32 -0500)
committerRobert Haas <rhaas@postgresql.org>
Fri, 6 Jan 2012 13:35:48 +0000 (08:35 -0500)
As noted by Heikki Linnakangas, the previous coding confused the "flags"
variable with the "mask" variable.  The affect of this appears to be that
unlogged buffers would get written out at every checkpoint rather than
only at shutdown time.  Although that's arguably an acceptable failure
mode, I'm back-patching this change, since it seems like a poor idea to
rely on this happening to work.

src/backend/storage/buffer/bufmgr.c

index 91cc001b503ab2e6fa496544a10d84ff61fbb337..8f68bcc66d95fe9c4300d4e0070bae9557202272 100644 (file)
@@ -1191,7 +1191,7 @@ BufferSync(int flags)
     * buffers.  But at shutdown time, we write all dirty buffers.
     */
    if (!(flags & CHECKPOINT_IS_SHUTDOWN))
-       flags |= BM_PERMANENT;
+       mask |= BM_PERMANENT;
 
    /*
     * Loop over all buffers, and mark the ones that need to be written with