]> granicus.if.org Git - postgresql/commit
Flush unlogged table's buffers when copying or moving databases.
authorAndres Freund <andres@anarazel.de>
Mon, 20 Oct 2014 21:43:46 +0000 (23:43 +0200)
committerAndres Freund <andres@anarazel.de>
Mon, 20 Oct 2014 21:47:00 +0000 (23:47 +0200)
commitfd29810d16fb81fc4a64ba78c80330e6d95b1dc5
tree55e48030e705972d74ea8f835f09755cd00c0126
parent3609c0d1f8a96b646060acda45b4459fe7905200
Flush unlogged table's buffers when copying or moving databases.

CREATE DATABASE and ALTER DATABASE .. SET TABLESPACE copy the source
database directory on the filesystem level. To ensure the on disk
state is consistent they block out users of the affected database and
force a checkpoint to flush out all data to disk. Unfortunately, up to
now, that checkpoint didn't flush out dirty buffers from unlogged
relations.

That bug means there could be leftover dirty buffers in either the
template database, or the database in its old location. Leading to
problems when accessing relations in an inconsistent state; and to
possible problems during shutdown in the SET TABLESPACE case because
buffers belonging files that don't exist anymore are flushed.

This was reported in bug #10675 by Maxim Boguk.

Fix by Pavan Deolasee, modified somewhat by me. Reviewed by MauMau and
Fujii Masao.

Backpatch to 9.1 where unlogged tables were introduced.
src/backend/access/transam/xlog.c
src/backend/commands/dbcommands.c
src/backend/storage/buffer/bufmgr.c
src/include/access/xlog.h