[COMMITTERS] pgsql: Back-patch fix for ALTER DATABASE failing to flush pg_database

2004-11-17 Thread Tom Lane
Log Message: --- Back-patch fix for ALTER DATABASE failing to flush pg_database changes to disk right away. This is just a one-liner change rather than trying to use FlushRelationBuffers(). Tags: REL7_3_STABLE Modified Files: -- pgsql/src/backend/commands: db

[COMMITTERS] pgsql: Back-patch fix for ALTER DATABASE failing to flush pg_database

2004-11-17 Thread Tom Lane
Log Message: --- Back-patch fix for ALTER DATABASE failing to flush pg_database changes to disk right away. This is just a one-liner change rather than trying to use FlushRelationBuffers(). Tags: REL7_4_STABLE Modified Files: -- pgsql/src/backend/commands: db

[COMMITTERS] pgsql: Force pg_database updates out to disk immediately after ALTER

2004-11-17 Thread Tom Lane
Log Message: --- Force pg_database updates out to disk immediately after ALTER DATABASE; this is to avoid scenarios where incoming backends find no live copies of a database's row because the only live copy is in an as-yet-unwritten shared buffer, which they can't see. Also, use FlushRelat

Re: [COMMITTERS] pgsql: Remove ill-considered suppression of gcc warnings in plperl, and

2004-11-17 Thread Michael Fuhr
On Wed, Nov 17, 2004 at 09:23:37PM +, Tom Lane wrote: > Remove ill-considered suppression of gcc warnings in plperl, and fix > some of the bugs exposed thereby. These changes may not have targeted the problem mentioned in the "plperl crashes backend" thread in pgsql-bugs, but I'll report that

[COMMITTERS] press - pr:

2004-11-17 Thread User Ahatzis
Log Message: --- Added Files: --- pr/releases/8.0/de: press_page (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.0/de/press_page?rev=1.1&content-type=text/x-cvsweb-markup) release (r1.1) (http://cvs.pgfoundry.org/cgi-bi

[COMMITTERS] pgsql: Include if available, to avoid warnings on Windows.

2004-11-17 Thread Tom Lane
Log Message: --- Include if available, to avoid warnings on Windows. Modified Files: -- pgsql/src/bin/pg_resetxlog: pg_resetxlog.c (r1.24 -> r1.25) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_resetxlog/pg_resetxlog.c.diff?r1=1.24&r2=1.25)

[COMMITTERS] pgsql: Rename vacuum_cost_limit switch from -N to -l to avoid conflict

2004-11-17 Thread Tom Lane
Log Message: --- Rename vacuum_cost_limit switch from -N to -l to avoid conflict with existing Windows-only switch. Modified Files: -- pgsql/contrib/pg_autovacuum: README.pg_autovacuum (r1.9 -> r1.10) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contri

[COMMITTERS] pgsql: Remove ill-considered suppression of gcc warnings in plperl, and

2004-11-17 Thread Tom Lane
Log Message: --- Remove ill-considered suppression of gcc warnings in plperl, and fix some of the bugs exposed thereby. The remaining 'might be used uninitialized' warnings look like live bugs, but I am not familiar enough with Perl/C hacking to tell how to fix them. Modified Files: -

[COMMITTERS] pgsql: Fix off-by-one memory allocation, as reported by Rod Taylor.

2004-11-17 Thread Tom Lane
Log Message: --- Fix off-by-one memory allocation, as reported by Rod Taylor. Also avoid repalloc'ing twice when once is sufficient. Tags: REL7_3_STABLE Modified Files: -- pgsql/src/backend/libpq: hba.c (r1.87.2.4 -> r1.87.2.5) (http://developer.post

[COMMITTERS] pgsql: Fix off-by-one memory allocation, as reported by Rod Taylor.

2004-11-17 Thread Tom Lane
Log Message: --- Fix off-by-one memory allocation, as reported by Rod Taylor. Also avoid repalloc'ing twice when once is sufficient. Tags: REL7_4_STABLE Modified Files: -- pgsql/src/backend/libpq: hba.c (r1.116.2.3 -> r1.116.2.4) (http://developer.po

[COMMITTERS] pgsql: Fix off-by-one memory allocation, as reported by Rod Taylor.

2004-11-17 Thread Tom Lane
Log Message: --- Fix off-by-one memory allocation, as reported by Rod Taylor. Also avoid repalloc'ing twice when once is sufficient. Modified Files: -- pgsql/src/backend/libpq: hba.c (r1.133 -> r1.134) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/

[COMMITTERS] pgsql: Set DEFAULT_EDITOR to notepad.exe on Windows, as per recent

