[COMMITTERS] npgsql - Npgsql: 2006-08-04 Josh Cooley <[EMAIL PROTECTED]>

2006-08-04 Thread User Jbcooley
Log Message: --- 2006-08-04 Josh Cooley <[EMAIL PROTECTED]> * NpgsqlClosedState.cs: Changed the synchronization mechanism for asynchronous socket connections. This prevents a race condition that allows an unopened socket to be passed to a NetworkStream. See thread at http://pgfou

[COMMITTERS] pgsql: Fix references to the Options section in the pgcrypto

2006-08-04 Thread Neil Conway
Log Message: --- Fix references to the Options section in the pgcrypto documentation. Patch from Michael Fuhr. Modified Files: -- pgsql/contrib/pgcrypto: README.pgcrypto (r1.16 -> r1.17) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pgcrypto/REA

[COMMITTERS] pgsql: Fix references to the Options section in the pgcrypto

2006-08-04 Thread Neil Conway
Log Message: --- Fix references to the Options section in the pgcrypto documentation. Patch from Michael Fuhr. Tags: REL8_1_STABLE Modified Files: -- pgsql/contrib/pgcrypto: README.pgcrypto (r1.14 -> r1.14.2.1) (http://developer.postgresql.org/cvsweb.

[COMMITTERS] pgsql: Extend relation_excluded_by_constraints() to check for mutually

2006-08-04 Thread Tom Lane
Log Message: --- Extend relation_excluded_by_constraints() to check for mutually contradictory WHERE-clauses applied to a relation. This makes the GUC variable constraint_exclusion rather inappropriately named, but I've refrained for the moment from renaming it. Per example from Martin Les

[COMMITTERS] pgsql: Teach predicate_refuted_by() how to do proofs involving

2006-08-04 Thread Tom Lane
Log Message: --- Teach predicate_refuted_by() how to do proofs involving NOT-clauses. This doesn't matter too much for ordinary NOTs, since prepqual.c does its best to get rid of those, but it helps with IS NOT TRUE clauses which the rule rewriter likes to insert. Per example from Martin L

[COMMITTERS] pgsql: Add some blank lines for formatting.

2006-08-04 Thread Bruce Momjian
Log Message: --- Add some blank lines for formatting. Modified Files: -- pgsql/src/interfaces/libpq: fe-exec.c (r1.188 -> r1.189) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/fe-exec.c.diff?r1=1.188&r2=1.189) -

[COMMITTERS] pgsql: Fix domain_in() bug exhibited by Darcy Buskermolen.

2006-08-04 Thread Tom Lane
Log Message: --- Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EState that's shorter-lived than the expression state being evaluated in it really doesn't work :-( --- we end up with fn_extra caches getting deleted while still in use. Rather than abandon the notion of

[COMMITTERS] edb-debugger - workstation: Adding tracer and profiler plugins

2006-08-04 Thread User Korryd
Log Message: --- Adding tracer and profiler plugins Added Files: --- workstation/plugins: Makefile (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/edb-debugger/workstation/plugins/Makefile?rev=1.1&content-type=text/x-cvsweb-markup) README (r1.1)

[COMMITTERS] pgsql: #ifdef fix for MSVC builds of libpq.

2006-08-04 Thread Bruce Momjian
Log Message: --- #ifdef fix for MSVC builds of libpq. Hiroshi Saito Modified Files: -- pgsql/src/interfaces/libpq: libpq-int.h (r1.113 -> r1.114) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/libpq-int.h.diff?r1=1.113&r2=1.114) --

[COMMITTERS] pgsql: Improve logging of protocol-level prepared statements.

2006-08-04 Thread Bruce Momjian
Log Message: --- Improve logging of protocol-level prepared statements. Modified Files: -- pgsql/src/backend/tcop: postgres.c (r1.493 -> r1.494) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/tcop/postgres.c.diff?r1=1.493&r2=1.494) -

[COMMITTERS] pgsql: Fix bug in new pg_dump -T/-N handling that was dumping system

2006-08-04 Thread Bruce Momjian
Log Message: --- Fix bug in new pg_dump -T/-N handling that was dumping system schemas if these options were used before -n/-t. Modified Files: -- pgsql/src/bin/pg_dump: pg_dump.c (r1.445 -> r1.446) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/

[COMMITTERS] pgsql: Remove redeclaration of struct sqlca_t --- unnecessary and

2006-08-04 Thread Tom Lane
Log Message: --- Remove redeclaration of struct sqlca_t --- unnecessary and provokes warnings on some compilers. Modified Files: -- pgsql/src/interfaces/ecpg/include: ecpglib.h (r1.68 -> r1.69) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interface

[COMMITTERS] pgsql: Fix missing 'static' keywords --- some compilers gripe about

2006-08-04 Thread Tom Lane
Log Message: --- Fix missing 'static' keywords --- some compilers gripe about this. Modified Files: -- pgsql/src/backend/storage/lmgr: lwlock.c (r1.43 -> r1.44) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/lmgr/lwlock.c.diff?r1=1.43

[COMMITTERS] edb-debugger - workstation: New Directory

2006-08-04 Thread User Korryd
Update of /cvsroot/edb-debugger/workstation/plugins In directory pgfoundry.org:/tmp/cvs-serv74384/plugins Log Message: Directory /cvsroot/edb-debugger/workstation/plugins added to the repository ---(end of broadcast)--- TIP 2: Don't 'kill -9' the p

[COMMITTERS] pgsql: Fix inadequate quoting in test for AIX xlc.

2006-08-04 Thread Tom Lane
Log Message: --- Fix inadequate quoting in test for AIX xlc. Modified Files: -- pgsql: configure.in (r1.470 -> r1.471) (http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.in.diff?r1=1.470&r2=1.471) configure (r1.499 -> r1.500) (http

[COMMITTERS] pgsql: 'make clean' must remove the create subdirectories results/ and

2006-08-04 Thread Tom Lane
Log Message: --- 'make clean' must remove the create subdirectories results/ and log/, not merely remove their contents. Else 'cvs update' complains. Modified Files: -- pgsql/src/interfaces/ecpg/test: Makefile (r1.55 -> r1.56) (http://developer.postgresql.

[COMMITTERS] pgsql: Teach eval_const_expressions to simplify BooleanTest nodes that

2006-08-04 Thread Tom Lane
Log Message: --- Teach eval_const_expressions to simplify BooleanTest nodes that have constant input. Seems worth doing because rule rewriter inserts IS NOT TRUE tests into WHERE clauses. Modified Files: -- pgsql/src/backend/optimizer/util: clauses.c (r1.216 -> r1.

[COMMITTERS] webtranslator - l10n: Second commit, uff! Lots of changes was added,

2006-08-04 Thread User Mario__
Log Message: --- Second commit, uff! Lots of changes was added, IMO you have to see the code :) (some...) - Now, There is one table only for the Users. It was a bit hard to do this - Lots of TODOs in views.py file added - "Revisor" now is able to see which are the translations

[COMMITTERS] pgsql: Regression test updates and fixes

2006-08-04 Thread Michael Meskes
Log Message: --- Regression test updates and fixes Modified Files: -- pgsql/src/interfaces/ecpg: ChangeLog (r1.316 -> r1.317) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ChangeLog.diff?r1=1.316&r2=1.317) Makefile (r1.18 ->