[COMMITTERS] pgsql: Add libpq connection option to disable SSL compression

2011-11-28 Thread Magnus Hagander
Add libpq connection option to disable SSL compression This can be used to remove the overhead of SSL compression on fast networks. Laurenz Albe Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/64aea1ebc70dc597b79e2f7f4451472510a1e9bf Modified Files -- d

[COMMITTERS] pgsql: Backpatch "Use the preferred version of xsubpp."

2011-11-28 Thread Andrew Dunstan
Backpatch "Use the preferred version of xsubpp." As requested this is backpatched all the way to release 8.2. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/pg/commitdiff/62fa8562ecf3dc42b04997598d6b04b9ced28ed1 Modified Files -- src/pl/plperl/GNUmakefile |

[COMMITTERS] pgsql: Backpatch "Use the preferred version of xsubpp."

2011-11-28 Thread Andrew Dunstan
Backpatch "Use the preferred version of xsubpp." As requested this is backpatched all the way to release 8.2. Branch -- REL8_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/31e9743f1ab9dfc9c3c515b61f27030c93c776be Modified Files -- src/pl/plperl/GNUmakefile |

[COMMITTERS] pgsql: Backpatch "Use the preferred version of xsubpp."

2011-11-28 Thread Andrew Dunstan
Backpatch "Use the preferred version of xsubpp." As requested this is backpatched all the way to release 8.2. Branch -- REL8_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/322fc5cf569da335e46e9b8ff1b0f5c9e1847d94 Modified Files -- src/pl/plperl/GNUmakefile |

[COMMITTERS] pgsql: Backpatch "Use the preferred version of xsubpp."

2011-11-28 Thread Andrew Dunstan
Backpatch "Use the preferred version of xsubpp." As requested this is backpatched all the way to release 8.2. Branch -- REL8_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/e53724fd5e8a524dda770995bacb5e77575d5b90 Modified Files -- src/pl/plperl/GNUmakefile |

Re: [COMMITTERS] pgsql: Make pg_dumpall build with the right object files under MSVC.

2011-11-28 Thread Bruce Momjian
Andrew Dunstan wrote: > Make pg_dumpall build with the right object files under MSVC. > > This fixes a longstanding but up to now benign bug in the way pg_dumpall > was built. The bug was exposed by recent code adjustments. The Makefile > does not use $(OBJS) to build pg_dumpall, so this fix remov

Re: [COMMITTERS] pgsql: Make pg_dumpall build with the right object files under MSVC.

