[COMMITTERS] pgsql: Rename max_predicate_locks_per_transaction.

2011-02-15 Thread Robert Haas
Rename max_predicate_locks_per_transaction. The new name, max_pred_locks_per_transaction, is shorter. Kevin Grittner, per discussion. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/6a77e9385eb46829ce80971bc655df9f3ef00d9a Modified Files -- doc/src/sgml

[COMMITTERS] pgsql: Assorted corrections to the patch to add WAL receiver replies.

2011-02-15 Thread Robert Haas
Assorted corrections to the patch to add WAL receiver replies. Per reports from Fujii Masao. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/883a9659faf6e49e314b264ca32ed7645068a409 Modified Files -- doc/src/sgml/config.sgml| 46 +++

[COMMITTERS] pgsql: Fix obsolete comment.

2011-02-15 Thread Tom Lane
Fix obsolete comment. Comment about MaxAllocSize was not updated when the TOAST-header macros were replaced in 8.3 "varvarlena" changes. Per report from Frederik Ramm. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/887dd041a65006deeaf514f78e4a5012dc6f7f7c Modified

[COMMITTERS] pgsql: Bring hstore's comment into line with style of other contrib com

2011-02-15 Thread Tom Lane
Bring hstore's comment into line with style of other contrib comments. All the other ones that are primarily a new datatype say "data type for ", so make this one similar. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f5fc1de501d03f6399670dd16989c5925b9191d2 Modif

[COMMITTERS] pgsql: Adjust pg_upgrade error message, array freeing, and add error ch

2011-02-15 Thread Bruce Momjian
Adjust pg_upgrade error message, array freeing, and add error check. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/fe8f15d5d2f42ad1ce6a0114c12fd3da0f14dd4a Modified Files -- contrib/pg_upgrade/check.c |2 -- contrib/pg_upgrade/info.c|

[COMMITTERS] pgsql: Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX.

2011-02-15 Thread Tom Lane
Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX. Recent releases had a check on rel->rd_refcnt in heap_drop_with_catalog, but failed to cover the possibility of pending trigger events at DROP time. (Before 8.4 we didn't even check the refcnt.) When the trigger events were eventually fir

[COMMITTERS] pgsql: Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX.

2011-02-15 Thread Tom Lane
Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX. Recent releases had a check on rel->rd_refcnt in heap_drop_with_catalog, but failed to cover the possibility of pending trigger events at DROP time. (Before 8.4 we didn't even check the refcnt.) When the trigger events were eventually fir

[COMMITTERS] pgsql: Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX.

2011-02-15 Thread Tom Lane
Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX. Recent releases had a check on rel->rd_refcnt in heap_drop_with_catalog, but failed to cover the possibility of pending trigger events at DROP time. (Before 8.4 we didn't even check the refcnt.) When the trigger events were eventually fir

[COMMITTERS] pgsql: Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX.

2011-02-15 Thread Tom Lane
Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX. Recent releases had a check on rel->rd_refcnt in heap_drop_with_catalog, but failed to cover the possibility of pending trigger events at DROP time. (Before 8.4 we didn't even check the refcnt.) When the trigger events were eventually fir

[COMMITTERS] pgsql: Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX.

2011-02-15 Thread Tom Lane
Add CheckTableNotInUse calls in DROP TABLE and DROP INDEX. Recent releases had a check on rel->rd_refcnt in heap_drop_with_catalog, but failed to cover the possibility of pending trigger events at DROP time. (Before 8.4 we didn't even check the refcnt.) When the trigger events were eventually fir

Re: [COMMITTERS] pgsql: Adjust pg_upgrade error message, array freeing, and add error ch

2011-02-15 Thread Tom Lane
Bruce Momjian writes: > Adjust pg_upgrade error message, array freeing, and add error check. The buildfarm says this patch is broken. regards, tom lane -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http

[COMMITTERS] pgsql: Make pg_upgrade compile again

2011-02-15 Thread Alvaro Herrera
Make pg_upgrade compile again Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8b2557553c6eeba97d9ebf6f048369cabd25c2b6 Modified Files -- contrib/pg_upgrade/info.c |3 +-- contrib/pg_upgrade/pg_upgrade.c |2 ++ 2 files changed, 3 insertions(+),

[COMMITTERS] pgsql: Fix corner case for binary upgrade: extension functions in pg_ca

2011-02-15 Thread Tom Lane
Fix corner case for binary upgrade: extension functions in pg_catalog. Normally, pg_dump summarily excludes functions in pg_catalog from consideration. However, some extensions may create functions in pg_catalog (adminpack already does that, and extensions for procedural languages will likely do

[COMMITTERS] pgsql: Fix bug in 9.1 pg_upgrade processing of old/new relations; adju

2011-02-15 Thread Bruce Momjian
Fix bug in 9.1 pg_upgrade processing of old/new relations; adjust debug output. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/1cc19cc358c23e3c4e04f9f38776b625d5e13965 Modified Files -- contrib/pg_upgrade/info.c |8 +--- 1 files changed, 5 insert

Re: [COMMITTERS] pgsql: Adjust pg_upgrade error message, array freeing, and add error ch

2011-02-15 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian writes: > > Adjust pg_upgrade error message, array freeing, and add error check. > > The buildfarm says this patch is broken. Thanks, fixed a few hours ago. -- Bruce Momjian http://momjian.us EnterpriseDB http://enterpris

[COMMITTERS] pgsql: Export the external file reader used in COPY FROM as APIs.

2011-02-15 Thread Itagaki Takahiro
Export the external file reader used in COPY FROM as APIs. They are expected to be used by extension modules like file_fdw. There are no user-visible changes. Itagaki Takahiro Reviewed and tested by Kevin Grittner and Noah Misch. Branch -- master Details --- http://git.postgresql.org/pg/

[COMMITTERS] pgsql: pg_ctl promote

2011-02-15 Thread Robert Haas
pg_ctl promote Fujii Masao, reviewed by Robert Haas, Stephen Frost, and Magnus Hagander. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4695da5ae97bbb58d274887fd68edbe88d03ebcb Modified Files -- doc/src/sgml/high-availability.sgml | 24 +-- doc

[COMMITTERS] pgsql: Add FOREACH IN ARRAY looping to plpgsql.

2011-02-15 Thread Tom Lane
Add FOREACH IN ARRAY looping to plpgsql. (I'm not entirely sure that we've finished bikeshedding the syntax details, but the functionality seems OK.) Pavel Stehule, reviewed by Stephen Frost and Tom Lane Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/6e02755b22ea62