[COMMITTERS] pgsql: Remove all traces that suggest that a non-Bison yacc might be

2008-08-29 Thread Peter Eisentraut
Log Message: --- Remove all traces that suggest that a non-Bison yacc might be supported, and change build system to use only Bison. Simplify build rules, make file names uniform. Don't build the token table header file where it is not needed. Modified Files: -- pgsql:

[COMMITTERS] pgsql: Document that \t and \x are now settable.

2008-08-29 Thread Alvaro Herrera
Log Message: --- Document that \t and \x are now settable. Modified Files: -- pgsql/src/bin/psql: help.c (r1.129 -> r1.130) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/help.c?r1=1.129&r2=1.130) -- Sent via pgsql-committers mailing list (p

[COMMITTERS] pgsql: Suppress gcc warning about possibly-uninitialized variable.

2008-08-29 Thread Tom Lane
Log Message: --- Suppress gcc warning about possibly-uninitialized variable. It's not clear to me why I'd not seen this message before --- on F-9 it seems to only happen if Asserts are disabled, which ought to be irrelevant. Maybe that affects a decision whether to inline get_ten(), which

[COMMITTERS] pgsql: Fix bug in original implementation of xmlserialize(): if user

2008-08-29 Thread Tom Lane
Log Message: --- Fix bug in original implementation of xmlserialize(): if user specifies a target type that isn't acceptable, the code failed to raise the proper error. The result instead was to return a NULL expression tree, which in a quick test led to a 'cache lookup failed for type 0'

[COMMITTERS] pgsql: Fixup pg_dumpall adding --lock-wait-timeout, to match pg_dump.

2008-08-29 Thread Alvaro Herrera
Log Message: --- Fixup pg_dumpall adding --lock-wait-timeout, to match pg_dump. David Gould Modified Files: -- pgsql/doc/src/sgml/ref: pg_dumpall.sgml (r1.72 -> r1.73) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/pg_dumpall.sgml?r1=1.72

[COMMITTERS] npgsql - Npgsql2: [#1010415] Stream seek error on close.

2008-08-29 Thread User Fxjr
Log Message: --- [#1010415] Stream seek error on close. Fix a problem where protocol was gonig out of sync and data was being left to be read on stream. Modified Files: -- Npgsql2/src/Npgsql: NpgsqlConnectorPool.cs (r1.10 -> r1.11) (http://cvs.pgfoundry.o

[COMMITTERS] pgsql: In GCC-based builds, use a better newNode() macro that relies on

2008-08-29 Thread Tom Lane
Log Message: --- In GCC-based builds, use a better newNode() macro that relies on GCC-specific syntax to avoid a useless store into a global variable. Per experimentation, this works better than my original thought of trying to push the code into an out-of-line subroutine. Modified Files:

[COMMITTERS] pgsql: Fix the raw-parsetree representation of star (as in SELECT * FROM

2008-08-29 Thread Tom Lane
Log Message: --- Fix the raw-parsetree representation of star (as in SELECT * FROM or SELECT foo.*) so that it cannot be confused with a quoted identifier "*". Instead create a separate node type A_Star to represent this notation. Per pgsql-hackers discussion of 2007-Sep-27. Modified Files

[COMMITTERS] pgsql: Fix (hopefully) some oversights in recent Bison cleanup patch.

2008-08-29 Thread Tom Lane
Log Message: --- Fix (hopefully) some oversights in recent Bison cleanup patch. Per buildfarm results. Modified Files: -- pgsql/src/tools/msvc: clean.bat (r1.14 -> r1.15) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/tools/msvc/clean.bat?r1=1.14&r2=1.