[COMMITTERS] npgsql - Npgsql2: Added a fix for caseinsensitive parameter names in

2010-01-10 Thread User Fxjr
Log Message: --- Added a fix for caseinsensitive parameter names in query strings. Thanks Antonio Leiva for the patch! Added test case for this bug. Also added a pending testcase for NpgsqlInet types returned from NpgsqlDataReader.GetValue(). This test is not working yet because of pe

[COMMITTERS] pgsql: Some trivial adjustments in comments for struct RelationData.

2010-01-10 Thread Tom Lane
Log Message: --- Some trivial adjustments in comments for struct RelationData. Modified Files: -- pgsql/src/include/utils: rel.h (r1.118 -> r1.119) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/rel.h?r1=1.118&r2=1.119) -- Sent via pgsq

[COMMITTERS] pgsql: Remove unnecessary use of temp file.

2010-01-10 Thread Tom Lane
Log Message: --- Remove unnecessary use of temp file. Tim Bunce Modified Files: -- pgsql/src/pl/plperl: GNUmakefile (r1.40 -> r1.41) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plperl/GNUmakefile?r1=1.40&r2=1.41) -- Sent via pgsql-committers m

Re: [COMMITTERS] pgsql: Also update ChangerLog file.

2010-01-10 Thread David Fetter
On Sat, Jan 09, 2010 at 01:06:47PM -0500, Robert Haas wrote: > On Fri, Jan 8, 2010 at 4:57 PM, Michael Meskes wrote: > > On Fri, Jan 08, 2010 at 10:08:38AM -0800, David Fetter wrote: > >> This is *seriously* unhelpful.  What in this file did you change, > >> and what possessed you not to describe

[COMMITTERS] pgsql: Improve plpgsql parsing to report "foo is not a known variable",

2010-01-10 Thread Tom Lane
Log Message: --- Improve plpgsql parsing to report "foo is not a known variable", rather than a generic syntax error, when seeing "foo := something" and foo isn't recognized. This buys back most of the helpfulness discarded in my previous patch by not throwing errors when a qualified name a

[COMMITTERS] pgsql: Improve plpgsql's handling of record field references by forcing

2010-01-10 Thread Tom Lane
Log Message: --- Improve plpgsql's handling of record field references by forcing all potential field references in SQL expressions to have RECFIELD datum-array entries at parse time. If it turns out that the reference is actually to a SQL column, the RECFIELD entry is useless, but it cost

[COMMITTERS] pgsql: Docs for behaviour change of drop database during Hot Standby

2010-01-10 Thread Simon Riggs
Log Message: --- Docs for behaviour change of drop database during Hot Standby Adding missing docs for previous Hot Standby patch. Modified Files: -- pgsql/doc/src/sgml: backup.sgml (r2.133 -> r2.134) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src

[COMMITTERS] pgsql: Update Windows installation notes.

2010-01-10 Thread Magnus Hagander
Log Message: --- Update Windows installation notes. pginstaller isn't used anymore, in favor of the one-click installers. Make it clear that we support Windows 2000 and newer with the native port, instead of first saying we support NT4 and then saying we don't. Tags: REL8_4_STABLE M

[COMMITTERS] pgsql: Update Windows installation notes.

2010-01-10 Thread Magnus Hagander
Log Message: --- Update Windows installation notes. pginstaller isn't used anymore, in favor of the one-click installers. Make it clear that we support Windows 2000 and newer with the native port, instead of first saying we support NT4 and then saying we don't. Modified Files: ---

[COMMITTERS] pgsql: During Hot Standby, fix drop database when sessions idle.

2010-01-10 Thread Simon Riggs
Log Message: --- During Hot Standby, fix drop database when sessions idle. Previously we only cancelled sessions that were in-transaction. Simple fix is to just cancel all sessions without waiting. Doing it this way avoids complicating common code paths, which would not be worth the troubl

[COMMITTERS] pgsql: Create typedef pgsocket for storing socket descriptors.

2010-01-10 Thread Magnus Hagander
Log Message: --- Create typedef pgsocket for storing socket descriptors. This silences some warnings on Win64. Not using the proper SOCKET datatype was actually wrong on Win32 as well, but didn't cause any warnings there. Also create define PGINVALID_SOCKET to indicate an invalid/non-exis