[COMMITTERS] pgstatsinfo - pg_statsinfo: Support PostgreSQL 8.3 and various fixes.

2010-03-10 Thread User Itagaki
Log Message: --- Support PostgreSQL 8.3 and various fixes. - Fix a bug to determine csvlog filename next to parse. - Improve statsinfo.restart() to shutdown existing daemon process. - Collector checks server status before connection to avoid repeated connection failure during crash or arc

[COMMITTERS] pgbulkload - pgbulkload: Rename ON_DUPLICATE = ERROR | REMOVE_OLD |

2010-03-10 Thread User Itagaki
Log Message: --- Rename ON_DUPLICATE = ERROR | REMOVE_OLD | REMOVE_NEW to ON_DUPLICATE_KEEP = NEW | OLD. Change the default values for PARSE_ERRORS and DUPLICATE_ERRORS to 0. Adjust regression tests to be passed on UTF8 databases. (SQL_ASCII expected previously) Modified Files: -

[COMMITTERS] pgsql: Fix incorrect comment about permissions checking being done in

2010-03-10 Thread Robert Haas
Log Message: --- Fix incorrect comment about permissions checking being done in utility.c. Noted while reviewing a patch from KaiGai Kohei. Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.327 -> r1.328) (http://anoncvs.postgresql.org/cvsweb.

[COMMITTERS] pgsql: Update comment for pg_constraint.conindid to mention that it's

2010-03-10 Thread Tom Lane
Log Message: --- Update comment for pg_constraint.conindid to mention that it's used for exclusion constraints. Not sure how we managed to update the comment for it in catalogs.sgml but miss this one. Modified Files: -- pgsql/src/include/catalog: pg_constraint.h (r

[COMMITTERS] pgsql: Simplify a couple of pg_dump and psql \d queries about index

2010-03-10 Thread Tom Lane
Log Message: --- Simplify a couple of pg_dump and psql \d queries about index constraints by joining to pg_constraint.conindid, instead of the former technique of joining indirectly through pg_depend. This is much more straightforward and probably faster as well. I had originally desisted