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