pgsql: Force a checkpoint in CREATE DATABASE before starting to copy the

Поиск
Список
Период
Сортировка
От heikki@postgresql.org (Heikki Linnakangas)
Тема pgsql: Force a checkpoint in CREATE DATABASE before starting to copy the
Дата
Msg-id 20081009103406.D69C57545A4@cvs.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Force a checkpoint in CREATE DATABASE before starting to copy the files,
to process any pending unlinks for the source database.

Before, if you dropped a relation in the template database just before
CREATE DATABASE, and a checkpoint happened during copydir(), the checkpoint
might delete a file that we're just about to copy, causing lstat() in
copydir() to fail with ENOENT.

Backpatch to 8.3, where the pending unlinks were introduced.

Per report by Matthew Wakeling and analysis by Tom Lane.

Modified Files:
--------------
    pgsql/src/backend/commands:
        dbcommands.c (r1.213 -> r1.214)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/dbcommands.c?r1=1.213&r2=1.214)

В списке pgsql-committers по дате отправления:

Предыдущее
От: okbob@pgfoundry.org (User Okbob)
Дата:
Сообщение: orafce - orafce: Change message buffer size and item size from size_t to
Следующее
От: heikki@postgresql.org (Heikki Linnakangas)
Дата:
Сообщение: pgsql: Force a checkpoint in CREATE DATABASE before starting to copy the