[COMMITTERS] npgsql - Npgsql2: Created helper scripts to build Npgsql with Nant from

2010-01-31 Thread User Fxjr
Log Message: --- Created helper scripts to build Npgsql with Nant from commandline. Just call build.sh or build.bat. Added Files: --- Npgsql2/src: build.bat (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/build.bat?rev=1.1&content-type=

[COMMITTERS] npgsql - Npgsql2: Fixed backslash for windows .bat :)

2010-01-31 Thread User Fxjr
Log Message: --- Fixed backslash for windows .bat :) Modified Files: -- Npgsql2/src: build.bat (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/build.bat?r1=1.1&r2=1.2) -- Sent via pgsql-committers mailing list (pgsql-commit

[COMMITTERS] pgsql: Fix race condition in win32 signal handling.

2010-01-31 Thread Magnus Hagander
Log Message: --- Fix race condition in win32 signal handling. There was a race condition where the receiving pipe could be closed by the child thread if the main thread was pre-empted before it got a chance to create a new one, and the dispatch thread ran to completion during that time. O

[COMMITTERS] pgsql: Fix race condition in win32 signal handling.

2010-01-31 Thread Magnus Hagander
Log Message: --- Fix race condition in win32 signal handling. There was a race condition where the receiving pipe could be closed by the child thread if the main thread was pre-empted before it got a chance to create a new one, and the dispatch thread ran to completion during that time. O

[COMMITTERS] pgsql: Fix race condition in win32 signal handling.

2010-01-31 Thread Magnus Hagander
Log Message: --- Fix race condition in win32 signal handling. There was a race condition where the receiving pipe could be closed by the child thread if the main thread was pre-empted before it got a chance to create a new one, and the dispatch thread ran to completion during that time. O

[COMMITTERS] pgsql: Fix race condition in win32 signal handling.

2010-01-31 Thread Magnus Hagander
Log Message: --- Fix race condition in win32 signal handling. There was a race condition where the receiving pipe could be closed by the child thread if the main thread was pre-empted before it got a chance to create a new one, and the dispatch thread ran to completion during that time. O

[COMMITTERS] pgsql: Remove now unnecessary loop around CallNamedPipe().

2010-01-31 Thread Magnus Hagander
Log Message: --- Remove now unnecessary loop around CallNamedPipe(). Radu Ilie Modified Files: -- pgsql/src/port: kill.c (r1.13 -> r1.14) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/port/kill.c?r1=1.13&r2=1.14) -- Sent via pgsql-committers mailin

[COMMITTERS] pgsql: Get rid of unportable use of socklen_t --- we have a configure

2010-01-31 Thread Tom Lane
Log Message: --- Get rid of unportable use of socklen_t --- we have a configure test for that, so use it. Modified Files: -- pgsql/src/backend/libpq: auth.c (r1.192 -> r1.193) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/libpq/auth.c?r1=1.192

[COMMITTERS] pgsql: Parenthesize this macro, just in case.

2010-01-31 Thread Tom Lane
Log Message: --- Parenthesize this macro, just in case. Modified Files: -- pgsql/src/include: port.h (r1.129 -> r1.130) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/port.h?r1=1.129&r2=1.130) -- Sent via pgsql-committers mailing list (pgsql-

[COMMITTERS] pgsql: Make checks for invalid pgStatSock use PGINVALID_SOCKET

2010-01-31 Thread Magnus Hagander
Log Message: --- Make checks for invalid pgStatSock use PGINVALID_SOCKET Modified Files: -- pgsql/src/backend/postmaster: pgstat.c (r1.199 -> r1.200) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/pgstat.c?r1=1.199&r2=1.200) -- Sen

[COMMITTERS] pgsql: Fix memory leak created by deferrable-index-constraints patches.

2010-01-31 Thread Tom Lane
Log Message: --- Fix memory leak created by deferrable-index-constraints patches. We need to free the OID list returned by ExecInsertIndexTuples to avoid a query-lifespan memory leak. When many rows require rechecking, this can be a significant leak --- it's even more than the space used

[COMMITTERS] pgsql: Detect early deadlock in Hot Standby when Startup is already

2010-01-31 Thread Simon Riggs
Log Message: --- Detect early deadlock in Hot Standby when Startup is already waiting. First stage of required deadlock detection to allow re-enabling max_standby_delay setting of -1, which is now essential in the absence of improved relation- specific conflict resoluton. Requested by Greg

[COMMITTERS] pgsphere - pgsphere: # Fixes some precission problems with small

2010-01-31 Thread User Richtej
Log Message: --- # Fixes some precission problems with small distances and objects # Fix build of polygon index keys # Fix negator of ellipse and polygon Modified Files: -- pgsphere: COPYRIGHT.pg_sphere (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvswe

[COMMITTERS] pgsphere - pgsphere: fix version

2010-01-31 Thread User Richtej
Log Message: --- fix version Modified Files: -- pgsphere: output.c (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgsphere/pgsphere/output.c?r1=1.3&r2=1.4) -- Sent via pgsql-committers mailing list ([email protected]) To make ch

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Change regexp engine's ccondissect/crevdissect routines to

2010-01-31 Thread Tom Lane
Log Message: --- Change regexp engine's ccondissect/crevdissect routines to perform DFA matching before recursing instead of after. The DFA match eliminates unworkable midpoint choices a lot faster than the recursive check, in most cases, so doing it first can speed things up; particularly

[COMMITTERS] pgsql: Add string_agg aggregate functions.

2010-01-31 Thread Takahiro Itagaki
Log Message: --- Add string_agg aggregate functions. The one argument version concatenates the input values into a string. The two argument version also does the same thing, but inserts delimiters between elements. Original patch by Pavel Stehule, reviewed by David E. Wheeler and me. Modi