Re: [COMMITTERS] pgsql: Allow the syntax CREATE TYPE foo, with no parameters, to permit

2006-02-28 Thread Tom Lane
Neil Conway <[EMAIL PROTECTED]> writes: > On Tue, 2006-02-28 at 18:37 -0400, Tom Lane wrote: >> Allow the syntax CREATE TYPE foo, with no parameters, to permit explicit >> creation of a shell type. > BTW, I noticed that it would be nice to make use of this syntax among > for contrib/ -- No object

[COMMITTERS] pgsql: Attached is a patch that replaces a bunch of places where

2006-02-28 Thread Neil Conway
Log Message: --- Attached is a patch that replaces a bunch of places where StringInfos are unnecessarily allocated on the heap rather than the stack. If the StringInfo doesn't outlive the stack frame in which it is created, there is no need to allocate it on the heap via makeStringInfo() --

[COMMITTERS] pgsql: This patch makes the error message strings throughout the backend

2006-02-28 Thread Neil Conway
Log Message: --- This patch makes the error message strings throughout the backend more compliant with the error message style guide. In particular, errdetail should begin with a capital letter and end with a period, whereas errmsg should not. I also fixed a few related issues in passing, s

Re: [COMMITTERS] pgsql: Allow the syntax CREATE TYPE foo, with no

2006-02-28 Thread Neil Conway
On Tue, 2006-02-28 at 18:37 -0400, Tom Lane wrote: > Allow the syntax CREATE TYPE foo, with no parameters, to permit explicit > creation of a shell type. BTW, I noticed that it would be nice to make use of this syntax among for contrib/ -- if nothing else to avoid the ugly "NOTICE" that is current

[COMMITTERS] docbot - docbot: Bump copyright, add self, quote channel names to

2006-02-28 Thread User Turnstep
Log Message: --- Bump copyright, add self, quote channel names to prevent warnings from Perl. Modified Files: -- docbot: docbot.pl (r1.62 -> r1.63) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/docbot.pl.diff?r1=1.62&r2=1.63) -

[COMMITTERS] docbot - docbot: Remove ownership, schema, plpgsql stuff not directly

2006-02-28 Thread User Turnstep
Log Message: --- Remove ownership, schema, plpgsql stuff not directly related to the project. Modified Files: -- docbot: rtfm_please.sql (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/rtfm_please.sql.diff?r1=1.4&r2=1.5) -

[COMMITTERS] docbot - docbot: Tabs to spaces.

2006-02-28 Thread User Turnstep
Log Message: --- Tabs to spaces. Modified Files: -- docbot: docbot.pl (r1.61 -> r1.62) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/docbot.pl.diff?r1=1.61&r2=1.62) ---(end of broadcast)--- TIP 4

[COMMITTERS] docbot - docbot: Add important indexes.

2006-02-28 Thread User Turnstep
Log Message: --- Add important indexes. Modified Files: -- docbot: rtfm_please.sql (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/rtfm_please.sql.diff?r1=1.3&r2=1.4) ---(end of broadcast)--

[COMMITTERS] docbot - docbot: Add support for putting everything in a schema.

2006-02-28 Thread User Turnstep
Log Message: --- Add support for putting everything in a schema. Modified Files: -- docbot: docbot.pl (r1.59 -> r1.60) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/docbot.pl.diff?r1=1.59&r2=1.60) ---(end of broadcast)-

[COMMITTERS] docbot - docbot: Allow https

2006-02-28 Thread User Turnstep
Log Message: --- Allow https Modified Files: -- docbot: docbot.pl (r1.58 -> r1.59) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/docbot.pl.diff?r1=1.58&r2=1.59) ---(end of broadcast)--- TIP 9: In

[COMMITTERS] docbot - docbot: Make host and port optional in connection string

2006-02-28 Thread User Turnstep
Log Message: --- Make host and port optional in connection string Modified Files: -- docbot: docbot.pl (r1.57 -> r1.58) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/docbot.pl.diff?r1=1.57&r2=1.58) ---(end of broadcast)

[COMMITTERS] pgsql: Add pg_service.conf documentation for libpq.

2006-02-28 Thread Bruce Momjian
Log Message: --- Add pg_service.conf documentation for libpq. Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml: libpq.sgml (r1.199 -> r1.199.2.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/libpq.sgml.diff?r1=1.199&r2=1.199

[COMMITTERS] pgsql: Add pg_service.conf documentation for libpq.

2006-02-28 Thread Bruce Momjian
Log Message: --- Add pg_service.conf documentation for libpq. Modified Files: -- pgsql/doc/src/sgml: libpq.sgml (r1.203 -> r1.204) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/libpq.sgml.diff?r1=1.203&r2=1.204) ---

[COMMITTERS] pgsql: Fix typo in comment.

2006-02-28 Thread Neil Conway
Log Message: --- Fix typo in comment. Modified Files: -- pgsql/src/pl/plperl: plperl.c (r1.102 -> r1.103) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plperl/plperl.c.diff?r1=1.102&r2=1.103) ---(end of broadcast)