2004-11-17 Thread Tom Lane
Log Message: --- Set DEFAULT_EDITOR to notepad.exe on Windows, as per recent discussion. Modified Files: -- pgsql/src/bin/psql: settings.h (r1.21 -> r1.22) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/settings.h.diff?r1=1.21&r2=1.22)

[COMMITTERS] pgsql: Some further editorial adjustment of PITR recovery procedure

2004-11-17 Thread Tom Lane
Log Message: --- Some further editorial adjustment of PITR recovery procedure description. Modified Files: -- pgsql/doc/src/sgml: backup.sgml (r2.51 -> r2.52) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/backup.sgml.diff?r1=2.51&r2=2.52)

[COMMITTERS] pgsql: Force LANG=en on Windows, since system may fail to default to

2004-11-17 Thread Tom Lane
Log Message: --- Force LANG=en on Windows, since system may fail to default to English. Modified Files: -- pgsql/src/test/regress: pg_regress.sh (r1.49 -> r1.50) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/pg_regress.sh.diff?r1=1.49&r

[COMMITTERS] pgsql: Add installcheck-parallel regression test target.

2004-11-17 Thread Tom Lane
Log Message: --- Add installcheck-parallel regression test target. Magnus Hagander Modified Files: -- pgsql/src/test/regress: GNUmakefile (r1.47 -> r1.48) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/GNUmakefile.diff?r1=1.47&r2=1.48)

[COMMITTERS] pgsql: Use pg_usleep() not sleep(), per Andrew Dunstan.

2004-11-17 Thread Tom Lane
Log Message: --- Use pg_usleep() not sleep(), per Andrew Dunstan. Modified Files: -- pgsql/src/backend/postmaster: pgarch.c (r1.10 -> r1.11) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/pgarch.c.diff?r1=1.10&r2=1.11) ---

[COMMITTERS] pgsql: Miscellaneous Cygwin build fixes from Reini Urban.

2004-11-17 Thread Tom Lane
Log Message: --- Miscellaneous Cygwin build fixes from Reini Urban. Modified Files: -- pgsql/contrib/spi: Makefile (r1.24 -> r1.25) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/spi/Makefile.diff?r1=1.24&r2=1.25) pgsql/src/bin/pg_ctl:

[COMMITTERS] pgsql: Add variant regression file to support BSDen that underflow to

2004-11-17 Thread Tom Lane
Log Message: --- Add variant regression file to support BSDen that underflow to plus zero instead of minus zero. Per Andrew Dunstan. Added Files: --- pgsql/src/test/regress/expected: float8-small-is-zero_1.out (r1.1) (http://developer.postgresql.org/cvsweb.cgi

[COMMITTERS] pgsql: Install include/port header files, and fix PGXS build to use

2004-11-17 Thread Tom Lane
Log Message: --- Install include/port header files, and fix PGXS build to use them. Fabien COELHO Modified Files: -- pgsql/src/include: Makefile (r1.17 -> r1.18) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/Makefile.diff?r1=1.17&r2=1.18)

[COMMITTERS] pgsql: Adjust SHLIB_LINK for cygwin case.

2004-11-17 Thread Tom Lane
Log Message: --- Adjust SHLIB_LINK for cygwin case. Reini Urban Modified Files: -- pgsql/src: Makefile.shlib (r1.87 -> r1.88) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/Makefile.shlib.diff?r1=1.87&r2=1.88) ---(end of broa

[COMMITTERS] pgsql: Add options to pg_autovacuum to support setting the

2004-11-17 Thread Tom Lane
Log Message: --- Add options to pg_autovacuum to support setting the cost-based-vacuum parameters differently from their default values. Matthew T. O'Connor Modified Files: -- pgsql/contrib/pg_autovacuum: README.pg_autovacuum (r1.8 -> r1.9) (http://develop

[COMMITTERS] pgsql: Be sure length limit passed to snprintf matches what malloc was

2004-11-17 Thread Tom Lane
Log Message: --- Be sure length limit passed to snprintf matches what malloc was given. Just paranoia ... Modified Files: -- pgsql/src/bin/pg_ctl: pg_ctl.c (r1.45 -> r1.46) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_ctl/pg_ctl.c.diff?r1=1.

[COMMITTERS] pgsql: Minor adjustment of message style.

2004-11-17 Thread Tom Lane
Log Message: --- Minor adjustment of message style. Modified Files: -- pgsql/src/backend/access/transam: xlog.c (r1.177 -> r1.178) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c.diff?r1=1.177&r2=1.178) -

[COMMITTERS] pgsql: Win32 build cleanups, from Andrew Dunstan.

2004-11-17 Thread Neil Conway
Log Message: --- Win32 build cleanups, from Andrew Dunstan. Modified Files: -- pgsql/src/backend/port/dynloader: win32.c (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/port/dynloader/win32.c.diff?r1=1.3&r2=1.4) pgsql/src/ba