2011-11-28 Thread Andrew Dunstan
On 11/28/2011 11:33 AM, Bruce Momjian wrote: Andrew Dunstan wrote: Make pg_dumpall build with the right object files under MSVC. This fixes a longstanding but up to now benign bug in the way pg_dumpall was built. The bug was exposed by recent code adjustments. The Makefile does not use $(OBJS

Re: [COMMITTERS] pgsql: Make pg_dumpall build with the right object files under MSVC.

2011-11-28 Thread Alvaro Herrera
Excerpts from Andrew Dunstan's message of lun nov 28 14:40:24 -0300 2011: > > On 11/28/2011 11:33 AM, Bruce Momjian wrote: > > In summary, for those watching, pg_dump and pg_restore used to share > > OBJS, and with my new patch, dumpmem.c is now shared by those and > > pg_dumpall. Seems the MSV

[COMMITTERS] pgsql: Fix some bogosities in pg_dump's foreign-table support.

2011-11-28 Thread Tom Lane
Fix some bogosities in pg_dump's foreign-table support. The server name for a foreign table was not quoted at need, as per report from Ronan Dunklau. Also, queries related to FDW options were inadequately schema-qualified in places where the search path isn't just pg_catalog, and were inconsisten

[COMMITTERS] pgsql: Fix some bogosities in pg_dump's foreign-table support.

2011-11-28 Thread Tom Lane
Fix some bogosities in pg_dump's foreign-table support. The server name for a foreign table was not quoted at need, as per report from Ronan Dunklau. Also, queries related to FDW options were inadequately schema-qualified in places where the search path isn't just pg_catalog, and were inconsisten

[COMMITTERS] pgsql: Remove erroneous claim about use of pg_locks.objid for advisory

2011-11-28 Thread Tom Lane
Remove erroneous claim about use of pg_locks.objid for advisory locks. The correct information appears in the text, so just remove the statement in the table, where it did not fit nicely anyway. (Curiously, the correct info has been there much longer than the erroneous table entry.) Resolves prob

[COMMITTERS] pgsql: Remove erroneous claim about use of pg_locks.objid for advisory

2011-11-28 Thread Tom Lane
Remove erroneous claim about use of pg_locks.objid for advisory locks. The correct information appears in the text, so just remove the statement in the table, where it did not fit nicely anyway. (Curiously, the correct info has been there much longer than the erroneous table entry.) Resolves prob

[COMMITTERS] pgsql: Remove erroneous claim about use of pg_locks.objid for advisory

2011-11-28 Thread Tom Lane
Remove erroneous claim about use of pg_locks.objid for advisory locks. The correct information appears in the text, so just remove the statement in the table, where it did not fit nicely anyway. (Curiously, the correct info has been there much longer than the erroneous table entry.) Resolves prob

[COMMITTERS] pgsql: Remove erroneous claim about use of pg_locks.objid for advisory

2011-11-28 Thread Tom Lane
Remove erroneous claim about use of pg_locks.objid for advisory locks. The correct information appears in the text, so just remove the statement in the table, where it did not fit nicely anyway. (Curiously, the correct info has been there much longer than the erroneous table entry.) Resolves prob

[COMMITTERS] stackbuilder - wizard: Don't try to open the registry file in read/write

2011-11-28 Thread Dave Page
Log Message: --- Don't try to open the registry file in read/write mode. Modified Files: -- wizard: App.cpp (r1.40 -> r1.41) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/App.cpp?r1=1.40&r2=1.41) IntroductionPage.cpp (r1.27 -> r1.

[COMMITTERS] stackbuilder - wizard: Don't try to use a download counter unless the

2011-11-28 Thread Dave Page
Log Message: --- Don't try to use a download counter unless the user has specified one on the command line. This is because we just rolled out the new postgresql.org web and ftp infrastructures, which handle their own logging. Modified Files: -- wizard: App.cpp (r1

[COMMITTERS] pgsql: Convert eval_const_expressions's long series of IsA tests into a

2011-11-28 Thread Tom Lane
Convert eval_const_expressions's long series of IsA tests into a switch. This function has now grown enough cases that a switch seems appropriate. This results in a measurable speed improvement on some platforms, and should certainly not hurt. The code's in need of a pgindent run now, though. An

Re: [COMMITTERS] pgsql: Make pg_dumpall build with the right object files under MSVC.

2011-11-28 Thread Bruce Momjian
Alvaro Herrera wrote: > > Excerpts from Andrew Dunstan's message of lun nov 28 14:40:24 -0300 2011: > > > > On 11/28/2011 11:33 AM, Bruce Momjian wrote: > > > > In summary, for those watching, pg_dump and pg_restore used to share > > > OBJS, and with my new patch, dumpmem.c is now shared by thos

[COMMITTERS] pgsql: Pgindent clauses.c, per request from Tom.

2011-11-28 Thread Bruce Momjian
Pgindent clauses.c, per request from Tom. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/269755ef725aa331fb2e49e33b23f38241d2a13b Modified Files -- src/backend/optimizer/util/clauses.c | 1813 +- 1 files changed, 924 insert

[COMMITTERS] pgsql: Disallow deletion of CurrentExtensionObject while running extens

2011-11-28 Thread Tom Lane
Disallow deletion of CurrentExtensionObject while running extension script. While the deletion in itself wouldn't break things, any further creation of objects in the script would result in dangling pg_depend entries being added by recordDependencyOnCurrentExtension(). An example from Phil Sorber

[COMMITTERS] pgsql: Disallow deletion of CurrentExtensionObject while running extens

2011-11-28 Thread Tom Lane
Disallow deletion of CurrentExtensionObject while running extension script. While the deletion in itself wouldn't break things, any further creation of objects in the script would result in dangling pg_depend entries being added by recordDependencyOnCurrentExtension(). An example from Phil Sorber

[COMMITTERS] pgsql: Make some minor formatting improvements to what pgindent did.

2011-11-28 Thread Tom Lane
Make some minor formatting improvements to what pgindent did. Moving the code two full tab stops to the right requires rethinking of cosmetic code layout choices, which pgindent isn't really able to do for us. Whitespace and comment adjustments only, no code changes. Branch -- master Detail

[COMMITTERS] pgsql: Document that perl needs to be indented during the pgindent run.

2011-11-28 Thread Bruce Momjian
Document that perl needs to be indented during the pgindent run. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/7260a0d00a5365bc3e49dc8913465428da2c38b2 Modified Files -- src/tools/msvc/README |6 -- src/tools/pgindent/README |4 2 fil

[COMMITTERS] npgsql - Npgsql2: Normalized line endings....

2011-11-28 Thread User Fxjr
Log Message: --- Normalized line endings Modified Files: -- Npgsql2/src/Npgsql: NpgsqlConnector.cs (r1.36 -> r1.37) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlConnector.cs?r1=1.36&r2=1.37) -- Sent via pgsql-committer

[COMMITTERS] npgsql - Npgsql2: Normalized line endings...

2011-11-28 Thread User Fxjr
Log Message: --- Normalized line endings... Modified Files: -- Npgsql2/src/Npgsql: NpgsqlConnectorPool.cs (r1.17 -> r1.18) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlConnectorPool.cs?r1=1.17&r2=1.18) -- Sent via pgsql-co

[COMMITTERS] pgsql: pg_dump: Fix clean rule after file renaming shuffle

2011-11-28 Thread Peter Eisentraut
pg_dump: Fix clean rule after file renaming shuffle Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cc534f8b3c8939bb1086036da0cc4bb6c8b7b964 Modified Files -- src/bin/pg_dump/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent v

[COMMITTERS] pgsql: plpython: Fix sed expression in python3 build

2011-11-28 Thread Peter Eisentraut
plpython: Fix sed expression in python3 build The old expression sed 's,$(srcdir),python3,' would normally resolve as sed 's,.,python3,', which is not really what we wanted. While it doesn't actually break anything right now, it's still wrong, so put in a bit more work to make it more robust. Br

[COMMITTERS] pgsql: python.m4: Remove useless "import string" calls

2011-11-28 Thread Peter Eisentraut
python.m4: Remove useless "import string" calls They have been unneeded since the use of the string module has been removed in a65ed83f8a6fbf35c1e563533ab8293a788b1fce. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/80ac853f0521963e870dfe484d56df8ab2de82e0 Modified

[COMMITTERS] pgsql: pg_upgrade: Disable installcheck

2011-11-28 Thread Peter Eisentraut
pg_upgrade: Disable installcheck Disabled for now because some build farm members with low resources are not prepared to handle it. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/b258ceb3ad1409af06347d385bab73352ea856a6 Modified Files -- contrib/pg_upgr