]> granicus.if.org Git - postgresql/commit
Drop no-longer-needed buffers during ALTER DATABASE SET TABLESPACE.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 4 Nov 2014 18:24:14 +0000 (13:24 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 4 Nov 2014 18:24:14 +0000 (13:24 -0500)
commitf88300168b1c5786c4b167de17e1a0bbb252337e
treec0601a4d3b7e103fd4a7d4a1ed92327f6e2c1160
parentd233f0a52f1a0a0b3b8654fd8b93b00a9e77563e
Drop no-longer-needed buffers during ALTER DATABASE SET TABLESPACE.

The previous coding assumed that we could just let buffers for the
database's old tablespace age out of the buffer arena naturally.
The folly of that is exposed by bug #11867 from Marc Munro: the user could
later move the database back to its original tablespace, after which any
still-surviving buffers would match lookups again and appear to contain
valid data.  But they'd be missing any changes applied while the database
was in the new tablespace.

This has been broken since ALTER SET TABLESPACE was introduced, so
back-patch to all supported branches.
src/backend/commands/dbcommands.c