[COMMITTERS] pgsql: Fix the tracking of min recovery point timeline.

2012-12-10 Thread Heikki Linnakangas
Fix the tracking of min recovery point timeline.

Forgot to update it at the right place. Also, consider checkpoint record
that switches to new timelne to be on the new timeline.

This fixes erroneous "requested timeline 2 does not contain minimum recovery
point" errors, pointed out by Amit Kapila while testing another patch.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/6be799664aa89a473c15af7a015f4c2b2794da2e

Modified Files
--
src/backend/access/transam/xlog.c |  113 +
1 files changed, 77 insertions(+), 36 deletions(-)


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


[COMMITTERS] pgsql: Update minimum recovery point on truncation.

2012-12-10 Thread Heikki Linnakangas
Update minimum recovery point on truncation.

If a file is truncated, we must update minRecoveryPoint. Once a file is
truncated, there's no going back; it would not be safe to stop recovery
at a point earlier than that anymore.

Per report from Kyotaro HORIGUCHI. Backpatch to 8.4. Before that,
minRecoveryPoint was not updated during recovery at all.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/7bffc9b7bf9e09ddeddc65117e49829f758e500d

Modified Files
--
src/backend/access/transam/xact.c |   43 +++-
src/backend/catalog/storage.c |   18 +++
2 files changed, 50 insertions(+), 11 deletions(-)


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


[COMMITTERS] pgsql: Update minimum recovery point on truncation.

2012-12-10 Thread Heikki Linnakangas
Update minimum recovery point on truncation.

If a file is truncated, we must update minRecoveryPoint. Once a file is
truncated, there's no going back; it would not be safe to stop recovery
at a point earlier than that anymore.

Per report from Kyotaro HORIGUCHI. Backpatch to 8.4. Before that,
minRecoveryPoint was not updated during recovery at all.

Branch
--
REL9_1_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/9ba0361f099e1d9827e9da1df95652d83ac8b973

Modified Files
--
src/backend/access/transam/xact.c |   43 +++-
src/backend/catalog/storage.c |   18 +++
2 files changed, 50 insertions(+), 11 deletions(-)


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


[COMMITTERS] pgsql: Update minimum recovery point on truncation.

2012-12-10 Thread Heikki Linnakangas
Update minimum recovery point on truncation.

If a file is truncated, we must update minRecoveryPoint. Once a file is
truncated, there's no going back; it would not be safe to stop recovery
at a point earlier than that anymore.

Per report from Kyotaro HORIGUCHI. Backpatch to 8.4. Before that,
minRecoveryPoint was not updated during recovery at all.

Branch
--
REL9_2_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/fbe285ae83628cf73a8e1ad04873a4a4b7ce56d3

Modified Files
--
src/backend/access/transam/xact.c |   43 +++-
src/backend/catalog/storage.c |   18 +++
2 files changed, 50 insertions(+), 11 deletions(-)


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


[COMMITTERS] pgsql: Update minimum recovery point on truncation.

2012-12-10 Thread Heikki Linnakangas
Update minimum recovery point on truncation.

If a file is truncated, we must update minRecoveryPoint. Once a file is
truncated, there's no going back; it would not be safe to stop recovery
at a point earlier than that anymore.

Per report from Kyotaro HORIGUCHI. Backpatch to 8.4. Before that,
minRecoveryPoint was not updated during recovery at all.

Branch
--
REL8_4_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/7e0d8d8457d922a63292c39862738969cac6c418

Modified Files
--
src/backend/access/transam/xact.c |   40 +++-
src/backend/catalog/storage.c |   18 
2 files changed, 48 insertions(+), 10 deletions(-)


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


[COMMITTERS] pgsql: Update minimum recovery point on truncation.

2012-12-10 Thread Heikki Linnakangas
Update minimum recovery point on truncation.

If a file is truncated, we must update minRecoveryPoint. Once a file is
truncated, there's no going back; it would not be safe to stop recovery
at a point earlier than that anymore.

Per report from Kyotaro HORIGUCHI. Backpatch to 8.4. Before that,
minRecoveryPoint was not updated during recovery at all.

Branch
--
REL9_0_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/172d067618cc80b515a7ae89fd6a38e29e71a720

Modified Files
--
src/backend/access/transam/xact.c |   43 +++-
src/backend/catalog/storage.c |   18 +++
2 files changed, 50 insertions(+), 11 deletions(-)


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


[COMMITTERS] pgsql: doc: Remove blastwave.org link

2012-12-10 Thread Peter Eisentraut
doc: Remove blastwave.org link

Apparently, this service has been dead since 2008.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/8e48d77cab8483fb381db9051225b46a0e4c2bc2

Modified Files
--
doc/src/sgml/installation.sgml |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)


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


[COMMITTERS] pgsql: Fix pg_upgrade -O/-o options

2012-12-10 Thread Bruce Momjian
Fix pg_upgrade -O/-o options

Fix previous commit that added synchronous_commit=off, but broke -O/-o
due to missing space in argument passing.

Backpatch to 9.2.

Branch
--
REL9_2_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/35fb1434b185c5e9ee1e232f3349713201e7cbfa

Modified Files
--
contrib/pg_upgrade/server.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


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


[COMMITTERS] pgsql: Fix pg_upgrade -O/-o options

2012-12-10 Thread Bruce Momjian
Fix pg_upgrade -O/-o options

Fix previous commit that added synchronous_commit=off, but broke -O/-o
due to missing space in argument passing.

Backpatch to 9.2.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/acdb8c225955bbf582bb050e6217f79493f031eb

Modified Files
--
contrib/pg_upgrade/server.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


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