[COMMITTERS] pgsql: Somebody forgot to add this ERRCODE everywhere it should go ...

2008-01-14 Thread Tom Lane
Log Message: --- Somebody forgot to add this ERRCODE everywhere it should go ... Modified Files: -- pgsql/doc/src/sgml: errcodes.sgml (r1.22 -> r1.23) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/errcodes.sgml?r1=1.22&r2=1.23) pgsql/sr

[COMMITTERS] pgsql: Add: > > * Add the ability to automatically create materialized

2008-01-14 Thread Bruce Momjian
Log Message: --- Add: > > * Add the ability to automatically create materialized views > > Right now materialized views require the user to create triggers on the > main table to keep the summary table current. SQL syntax should be able > to manager the triggers and summary table

[COMMITTERS] pgsql: Most recent Postgres version is 8.2.6, per report from Robert

2008-01-14 Thread Bruce Momjian
Log Message: --- Most recent Postgres version is 8.2.6, per report from Robert Treat. Modified Files: -- pgsql/doc: FAQ (r1.448 -> r1.449) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ?r1=1.448&r2=1.449) pgsql/doc/src/FAQ: FAQ.html (

[COMMITTERS] pgsql: Prevent pg_dump from dumping the comment (if any) on the 'public'

2008-01-14 Thread Tom Lane
Log Message: --- Prevent pg_dump from dumping the comment (if any) on the 'public' schema. This is to avoid uselessly requiring superuser permissions to restore the dump without errors. Pretty grotty, but no better alternative seems available, at least not in the near term. Modified Files

[COMMITTERS] pgsql: Avoid cluttering the postmaster log with bogus complaints during

2008-01-14 Thread Tom Lane
Log Message: --- Avoid cluttering the postmaster log with bogus complaints during transaction abort, per my note from a couple days ago. Modified Files: -- pgsql/src/backend/utils/misc: guc.c (r1.429 -> r1.430) (http://developer.postgresql.org/cvsweb.cgi/pg

[COMMITTERS] pgsql: Fix an ancient oversight in libpq's handling of V3-protocol COPY

2008-01-14 Thread Tom Lane
Log Message: --- Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode: we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protoc

[COMMITTERS] pgsql: Fix an ancient oversight in libpq's handling of V3-protocol COPY

2008-01-14 Thread Tom Lane
Log Message: --- Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode: we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protoc

[COMMITTERS] pgsql: Fix an ancient oversight in libpq's handling of V3-protocol COPY

2008-01-14 Thread Tom Lane
Log Message: --- Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode: we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protoc

[COMMITTERS] pgsql: Fix an ancient oversight in libpq's handling of V3-protocol COPY

2008-01-14 Thread Tom Lane
Log Message: --- Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode: we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protoc

[COMMITTERS] pgsql: Fix an ancient oversight in libpq's handling of V3-protocol COPY

2008-01-14 Thread Tom Lane
Log Message: --- Fix an ancient oversight in libpq's handling of V3-protocol COPY OUT mode: we need to be able to swallow NOTICE messages, and potentially also ParameterStatus messages (although the latter would be a bit weird), without exiting COPY OUT state. Fix it, and adjust the protoc

[COMMITTERS] press - pr:

2008-01-14 Thread User Kostas
Log Message: --- Added Files: --- pr/releases/8.3/el: features83.html.el (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.3/el/features83.html.el?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadcast)--

[COMMITTERS] postbio - postbio: New, more portable build system.

2008-01-14 Thread User Carvalho
Log Message: --- New, more portable build system. Modified Files: -- postbio: Makefile (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/postbio/postbio/Makefile.diff?r1=1.4&r2=1.5) postbio.sql.in (r1.2 -> r1.3) (http://cvs.pgfoun

[COMMITTERS] pllua - pllua: Added LUAINC and LUALIB for some known platforms.

2008-01-14 Thread User Carvalho
Log Message: --- Added LUAINC and LUALIB for some known platforms. Modified Files: -- pllua: Makefile (r1.7 -> r1.8) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pllua/pllua/Makefile.diff?r1=1.7&r2=1.8) ---(end of broadcast)

[COMMITTERS] pllua - pllua: Replaced pllua.source.

2008-01-14 Thread User Carvalho
Log Message: --- Replaced pllua.source. Added Files: --- pllua: pllua.sql.in (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pllua/pllua/pllua.sql.in?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadcast)--

[COMMITTERS] pllua - pllua: Minor changes for new build system.

2008-01-14 Thread User Carvalho
Log Message: --- Minor changes for new build system. Modified Files: -- pllua: Makefile (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pllua/pllua/Makefile.diff?r1=1.6&r2=1.7) pllua.c (r1.11 -> r1.12) (http://cvs.pgfoundry.org/

[COMMITTERS] pgsql: Mark autovacuum entries in pg_stat_activity so that they can be

2008-01-14 Thread Alvaro Herrera
Log Message: --- Mark autovacuum entries in pg_stat_activity so that they can be easily distinguished from user-invoked commands. Per suggestion from Tom Lane. Modified Files: -- pgsql/src/backend/postmaster: autovacuum.c (r1.70 -> r1.71) (http://developer

[COMMITTERS] pgsql: Set valid return values even in case of an error to prevent

2008-01-14 Thread Michael Meskes
Log Message: --- Set valid return values even in case of an error to prevent segfaults. Modified Files: -- pgsql/src/interfaces/ecpg: ChangeLog (r1.367 -> r1.368) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ChangeLog?r1=1.367&r2=1.