[COMMITTERS] pgsql-server: Fix typo in an entry in the 7.4 release notes.

2004-05-22 Thread Neil Conway
Log Message: --- Fix typo in an entry in the 7.4 release notes. Modified Files: -- pgsql-server/doc/src/sgml: release.sgml (r1.259 -> r1.260) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/doc/src/sgml/release.sgml.diff?r1=1.259&r2=1.260) ---

[COMMITTERS] pgsql-server: Fix a few more minor errors in the 7.4 release notes.

2004-05-22 Thread Neil Conway
Log Message: --- Fix a few more minor errors in the 7.4 release notes. Modified Files: -- pgsql-server/doc/src/sgml: release.sgml (r1.260 -> r1.261) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/doc/src/sgml/release.sgml.diff?r1=1.260&r2=1.261)

[COMMITTERS] pgsql-server: Handle impending sinval queue overflow by means of a

2004-05-22 Thread Tom Lane
Log Message: --- Handle impending sinval queue overflow by means of a separate signal (SIGUSR1, which we have not been using recently) instead of piggybacking on SIGUSR2-driven NOTIFY processing. This has several good results: the processing needed to drain the sinval queue is a lot less t

[COMMITTERS] pgsql-server: Fix to install correctly in vpath build case.

2004-05-22 Thread Tom Lane
Log Message: --- Fix to install correctly in vpath build case. Modified Files: -- pgsql-server/src/timezone: Makefile (r1.10 -> r1.11) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/timezone/Makefile.diff?r1=1.10&r2=1.11)

[COMMITTERS] pgsql-server: Reduce pg_listener lock taken by NOTIFY et al from

2004-05-22 Thread Tom Lane
Log Message: --- Reduce pg_listener lock taken by NOTIFY et al from AccessExclusiveLock to ExclusiveLock. This still serializes the operations of this module, but doesn't conflict with concurrent ANALYZE operations. Per trouble report from Philip Warner a few weeks ago. Tags: REL7_4

[COMMITTERS] pgsql-server: Reduce pg_listener lock taken by NOTIFY et al from

2004-05-22 Thread Tom Lane
Log Message: --- Reduce pg_listener lock taken by NOTIFY et al from AccessExclusiveLock to ExclusiveLock. This still serializes the operations of this module, but doesn't conflict with concurrent ANALYZE operations. Per trouble report from Philip Warner a few weeks ago. Modified Files: -

[COMMITTERS] pgsql-server: For multi-table ANALYZE, use per-table transactions when

2004-05-22 Thread Tom Lane
Log Message: --- For multi-table ANALYZE, use per-table transactions when possible (ie, when not inside a transaction block), so that we can avoid holding locks longer than necessary. Per trouble report from Philip Warner. Modified Files: -- pgsql-server/src/backend/access