[COMMITTERS] pgsql: Document new -with-libxslt build option.

2007-04-21 Thread Andrew Dunstan
Log Message: --- Document new -with-libxslt build option. Modified Files: -- pgsql/doc/src/sgml: installation.sgml (r1.286 -> r1.287) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/installation.sgml.diff?r1=1.286&r2=1.287) -

[COMMITTERS] pgsql: New Directory

2007-04-21 Thread Peter Eisentraut
Update of /cvsroot/pgsql/contrib/uuid-ossp In directory postgresql.org:/tmp/cvs-serv19059/uuid-ossp Log Message: Directory /cvsroot/pgsql/contrib/uuid-ossp added to the repository ---(end of broadcast)--- TIP 1: if posting/reading through Usenet, p

[COMMITTERS] pgsql: Contrib module uuid-ossp for generating UUID values using the

2007-04-21 Thread Peter Eisentraut
Log Message: --- Contrib module uuid-ossp for generating UUID values using the OSSP UUID library. New configure option --with-ossp-uuid to activate. Modified Files: -- pgsql: configure (r1.544 -> r1.545) (http://developer.postgresql.org/cvsweb.cgi/pgsql/co

[COMMITTERS] npgsql - Npgsql: CVS UserManual.htm

2007-04-21 Thread User Bayam
Log Message: --- CVS UserManual.htm Modified Files: -- Npgsql/docs: UserManual.htm (r1.23 -> r1.24) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql/docs/UserManual.htm.diff?r1=1.23&r2=1.24) ---(end of broadcast)--

[COMMITTERS] pgsql: Fix alignment of help output.

2007-04-21 Thread Peter Eisentraut
Log Message: --- Fix alignment of help output. Modified Files: -- pgsql: configure (r1.545 -> r1.546) (http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.545&r2=1.546) configure.in (r1.512 -> r1.513) (http://developer.post

[COMMITTERS] pgsql: Don't try to build uuid-ossp on msvc.

2007-04-21 Thread Magnus Hagander
Log Message: --- Don't try to build uuid-ossp on msvc. Modified Files: -- pgsql/src/tools/msvc: Mkvcbuild.pm (r1.8 -> r1.9) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/tools/msvc/Mkvcbuild.pm.diff?r1=1.8&r2=1.9) ---(end of

[COMMITTERS] pgsql: Make configuration parameters fall back to their default values

2007-04-21 Thread Peter Eisentraut
Log Message: --- Make configuration parameters fall back to their default values when they are removed from the configuration file. Joachim Wieland Modified Files: -- pgsql/src/backend/utils/misc: guc-file.l (r1.49 -> r1.50) (http://developer.postgresql.or

[COMMITTERS] pgsql: Fix build for directories with spaces in them by quoting

2007-04-21 Thread Magnus Hagander
Log Message: --- Fix build for directories with spaces in them by quoting properly. Joachim Wieland Modified Files: -- pgsql/src/tools/msvc: Install.pm (r1.10 -> r1.11) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/tools/msvc/Install.pm.diff?r1=1.1

[COMMITTERS] pgsql: Some further performance tweaks for planning large inheritance

2007-04-21 Thread Tom Lane
Log Message: --- Some further performance tweaks for planning large inheritance trees that are mostly excluded by constraints: do the CE test a bit earlier to save some adjust_appendrel_attrs() work on excluded children, and arrange to use array indexing rather than rt_fetch() to fetch RTEs

[COMMITTERS] pgsql: Remove some of the most blatant brain-fade in the recent guc

2007-04-21 Thread Tom Lane
Log Message: --- Remove some of the most blatant brain-fade in the recent guc patch (it's so nice to have a buildfarm member that actively rejects naked uses of strcasecmp). This coding is still pretty awful, though, since it's going to be O(N^2) in the number of guc variables. May I dire