[COMMITTERS] fsutil - fsutil: Initial load onto pgfoundry.

2006-02-28 Thread User Kgrittn
Log Message: --- Initial load onto pgfoundry. Added Files: --- fsutil: Makefile (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/fsutil/fsutil/Makefile?rev=1.1&content-type=text/x-cvsweb-markup) README.fsutil (r1.1) (http://cvs.pgfoundry.org

Re: [COMMITTERS] pgsql: Implement the <> operator for the tid type.

2006-02-28 Thread Tom Lane
[EMAIL PROTECTED] (Neil Conway) writes: > Implement the <> operator for the tid type. Original patch from Mark > Kirkwood, minor improvements by Neil Conway. The regression tests have > been updated and the catversion has been bumped. I noticed a minor oversight in this patch: the tideq and tidne

[COMMITTERS] pgsql: Allow the syntax CREATE TYPE foo, with no parameters, to permit

2006-02-28 Thread Tom Lane
Log Message: --- Allow the syntax CREATE TYPE foo, with no parameters, to permit explicit creation of a shell type. This allows a less hacky way of dealing with the mutual dependency between a datatype and its I/O functions: make a shell type, then make the functions, then define the datat

Re: [COMMITTERS] pgsql: Fix PG_VERSION_NUM for different awk -F handling.

2006-02-28 Thread Bruce Momjian
Libpq.sgml part backed out. --- Bruce Momjian wrote: > Log Message: > --- > Fix PG_VERSION_NUM for different awk -F handling. > > Modified Files: > -- > pgsql: > configure (r1.482 -> r1.483)

[COMMITTERS] pgsql: Back out libpq changes for service --- not ready yet.

2006-02-28 Thread Bruce Momjian
Log Message: --- Back out libpq changes for service --- not ready yet. Modified Files: -- pgsql/doc/src/sgml: libpq.sgml (r1.202 -> r1.203) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/libpq.sgml.diff?r1=1.202&r2=1.203) --

[COMMITTERS] pgsql: Fix PG_VERSION_NUM for different awk -F handling.

2006-02-28 Thread Bruce Momjian
Log Message: --- Fix PG_VERSION_NUM for different awk -F handling. Modified Files: -- pgsql: configure (r1.482 -> r1.483) (http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.482&r2=1.483) configure.in (r1.452 -> r1.453) (h

[COMMITTERS] fsutil - fsutil: New Directory

2006-02-28 Thread User Kgrittn
Update of /cvsroot/fsutil/fsutil In directory pgfoundry.org:/tmp/cvs-serv74612/fsutil Log Message: Directory /cvsroot/fsutil/fsutil added to the repository ---(end of broadcast)--- TIP 5: don't forget to increase your free space map settings

[COMMITTERS] pgsql: Fix PG_VERSION_NUM awk -F parameter.

2006-02-28 Thread Bruce Momjian
Log Message: --- Fix PG_VERSION_NUM awk -F parameter. Modified Files: -- pgsql: configure (r1.481 -> r1.482) (http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.481&r2=1.482) configure.in (r1.451 -> r1.452) (http://develop

[COMMITTERS] pgsql: Tweak the error message emitted when a void-returning PL/Python

2006-02-28 Thread Neil Conway
Log Message: --- Tweak the error message emitted when a void-returning PL/Python function does not return None, per suggestion from Tom. Modified Files: -- pgsql/src/pl/plpython: plpython.c (r1.72 -> r1.73) (http://developer.postgresql.org/cvsweb.cgi/pgsql/

[COMMITTERS] pgsql: Allow PL/Python functions to return void, per gripe from James

2006-02-28 Thread Neil Conway
Log Message: --- Allow PL/Python functions to return void, per gripe from James Robinson (I didn't use his patch, however). A void-returning PL/Python function must return None (from Python), which is translated into a void datum (and *not* NULL) for Postgres. I also added some regression t

[COMMITTERS] pgsql: Add: * Split out libpq pgpass and environment documentation

2006-02-28 Thread Bruce Momjian
Log Message: --- Add: * Split out libpq pgpass and environment documentation sections to make it easier for non-developers to find Modified Files: -- pgsql/doc: TODO (r1.1772 -> r1.1773) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=

[COMMITTERS] pgsql: Add PG_VERSION_NUM for use by 3rd party applications wanting to

2006-02-28 Thread Bruce Momjian
Log Message: --- Add PG_VERSION_NUM for use by 3rd party applications wanting to test the backend version in C using > and < comparisons. Modified Files: -- pgsql: configure (r1.480 -> r1.481) (http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff

[COMMITTERS] npgsql - Npgsql: 2006-02-28 Francisco Figueiredo Jr.

2006-02-28 Thread User Fxjr
Log Message: --- 2006-02-28 Francisco Figueiredo Jr. <[EMAIL PROTECTED]> * NpgsqlCommand.cs: Added a little fix for previous patch. Clear previous responses before getting new ones. Thanks Hubert for heads up! Modified Files: -- Npgsql/src/Npgsql: Npgsq