[COMMITTERS] pgsql: Only recycle normal files in pg_xlog as WAL segments.

2009-06-01 Thread Heikki Linnakangas
Log Message: --- Only recycle normal files in pg_xlog as WAL segments. pg_standby creates symbolic links with the -l option, and as Fujii Masao pointed out we ended up overwriting files in the archive directory before this patch. Patch by Aidan Van Dyk, Fujii Masao and me. Backpatch to 8.3

[COMMITTERS] pgsql: Only recycle normal files in pg_xlog as WAL segments.

2009-06-01 Thread Heikki Linnakangas
Log Message: --- Only recycle normal files in pg_xlog as WAL segments. pg_standby creates symbolic links with the -l option, and as Fujii Masao pointed out we ended up overwriting files in the archive directory before this patch. Patch by Aidan Van Dyk, Fujii Masao and me. Backpatch to 8.3

[COMMITTERS] pgsql: Fix dblink_get_result() as reported by Oleksiy Shchukin.

2009-06-01 Thread Joe Conway
Log Message: --- Fix dblink_get_result() as reported by Oleksiy Shchukin. Refactor a bit while we're at it per request by Tom Lane. Specifically, don't try to perform dblink_send_query() via dblink_record_internal() -- it was inappropriate and ugly. Modified Files: -- pgsql

[COMMITTERS] pgsql: Change AdjustIntervalForTypmod to not discard higher-order field

2009-06-01 Thread Tom Lane
Log Message: --- Change AdjustIntervalForTypmod to not discard higher-order field values on the grounds that they don't fit into the specified interval qualifier (typmod). This behavior, while of long standing, is clearly wrong per spec --- for example the value INTERVAL '999' SECOND means

[COMMITTERS] pg-migrator - pg_migrator: Stamp alpha 15.

2009-06-01 Thread User Bmomjian
Log Message: --- Stamp alpha 15. Modified Files: -- pg_migrator: README (r1.22 -> r1.23) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/README?r1=1.22&r2=1.23) -- Sent via pgsql-committers mailing list ([email protected]

[COMMITTERS] pg-migrator - pg_migrator: Stamp alpha15.

2009-06-01 Thread User Bmomjian
Log Message: --- Stamp alpha15. Modified Files: -- pg_migrator/src: pg_migrator.h (r1.41 -> r1.42) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/pg_migrator.h?r1=1.41&r2=1.42) -- Sent via pgsql-committers mailing list (pgsql-com

[COMMITTERS] pg-migrator - pg_migrator: Document limitations.

2009-06-01 Thread User Bmomjian
Log Message: --- Document limitations. Modified Files: -- pg_migrator: README (r1.21 -> r1.22) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/README?r1=1.21&r2=1.22) -- Sent via pgsql-committers mailing list (pgsql-committers@postgre

[COMMITTERS] pg-migrator - pg_migrator: More _dosmaperr fixes.

2009-06-01 Thread User Bmomjian
Log Message: --- More _dosmaperr fixes. Modified Files: -- pg_migrator/src: file.c (r1.18 -> r1.19) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/file.c?r1=1.18&r2=1.19) -- Sent via pgsql-committers mailing list (pgsql-committer

[COMMITTERS] pg-migrator - pg_migrator: Use dosmaperr for Win32 when checking errno,

2009-06-01 Thread User Bmomjian
Log Message: --- Use dosmaperr for Win32 when checking errno, per suggestion from Magnus. Modified Files: -- pg_migrator/src: exec.c (r1.8 -> r1.9) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/exec.c?r1=1.8&r2=1.9) file.c

[COMMITTERS] pg-migrator - pg_migrator: Handle Win32 MoveFile return value, per

2009-06-01 Thread User Bmomjian
Log Message: --- Handle Win32 MoveFile return value, per report from Hiroshi Saito Modified Files: -- pg_migrator/src: file.c (r1.16 -> r1.17) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/file.c?r1=1.16&r2=1.17) pg_migrat

[COMMITTERS] pgsql: Fix DecodeInterval to report an error for multiple occurrences of

2009-06-01 Thread Tom Lane
Log Message: --- Fix DecodeInterval to report an error for multiple occurrences of DAY, WEEK, YEAR, DECADE, CENTURY, or MILLENIUM fields, just as it always has done for other types of fields. The previous behavior seems to have been a hack to avoid defining bit-positions for all these fiel

[COMMITTERS] pg-migrator - pg_migrator: Add windows.h include.

2009-06-01 Thread User Bmomjian
Log Message: --- Add windows.h include. Modified Files: -- pg_migrator/src: file.c (r1.15 -> r1.16) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/file.c?r1=1.15&r2=1.16) -- Sent via pgsql-committers mailing list (pgsql-committer

[COMMITTERS] pg-migrator - pg_migrator: Update TODO.

2009-06-01 Thread User Bmomjian
Log Message: --- Update TODO. Modified Files: -- pg_migrator: TODO (r1.13 -> r1.14) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/TODO?r1=1.13&r2=1.14) -- Sent via pgsql-committers mailing list ([email protected]) To m

[COMMITTERS] pg-migrator - pg_migrator: Add Win32 support for --link.

2009-06-01 Thread User Bmomjian
Log Message: --- Add Win32 support for --link. Win32 code from Hiroshi Saito. Modified Files: -- pg_migrator/src: file.c (r1.14 -> r1.15) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/file.c?r1=1.14&r2=1.15) pg_migrator.h

Re: [COMMITTERS] pg-migrator - pg_migrator: Improve tsvector conversion script.

2009-06-01 Thread Bruce Momjian
Michael Glaesemann wrote: > At one time I believe pgfoundry project commit emails included an X- > PgFoundry flag. This was helpful for filtering. I notice that this > email does not have one. Has something changed wrt the commit emails? I think you are correct; something has changed. I have

[COMMITTERS] jsonpath - postgresql-json: New Directory

2009-06-01 Thread User Marian
Update of /cvsroot/jsonpath/postgresql-json/src In directory pgfoundry.org:/tmp/cvs-serv89337/src Log Message: Directory /cvsroot/jsonpath/postgresql-json/src added to the repository -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription

[COMMITTERS] jsonpath - postgresql-json: First commit.

2009-06-01 Thread User Marian
Log Message: --- First commit. Added Files: --- postgresql-json/src: postgres_json.sql (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/jsonpath/postgresql-json/src/postgres_json.sql?rev=1.1&content-type=text/x-cvsweb-markup) postgres_json_test.sql (

[COMMITTERS] jsonpath - postgresql-json: New Directory

2009-06-01 Thread User Marian
Update of /cvsroot/jsonpath/postgresql-json In directory pgfoundry.org:/tmp/cvs-serv89131/postgresql-json Log Message: Directory /cvsroot/jsonpath/postgresql-json added to the repository -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscrip