[COMMITTERS] pgsql: Fix RecursiveCopy.pm to cope with disappearing files.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема [COMMITTERS] pgsql: Fix RecursiveCopy.pm to cope with disappearing files.
Дата
Msg-id E1draXj-0007Zh-TT@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix RecursiveCopy.pm to cope with disappearing files.

When copying from an active database tree, it's possible for files to be
deleted after we see them in a readdir() scan but before we can open them.
(Once we've got a file open, we don't expect any further errors from it
getting unlinked, though.)  Tweak RecursiveCopy so it can cope with this
case, so as to avoid irreproducible test failures.

Back-patch to 9.6 where this code was added.  In v10 and HEAD, also
remove unused "use RecursiveCopy" in one recovery test script.

Michael Paquier and Tom Lane

Discussion: https://postgr.es/m/24621.1504924323@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e183530550dc1b73d24fb5ae7d84e85286e88ffb

Modified Files
--------------
src/test/perl/RecursiveCopy.pm                     | 64 +++++++++++++++-------
.../recovery/t/010_logical_decoding_timelines.pl   |  1 -
2 files changed, 45 insertions(+), 20 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Changed order of statements and added an additiona MSVC safeguar
Следующее
От: Michael Meskes
Дата:
Сообщение: [COMMITTERS] pgsql: Fixed ECPG to correctly handle out-of-scope cursordeclarations