[COMMITTERS] pgsql: Fix intermittent crash in DROP INDEX CONCURRENTLY.

2012-12-05 Thread Tom Lane
Fix intermittent crash in DROP INDEX CONCURRENTLY. When deleteOneObject closes and reopens the pg_depend relation, we must see to it that the relcache pointer held by the calling function (typically performMultipleDeletions) is updated. Usually the relcache entry is retained so that the pointer v

[COMMITTERS] pgsql: Fix intermittent crash in DROP INDEX CONCURRENTLY.

2012-12-05 Thread Tom Lane
Fix intermittent crash in DROP INDEX CONCURRENTLY. When deleteOneObject closes and reopens the pg_depend relation, we must see to it that the relcache pointer held by the calling function (typically performMultipleDeletions) is updated. Usually the relcache entry is retained so that the pointer v

[COMMITTERS] pgsql: Update comment at top of index_create

2012-12-05 Thread Alvaro Herrera
Update comment at top of index_create I neglected to update it in commit f4c4335. Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5e15cdb2ae7da5c1f9d8ca2ad970b98ca1cc4947 Modified Files -- src/backend/catalog/index.c |1 + 1 files cha

[COMMITTERS] pgsql: Ensure recovery pause feature doesn't pause unless users can con

2012-12-05 Thread Tom Lane
Ensure recovery pause feature doesn't pause unless users can connect. If we're not in hot standby mode, then there's no way for users to connect to reset the recoveryPause flag, so we shouldn't pause. The code was aware of this but the test to see if pausing was safe was seriously inadequate: it

[COMMITTERS] pgsql: Ensure recovery pause feature doesn't pause unless users can con

2012-12-05 Thread Tom Lane
Ensure recovery pause feature doesn't pause unless users can connect. If we're not in hot standby mode, then there's no way for users to connect to reset the recoveryPause flag, so we shouldn't pause. The code was aware of this but the test to see if pausing was safe was seriously inadequate: it

[COMMITTERS] pgsql: Ensure recovery pause feature doesn't pause unless users can con

2012-12-05 Thread Tom Lane
Ensure recovery pause feature doesn't pause unless users can connect. If we're not in hot standby mode, then there's no way for users to connect to reset the recoveryPause flag, so we shouldn't pause. The code was aware of this but the test to see if pausing was safe was seriously inadequate: it

[COMMITTERS] pgsql: Oops, meant to change the comment in writeTimeLineHistory.

2012-12-05 Thread Heikki Linnakangas
Oops, meant to change the comment in writeTimeLineHistory. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/d67b06fe3e2811f8c2270b8b2b266bf1480152bc Modified Files -- src/backend/access/transam/timeline.c |2 +- src/backend/access/transam/xlog.c |

[COMMITTERS] pgsql: Tag refs/tags/REL9_2_2 was created

2012-12-05 Thread pgsql
Tag refs/tags/REL9_2_2 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_1_7 was created

2012-12-05 Thread pgsql
Tag refs/tags/REL9_1_7 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL8_4_15 was created

2012-12-05 Thread pgsql
Tag refs/tags/REL8_4_15 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_0_11 was created

2012-12-05 Thread pgsql
Tag refs/tags/REL9_0_11 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL8_3_22 was created

2012-12-05 Thread pgsql
Tag refs/tags/REL8_3_22 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

Re: [COMMITTERS] pgsql: Must not reach consistency before XLOG_BACKUP_RECORD

2012-12-05 Thread Andres Freund
On 2012-12-05 11:04:39 -0500, Tom Lane wrote: > Simon Riggs writes: > > Must not reach consistency before XLOG_BACKUP_RECORD > > > When waiting for an XLOG_BACKUP_RECORD the minRecoveryPoint > > will be incorrect, so we must not declare recovery as consistent > > before we have seen the record. Ma

Re: [COMMITTERS] pgsql: Must not reach consistency before XLOG_BACKUP_RECORD

2012-12-05 Thread Tom Lane
Simon Riggs writes: > Must not reach consistency before XLOG_BACKUP_RECORD > When waiting for an XLOG_BACKUP_RECORD the minRecoveryPoint > will be incorrect, so we must not declare recovery as consistent > before we have seen the record. Major bug allowing recovery to end > too early in some case

[COMMITTERS] pgsql: Must not reach consistency before XLOG_BACKUP_RECORD

2012-12-05 Thread Simon Riggs
Must not reach consistency before XLOG_BACKUP_RECORD When waiting for an XLOG_BACKUP_RECORD the minRecoveryPoint will be incorrect, so we must not declare recovery as consistent before we have seen the record. Major bug allowing recovery to end too early in some cases, allowing people to see incons

[COMMITTERS] pgsql: Must not reach consistency before XLOG_BACKUP_RECORD

2012-12-05 Thread Simon Riggs
Must not reach consistency before XLOG_BACKUP_RECORD When waiting for an XLOG_BACKUP_RECORD the minRecoveryPoint will be incorrect, so we must not declare recovery as consistent before we have seen the record. Major bug allowing recovery to end too early in some cases, allowing people to see incons

[COMMITTERS] pgsql: Add pgstatginindex() function to get the size of the GIN pending

2012-12-05 Thread Heikki Linnakangas
Add pgstatginindex() function to get the size of the GIN pending list. Fujii Masao, reviewed by Kyotaro Horiguchi. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/357cbaaeae5bc1f385828be97345e7ea24235f92 Modified Files -- contrib/pgstattuple/Makefile