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
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:
-
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.
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
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