[COMMITTERS] pgsql: Adding script that generates preproc.y from gram.y to CVS.

2008-11-14 Thread Michael Meskes
Log Message: --- Adding script that generates preproc.y from gram.y to CVS. Added Files: --- pgsql/src/interfaces/ecpg/preproc: parse.pl (r1.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/parse.pl?rev=1.1&content-type=text/x-cvsw

[COMMITTERS] pgsql: Added files containing changes between gram.y and preproc.y.

2008-11-14 Thread Michael Meskes
Log Message: --- Added files containing changes between gram.y and preproc.y. Added Files: --- pgsql/src/interfaces/ecpg/preproc: ecpg.addons (r1.1) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/ecpg.addons?rev=1.1&content-type=tex

[COMMITTERS] pgsql: Set SQL man pages to be section 7 by default, and only transform

2008-11-14 Thread Peter Eisentraut
Log Message: --- Set SQL man pages to be section 7 by default, and only transform them to another section if required by the platform (instead of the old way of building them in section "l" and always transforming them to the platform-specific section). This speeds up the installation o

[COMMITTERS] pgsql: Since doc/src/sgml already builds the HTML docs twice to resolve

2008-11-14 Thread Peter Eisentraut
Log Message: --- Since doc/src/sgml already builds the HTML docs twice to resolve index entries, we don't have to do two builds here as well. Modified Files: -- pgsql/doc/src: Makefile (r1.34 -> r1.35) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src

[COMMITTERS] pgsql: Fix oversight in previous error-reporting patch; mustn't pfree

2008-11-14 Thread Heikki Linnakangas
Log Message: --- Fix oversight in previous error-reporting patch; mustn't pfree path string before passing it to elog. Modified Files: -- pgsql/src/backend/storage/smgr: md.c (r1.140 -> r1.141) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/sto

Re: [COMMITTERS] pgsql: Added files containing changes between gram.y and preproc.y.

2008-11-14 Thread Alvaro Herrera
Michael Meskes wrote: > ecpg.header (r1.1) > > (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/ecpg.header?rev=1.1&content-type=text/x-cvsweb-markup) I stumbled upon this + case ET_FATAL: + if (yyin) +

Re: [COMMITTERS] pgsql: Added files containing changes between gram.y and preproc.y.

2008-11-14 Thread Michael Meskes
On Fri, Nov 14, 2008 at 09:16:20AM -0300, Alvaro Herrera wrote: > I stumbled upon this > > + case ET_FATAL: > + if (yyin) > + fclose(yyin); > + if (yyout) > + fclose(yyout); > +

[COMMITTERS] pgsql: Fixed test for output_filename == stdout.

2008-11-14 Thread Michael Meskes
Log Message: --- Fixed test for output_filename == stdout. Modified Files: -- pgsql/src/interfaces/ecpg/preproc: ecpg.header (r1.1 -> r1.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/ecpg.header?r1=1.1&r2=1.2) prepro

[COMMITTERS] pgsql: Enable script to generate preproc.y in build process.

2008-11-14 Thread Michael Meskes
Log Message: --- Enable script to generate preproc.y in build process. Modified Files: -- pgsql/src/interfaces/ecpg/preproc: .cvsignore (r1.1 -> r1.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/.cvsignore?r1=1.1&r2=1.2)

Re: [COMMITTERS] pgsql: Enable script to generate preproc.y in build process.

2008-11-14 Thread Tom Lane
[EMAIL PROTECTED] (Michael Meskes) writes: > Enable script to generate preproc.y in build process. Where's the "cvs remove preproc.y" ? regards, tom lane -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: htt

[COMMITTERS] pgsql: Improve comment about when to clean generated files.

2008-11-14 Thread Tom Lane
Log Message: --- Improve comment about when to clean generated files. Modified Files: -- pgsql/src/interfaces/ecpg/preproc: Makefile (r1.138 -> r1.139) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/Makefile?r1=1.138&r2=1.139)

[COMMITTERS] pgsql: Make CREATE CONVERSION verify that a putative encoding conversion

2008-11-14 Thread Tom Lane
Log Message: --- Make CREATE CONVERSION verify that a putative encoding conversion function returns VOID. This is the last of the easy fixes I recommended in [EMAIL PROTECTED] --- the others got done awhile ago but I forgot about this one. Modified Files: -- pgsql/src/back

[COMMITTERS] pgsql: ecpg's preproc.y is now generated as needed, so remove from CVS.

