[COMMITTERS] pgsql: Add server side lo_import(filename, oid) function.

2008-03-21 Thread Tatsuo Ishii
Log Message: --- Add server side lo_import(filename, oid) function. Modified Files: -- pgsql/src/backend/libpq: be-fsstubs.c (r1.87 -> r1.88) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/libpq/be-fsstubs.c?r1=1.87&r2=1.88) pgsql/src/inclu

[COMMITTERS] pgsql: Add URL for: * Simplify ability to create partitioned tables >

2008-03-21 Thread Bruce Momjian
Log Message: --- Add URL for: * Simplify ability to create partitioned tables > http://archives.postgresql.org/pgsql-hackers/2008-01/msg00387.php Modified Files: -- pgsql/doc: TODO (r1.2356 -> r1.2357) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc

[COMMITTERS] pgsql: Add URL for: * Simplify ability to create partitioned tables >

2008-03-21 Thread Bruce Momjian
Log Message: --- Add URL for: * Simplify ability to create partitioned tables > http://archives.postgresql.org/pgsql-hackers/2008-01/msg00248.php Modified Files: -- pgsql/doc: TODO (r1.2355 -> r1.2356) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc

[COMMITTERS] pgsql: Add TODO: > > * Improve performance of shared invalidation

2008-03-21 Thread Bruce Momjian
Log Message: --- Add TODO: > > * Improve performance of shared invalidation queue for multiple CPUs > > http://archives.postgresql.org/pgsql-performance/2008-01/msg00023.php Modified Files: -- pgsql/doc: TODO (r1.2354 -> r1.2355) (http://anoncvs.postgr

[COMMITTERS] pgsql: Add URLs for: * Simplify ability to create partitioned tables

2008-03-21 Thread Bruce Momjian
Log Message: --- Add URLs for: * Simplify ability to create partitioned tables This would allow creation of partitioned tables without requiring creation of triggers or rules for INSERT/UPDATE/DELETE, and constraints for rapid partition selection. Options could include range and ha

[COMMITTERS] pgsql: Remove TypeName struct's timezone flag, which has been write-only

2008-03-21 Thread Tom Lane
Log Message: --- Remove TypeName struct's timezone flag, which has been write-only storage for a very long time --- in current usage it's entirely redundant with the name field. Modified Files: -- pgsql/src/backend/nodes: copyfuncs.c (r1.389 -> r1.390) (htt

[COMMITTERS] pgsql: Give an explicit error for serial[], rather than silently

2008-03-21 Thread Tom Lane
Log Message: --- Give an explicit error for serial[], rather than silently ignoring the array decoration as the code had been doing. Modified Files: -- pgsql/src/backend/parser: parse_utilcmd.c (r2.9 -> r2.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql

[COMMITTERS] pgsql: Report the current queries of all backends involved in a deadlock

2008-03-21 Thread Tom Lane
Log Message: --- Report the current queries of all backends involved in a deadlock (if they'd be visible to the current user in pg_stat_activity). This might look like it's subject to race conditions, but it's actually pretty safe because at the time DeadLockReport() is constructing the re

[COMMITTERS] prefix - prefix: fix DatumGetPrefixRange usage

2008-03-21 Thread User Dim
Log Message: --- fix DatumGetPrefixRange usage Modified Files: -- prefix: prefix.c (r1.24 -> r1.25) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/prefix/prefix/prefix.c.diff?r1=1.24&r2=1.25) -- Sent via pgsql-committers mailing list (pgsql-committers@postg

[COMMITTERS] pgsql: Add: > > * Convert single quotes to apostrophes in the PDF

2008-03-21 Thread Bruce Momjian
Log Message: --- Add: > > * Convert single quotes to apostrophes in the PDF documentation > > http://archives.postgresql.org/pgsql-docs/2007-12/msg00059.php > Modified Files: -- pgsql/doc: TODO (r1.2352 -> r1.2353) (http://anoncvs.postgresql.org/cvsweb

[COMMITTERS] pgsql: Add: > > * Fix inconsistent precedence of =, >, and < compared

2008-03-21 Thread Bruce Momjian
Log Message: --- Add: > > * Fix inconsistent precedence of =, >, and < compared to <>, >=, and <= > > http://archives.postgresql.org/pgsql-bugs/2007-12/msg00145.php Modified Files: -- pgsql/doc: TODO (r1.2351 -> r1.2352) (http://anoncvs.postgresql.org/

[COMMITTERS] pgsql: Add: > > o Prevent SSL from sending network packets to avoid

2008-03-21 Thread Bruce Momjian
Log Message: --- Add: > > o Prevent SSL from sending network packets to avoid interference > with Win32 signal emulation > > http://archives.postgresql.org/pgsql-hackers/2007-12/msg00455.php Modified Files: -- pgsql/doc: TODO (r1.2350 -> r1.

Re: [COMMITTERS] pgsql: Added ECPGget_PGconn() function to ecpglib, courtesy of Mike

2008-03-21 Thread Michael Meskes
On Fri, Mar 21, 2008 at 10:30:18AM -0400, Tom Lane wrote: > It's not the extra function that I object to so much as the library > version number bump. That's going to create problems for packagers. Ah, I didn't think far enough. Sorry, your definitely right on this one. Reverted. Michael -- Mic

[COMMITTERS] pgsql: Corrected version number.

2008-03-21 Thread Michael Meskes
Log Message: --- Corrected version number. Modified Files: -- pgsql/src/interfaces/ecpg/ecpglib: Makefile (r1.57 -> r1.58) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/Makefile?r1=1.57&r2=1.58) -- Sent via pgsql-committers m

[COMMITTERS] pgsql: Corrected version number.

2008-03-21 Thread Michael Meskes
Log Message: --- Corrected version number. Tags: REL8_3_STABLE Modified Files: -- pgsql/src/interfaces/ecpg/ecpglib: Makefile (r1.54.2.1 -> r1.54.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ecpglib/Makefile?r1=1.54.2.1&r2=

Re: [COMMITTERS] pgsql: Added ECPGget_PGconn() function to ecpglib, courtesy of Mike

2008-03-21 Thread Tom Lane
Michael Meskes <[EMAIL PROTECTED]> writes: > On Thu, Mar 20, 2008 at 04:36:15PM -0400, Tom Lane wrote: >> This should absolutely *not* have been done in a stable release branch. > I thought about this for a while before committing but failed to see > where an additional function could harm the sta

[COMMITTERS] pgsql: Document that soft-mounting NFS is not recommended.

2008-03-21 Thread Bruce Momjian
Log Message: --- Document that soft-mounting NFS is not recommended. Modified Files: -- pgsql/doc/src/sgml: runtime.sgml (r1.409 -> r1.410) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runtime.sgml?r1=1.409&r2=1.410) -- Sent via pgsql-comm

Re: [COMMITTERS] pgsql: Added ECPGget_PGconn() function to ecpglib, courtesy of Mike

2008-03-21 Thread Michael Meskes
On Thu, Mar 20, 2008 at 04:36:15PM -0400, Tom Lane wrote: > This should absolutely *not* have been done in a stable release branch. I thought about this for a while before committing but failed to see where an additional function could harm the stable release. There is however an advantage, namely

[COMMITTERS] pgsql: More README src cleanups.

2008-03-21 Thread Bruce Momjian
Log Message: --- More README src cleanups. Modified Files: -- pgsql/src/backend/access/heap: README.HOT (r1.2 -> r1.3) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/heap/README.HOT?r1=1.2&r2=1.3) pgsql/src/backend/access/nbtree: