Re: [COMMITTERS] pgsql: Remove GIST concurrency limitations section.

2005-07-02 Thread Neil Conway
Bruce Momjian wrote: Remove GIST concurrency limitations section. - - The current implementation of GiST within - PostgreSQL has some major limitations: - GiST index access is not concurrent, and the - GiST interface doesn't allow the development of certain - data types, such as digital

[COMMITTERS] pgsql: This patch allows contrib/pgcrypto to build with OpenSSL 0.9.8

2005-07-02 Thread Bruce Momjian
Log Message: --- This patch allows contrib/pgcrypto to build with OpenSSL 0.9.8 (currently in beta) when cryptolib = openssl. According to the following checkin message from several years ago, OpenSSL application developers should no longer rely on to include everything they need: http:/

[COMMITTERS] tablelog - tablelog: - make restore function working with schemas -

2005-07-02 Thread User Andreas
Log Message: --- - make restore function working with schemas - precheck if the restore table exists (in temp, current or given namespace) - make code a little bit more nice - some code cleanups - no longer use any selects in pg_* tables for data lookups Modified Files: --

[COMMITTERS] tablelog - tablelog: make nice

2005-07-02 Thread User Andreas
Log Message: --- make nice Modified Files: -- tablelog: tablelog.c (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/tablelog/tablelog/tablelog.c.diff?r1=1.4&r2=1.5) ---(end of broadcast)--- TIP 9:

[COMMITTERS] tablelog - tablelog: opaque -> trigger

2005-07-02 Thread User Andreas
Log Message: --- opaque -> trigger Modified Files: -- tablelog: tablelog.sql.in (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/tablelog/tablelog/tablelog.sql.in.diff?r1=1.2&r2=1.3) ---(end of broadcast)-

[COMMITTERS] tablelog - tablelog: - remove unneeded part of docu - fix line with psql

2005-07-02 Thread User Andreas
Log Message: --- - remove unneeded part of docu - fix line with psql (-f instead of <) Modified Files: -- tablelog: README.tablelog (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/tablelog/tablelog/README.tablelog.diff?r1=1.3&r2=1.4) --

[COMMITTERS] pgsql: > A quick look shows that when you use --with-libraries=/foo/bar

2005-07-02 Thread Bruce Momjian
Log Message: --- > A quick look shows that when you use --with-libraries=/foo/bar the > generated link line for libraries says > > -L/foo/bar -lpq > > and it should probably be the other way around (as it is for the > executables). > > So I suspect we need some makefile tuning. You were c

[COMMITTERS] pgsql: Teach planner about some cases where a restriction clause can be

2005-07-02 Thread Tom Lane
Log Message: --- Teach planner about some cases where a restriction clause can be propagated inside an outer join. In particular, given LEFT JOIN ON (A = B) WHERE A = constant, we cannot conclude that B = constant at the top level (B might be null instead), but we can nonetheless put a res

[COMMITTERS] pgsql: Remove GIST concurrency limitations section.

2005-07-02 Thread Bruce Momjian
Log Message: --- Remove GIST concurrency limitations section. Christopher Kings-Lynne Modified Files: -- pgsql/doc/src/sgml: gist.sgml (r1.20 -> r1.21) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/gist.sgml.diff?r1=1.20&r2=1.21)

[COMMITTERS] pgsql: Add SGML markup for on/off values in run-time section.

2005-07-02 Thread Bruce Momjian
Log Message: --- Add SGML markup for on/off values in run-time section. Modified Files: -- pgsql/doc/src/sgml: runtime.sgml (r1.334 -> r1.335) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runtime.sgml.diff?r1=1.334&r2=1.335) -

[COMMITTERS] pgsql: Improve wrapping of long lines in postgresql.conf.

2005-07-02 Thread Bruce Momjian
Log Message: --- Improve wrapping of long lines in postgresql.conf. Modified Files: -- pgsql/src/backend/utils/misc: postgresql.conf.sample (r1.150 -> r1.151) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/postgresql.conf.sample.di

[COMMITTERS] pgsql: Use on/off consistently for GUC variables in postgresql.conf and

2005-07-02 Thread Bruce Momjian
Log Message: --- Use on/off consistently for GUC variables in postgresql.conf and the documentation, to match SHOW. Modified Files: -- pgsql/doc/src/sgml: runtime.sgml (r1.333 -> r1.334) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runtime

[COMMITTERS] pgsql: Add E'' to internally created SQL strings that contain

2005-07-02 Thread Bruce Momjian
Log Message: --- Add E'' to internally created SQL strings that contain backslashes. Improve code clarity by using macros for E'' processing. Modified Files: -- pgsql/src/backend/utils/adt: quote.c (r1.15 -> r1.16) (http://developer.postgresql.org/cvsweb.c

[COMMITTERS] pgsql: Update: < * Add rtree index support for line, lseg, path, point

2005-07-02 Thread Bruce Momjian
Log Message: --- Update: < * Add rtree index support for line, lseg, path, point > * Add more gist index support for geometric data types Modified Files: -- pgsql/doc: TODO (r1.1586 -> r1.1587) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.dif

[COMMITTERS] pgsql: In PL/PgSQL, allow a block's label to be optionally specified at

2005-07-02 Thread Neil Conway
Log Message: --- In PL/PgSQL, allow a block's label to be optionally specified at the end of the block: <> begin ... end label; Similarly for loops. This is per PL/SQL. Update the documentation and add regression tests. Patch from Pavel Stehule, code review by Neil Conway. Modified F