2008-11-14 Thread Tom Lane
Log Message: --- ecpg's preproc.y is now generated as needed, so remove from CVS. Removed Files: - pgsql/src/interfaces/ecpg/preproc: preproc.y (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/preproc.y) -- Sent via pgsql-commit

Re: [COMMITTERS] pgsql: Enable script to generate preproc.y in build process.

2008-11-14 Thread Michael Meskes
On Fri, Nov 14, 2008 at 12:13:30PM -0500, Tom Lane wrote: > [EMAIL PROTECTED] (Michael Meskes) writes: > > Enable script to generate preproc.y in build process. > > Where's the "cvs remove preproc.y" ? Waiting for me to get online again. I didn't want to make that last change while going offline

Re: [COMMITTERS] pgsql: Enable script to generate preproc.y in build process.

2008-11-14 Thread Tom Lane
Michael Meskes <[EMAIL PROTECTED]> writes: > On Fri, Nov 14, 2008 at 12:13:30PM -0500, Tom Lane wrote: >> Where's the "cvs remove preproc.y" ? > Waiting for me to get online again. I didn't want to make that last change > while going offline immediately afterwards. I prefer to be able to keep an e

[COMMITTERS] pgsql: In CREATE AGGREGATE, allow the transition datatype to be

2008-11-14 Thread Tom Lane
Log Message: --- In CREATE AGGREGATE, allow the transition datatype to be "internal", but only if the user is superuser. This makes available to extension modules the same sort of trick being practiced by array_agg(). The reason for the superuser restriction is that you could crash the sy

[COMMITTERS] pgsql: Reduce contrib/intagg to a thin wrapper around the new core

2008-11-14 Thread Tom Lane
Log Message: --- Reduce contrib/intagg to a thin wrapper around the new core functions array_agg() and unnest(). We could drop it entirely in the future, but let's keep it for a release or two as a compatibility assist. Modified Files: -- pgsql/contrib/intagg: Make

[COMMITTERS] pgsql: Second try at fixing DLLIMPORT problem for pg_crc.h on Cygwin.

2008-11-14 Thread Tom Lane
Log Message: --- Second try at fixing DLLIMPORT problem for pg_crc.h on Cygwin. Modified Files: -- pgsql/src/include/utils: pg_crc.h (r1.19 -> r1.20) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/pg_crc.h?r1=1.19&r2=1.20) -- Sent via p

Re: [COMMITTERS] pgsql: Enable script to generate preproc.y in build process.

2008-11-14 Thread Michael Meskes
On Fri, Nov 14, 2008 at 02:42:57PM -0500, Tom Lane wrote: > Michael Meskes <[EMAIL PROTECTED]> writes: > > On Fri, Nov 14, 2008 at 12:13:30PM -0500, Tom Lane wrote: > >> Where's the "cvs remove preproc.y" ? > > > Waiting for me to get online again. I didn't want to make that last change > > while

Re: [COMMITTERS] pgsql: Enable script to generate preproc.y in build process.

2008-11-14 Thread Tom Lane
Michael Meskes <[EMAIL PROTECTED]> writes: > On Fri, Nov 14, 2008 at 02:42:57PM -0500, Tom Lane wrote: >> In any case, one can always roll back a CVS change ... > Even for a delete? Sure, you can re-add the file. regards, tom lane -- Sent via pgsql-committers mailing l

[COMMITTERS] pgsql: One more hack to see if we can get the cygwin machines building

2008-11-14 Thread Tom Lane
Log Message: --- One more hack to see if we can get the cygwin machines building again. This continues the saga of trying to get PGDLLIMPORT to work in pg_crc.h in both backend and frontend environments. Modified Files: -- pgsql/src/bin/pg_resetxlog: pg_resetxlog.c

[COMMITTERS] pgsql: Exclude contrib/intagg from the list of MSVC project files to be

2008-11-14 Thread Magnus Hagander
Log Message: --- Exclude contrib/intagg from the list of MSVC project files to be generated, since it's now just a SQL module and no C code. Modified Files: -- pgsql/src/tools/msvc: Mkvcbuild.pm (r1.31 -> r1.32) (http://anoncvs.postgresql.org/cvsweb.cgi/pgs

[COMMITTERS] pgsql: Document a gotcha that happens on Windows when using libpq's new

2008-11-14 Thread Tom Lane
Log Message: --- Document a gotcha that happens on Windows when using libpq's new event procedure support: it's possible to get confused because exported procedures have two different addresses. Per Andrew Chernow. Modified Files: -- pgsql/doc/src/sgml: libpq.sgml