[COMMITTERS] pgsql: Add C comment about why older compilers complain about basebacku

2011-02-04 Thread Bruce Momjian
Add C comment about why older compilers complain about basebackup.c's longjump. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=51dbc87dff5c32bfe627ec7b22c575c263de8251 Modified Files -- src/backend/replication/basebackup.c |6

[COMMITTERS] pgsql: Attempt to unbreak MSVC builds after pipe.c move.

2011-02-04 Thread Andrew Dunstan
Attempt to unbreak MSVC builds after pipe.c move. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=895ad83d702ed821f72ec7bdf1fba3db7da9d9d7 Modified Files -- src/tools/msvc/Mkvcbuild.pm |3 ++- 1 files changed, 2 insertions(+),

[COMMITTERS] pgsql: Add doc comment that installation.sgml can't use xrefs.

2011-02-04 Thread Bruce Momjian
Add doc comment that installation.sgml can't use xrefs. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=8e6ae3d79c16ad8876c34f2cff8d667ca1cffb09 Modified Files -- doc/src/sgml/installation.sgml |6 ++ 1 files changed, 6 ins

[COMMITTERS] pgsql: Clarify comment in ATRewriteTable().

2011-02-04 Thread Robert Haas
Clarify comment in ATRewriteTable(). Make sure it's clear that the prohibition on adding a column with a default when the rowtype is used elsewhere is intentional, and be a bit more explicit about the other cases where we perform this check. Branch -- master Details --- http://git.postgr

[COMMITTERS] pgsql: Move pipe.c into the backend.

2011-02-04 Thread Robert Haas
Move pipe.c into the backend. It's full of backend-specific error reporting, so it's neither possible nor necessary for this to be used from frontend code. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=b1e65c32168a2b64276a57be8c4dc5a63d33e1

[COMMITTERS] pgsql: In docs, move PQrequestCancel() deprecation mention up to match

2011-02-04 Thread Bruce Momjian
In docs, move PQrequestCancel() deprecation mention up to match other libpq doc mentions. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=b157a1d5554d6dfbd13fb605f08d51ce17532375 Modified Files -- doc/src/sgml/libpq.sgml |8 ++

[COMMITTERS] pgsql: Avoid including postgres.h in frontend compiles of src/port.

2011-02-04 Thread Robert Haas
Avoid including postgres.h in frontend compiles of src/port. This isn't kosher, and doesn't play nicely with my recent changes to the Makefile in this directory. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=8201aea90c2b171808c65836fcce4f29

[COMMITTERS] pgsql: Update ALTER TABLE docs to mention using VACUUM FULL for rewrite

2011-02-04 Thread Robert Haas
Update ALTER TABLE docs to mention using VACUUM FULL for rewrites. Remove the claim that ALTER TABLE .. SET DATA TYPE is the fastest way of rewriting a table, since it no longer is. Noah Misch and Robert Haas, based on a suggestion from Tom Lane. Branch -- master Details --- http://git.

[COMMITTERS] pgsql: Use $(MAKE) rather than make.

2011-02-04 Thread Robert Haas
Use $(MAKE) rather than make. Per buildfarm. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=6f59a5e5dd73ec2c448dd7038accf5aaba6dc04b Modified Files -- src/port/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[COMMITTERS] pgsql: Make handling of errcodes.h more consistent with other generated

2011-02-04 Thread Robert Haas
Make handling of errcodes.h more consistent with other generated headers. This fixes make distprep, and seems more robust in other ways as well. Some special handling is required because errcodes.txt is needed by some stuff in src/port, but just by src/backend as is the case for the other generate

[COMMITTERS] pgsql: Attempt to un-break the documentation build again

2011-02-04 Thread Magnus Hagander
Attempt to un-break the documentation build again Another case of in the documentation that builds INSTALL, which is not allowed. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=afb6dee1e3b93af05e35873c19c068e8ac7eb74b Modified Files --

[COMMITTERS] pgsql: Unbreak 'configure' followed immediately by 'make install'.

2011-02-04 Thread Robert Haas
Unbreak 'configure' followed immediately by 'make install'. More fallout from ddfe26f6441c24660595c5efe5fd0bd3974cdc5c. Report by Fujii Masao. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=b87811ee273360c45d92b0e7bb7e67670312c221 Modified

[COMMITTERS] pgsql: Use single quotes when there are backslashes in the filename

2011-02-04 Thread Magnus Hagander
Use single quotes when there are backslashes in the filename In the hope of unbreaking the buildfarm Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=39fbec73b0dd15df8955baad57685082ec0cef8f Modified Files -- src/tools/msvc/Soluti