pgsql: Prevent the unnecessary creation of .ready file for the timeline - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: Prevent the unnecessary creation of .ready file for the timeline
Date
Msg-id E1XmM9G-0003k1-5X@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Prevent the unnecessary creation of .ready file for the timeline history file.

Previously .ready file was created for the timeline history file at the end
of an archive recovery even when WAL archiving was not enabled.
This creation is unnecessary and causes .ready file to remain infinitely.

This commit changes an archive recovery so that it creates .ready file for
the timeline history file only when WAL archiving is enabled.

Backpatch to all supported versions.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/3a3b7e316f85566771d3a28ea874e030fb12126b

Modified Files
--------------
src/backend/access/transam/timeline.c |    8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Fujii Masao
Date:
Subject: pgsql: Prevent the unnecessary creation of .ready file for the timeline
Next
From: Tom Lane
Date:
Subject: pgsql: Fix normalization of numeric values in JSONB GIN indexes.