[COMMITTERS] pgsql: Fix typo in release notes.

2004-11-21 Thread Neil Conway
Log Message: --- Fix typo in release notes. Michael Fuhr. Modified Files: -- pgsql/doc/src/sgml: release.sgml (r1.311 -> r1.312) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.311&r2=1.312) ---

[COMMITTERS] press - pr: Modified the pg_dump paragraph and translated the full

2004-11-21 Thread User Am
Log Message: --- Modified the pg_dump paragraph and translated the full quotations. Modified Files: -- pr/releases/8.0/ro: press_page (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.0/ro/press_page.diff?r1=1.2&r2=1.3) --

[COMMITTERS] pgsql: update us to beta5

2004-11-21 Thread PostgreSQL Daemon
Log Message: --- update us to beta5 Modified Files: -- pgsql: configure (r1.407 -> r1.408) (http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.407&r2=1.408) configure.in (r1.385 -> r1.386) (http://developer.postgresql.org

[COMMITTERS] pgsql: Update release notes for recent changes; also minor

2004-11-21 Thread Tom Lane
Log Message: --- Update release notes for recent changes; also minor editorialization. Modified Files: -- pgsql/doc/src/sgml: release.sgml (r1.310 -> r1.311) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.310&r2=1.311)

[COMMITTERS] press - pr: some changes and comments

2004-11-21 Thread User Conni
Log Message: --- some changes and comments Modified Files: -- pr/releases/8.0/de: release (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.0/de/release.diff?r1=1.5&r2=1.6) ---(end of broadcast)

[COMMITTERS] pgsql: Fix rounding problem in dynahash.c's decision about when the

2004-11-21 Thread Tom Lane
Log Message: --- Fix rounding problem in dynahash.c's decision about when the target fill factor has been exceeded. We usually run with ffactor == 1, but the way the test was coded, it wouldn't split a bucket until the actual fill factor reached 2.0, because of use of integer division. Ch

[COMMITTERS] pgsql: Reduce the default size of the PortalHashTable in order to save a

2004-11-21 Thread Tom Lane
Log Message: --- Reduce the default size of the PortalHashTable in order to save a few cycles during transaction exit. A typical session probably wouldn't have as many as half a dozen portals open at once, so the original value of 64 seems far larger than needed. Modified Files: -

[COMMITTERS] pgsql: While fixing plperl and pltcl, I realized plpgsql wasn't doing

2004-11-21 Thread Tom Lane
Log Message: --- While fixing plperl and pltcl, I realized plpgsql wasn't doing subtransactions quite right either: the ReleaseCurrentSubTransaction call should occur inside the PG_TRY, so that the proper path is taken if an error occurs during subtransaction commit. This assumes that Abor

[COMMITTERS] pgsql: Suppress remaining compile warnings, and add a comment about why

2004-11-21 Thread Tom Lane
Log Message: --- Suppress remaining compile warnings, and add a comment about why it's not really broken. Andrew Dunstan Modified Files: -- pgsql/src/pl/plperl: SPI.xs (r1.10 -> r1.11) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plperl/SPI.xs.

[COMMITTERS] pgsql: Fix plperl and pltcl error handling per my previous proposal.

2004-11-21 Thread Tom Lane
Log Message: --- Fix plperl and pltcl error handling per my previous proposal. SPI operations are now run as subtransactions, so that errors in them can be reported as ordinary Perl or Tcl errors and caught by the normal error handling convention of those languages. Also do some minor cod