[COMMITTERS] npgsql - Npgsql2: Added test based on forum post.

2009-04-02 Thread User Jbcooley
Log Message: --- Added test based on forum post. Modified Files: -- Npgsql2/testsuite/noninteractive/NUnit20: DataReaderTests.cs (r1.10 -> r1.11) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/testsuite/noninteractive/NUnit20/DataReaderTests.cs

[COMMITTERS] npgsql - Npgsql2: Fix missing cast from previous commit.

2009-04-02 Thread User Jbcooley
Log Message: --- Fix missing cast from previous commit. Modified Files: -- Npgsql2/src/Npgsql: NpgsqlPromotableSinglePhaseNotification.cs (r1.8 -> r1.9) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlPromotableSinglePhaseNotifi

[COMMITTERS] npgsql - Npgsql2: Fix resource manager lifetime.

2009-04-02 Thread User Jbcooley
Log Message: --- Fix resource manager lifetime. This improves System.Transaction support. Modified Files: -- Npgsql2/src/Npgsql: NpgsqlPromotableSinglePhaseNotification.cs (r1.7 -> r1.8) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsq

[COMMITTERS] pgsql: Document that Solaris can't use effective_io_concurrency because

2009-04-02 Thread Bruce Momjian
Log Message: --- Document that Solaris can't use effective_io_concurrency because of an ineffective posix_fadvise(). Modified Files: -- pgsql/doc/src/sgml: config.sgml (r1.213 -> r1.214) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sg

[COMMITTERS] pgsql: Refactor ExecProject and associated routines so that fast-path

2009-04-02 Thread Tom Lane
Log Message: --- Refactor ExecProject and associated routines so that fast-path code is used for simple Var targetlist entries all the time, even when there are other entries that are not simple Vars. Also, ensure that we prefetch attributes (with slot_getsomeattrs) for all Vars in the tar

[COMMITTERS] pgsql: Revert DTrace patch from Robert Lor

2009-04-02 Thread Bruce Momjian
Log Message: --- Revert DTrace patch from Robert Lor Modified Files: -- pgsql/src/backend/access/transam: slru.c (r1.46 -> r1.47) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/slru.c?r1=1.46&r2=1.47) pgsql/src/backend/execut

[COMMITTERS] pgsql: Minor code beautification/consolidation.

2009-04-02 Thread Tom Lane
Log Message: --- Minor code beautification/consolidation. Modified Files: -- pgsql/src/pl/plpgsql/src: pl_exec.c (r1.238 -> r1.239) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/pl_exec.c?r1=1.238&r2=1.239) -- Sent via pgsql-committer

[COMMITTERS] pgsql: Give a better error message when trying to change

2009-04-02 Thread Bruce Momjian
Log Message: --- Give a better error message when trying to change "effective_io_concurrency" on systems without posix_fadvise(). Modified Files: -- pgsql/src/backend/utils/misc: guc.c (r1.498 -> r1.499) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/b

[COMMITTERS] pgsql: Have PL/pgSQL FETCH set DIAGNOSTICS ROW_COUNT.

2009-04-02 Thread Bruce Momjian
Log Message: --- Have PL/pgSQL FETCH set DIAGNOSTICS ROW_COUNT. Andrew Gierth Modified Files: -- pgsql/doc/src/sgml: plpgsql.sgml (r1.138 -> r1.139) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/plpgsql.sgml?r1=1.138&r2=1.139) pgsql/src/

[COMMITTERS] pgsql: Add support for additional DTrace probes.

2009-04-02 Thread Bruce Momjian
Log Message: --- Add support for additional DTrace probes. Robert Lor Modified Files: -- pgsql/src/backend/access/transam: slru.c (r1.45 -> r1.46) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/slru.c?r1=1.45&r2=1.46) pgsql/

[COMMITTERS] pgsql: Fix memory allocation for output of hstore type.

2009-04-02 Thread Teodor Sigaev
Log Message: --- Fix memory allocation for output of hstore type. Per "maosen.zhang" report. Tags: REL8_2_STABLE Modified Files: -- pgsql/contrib/hstore: hstore_io.c (r1.5.2.1 -> r1.5.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/hstor

[COMMITTERS] pgsql: Fix memory allocation for output of hstore type.

2009-04-02 Thread Teodor Sigaev
Log Message: --- Fix memory allocation for output of hstore type. Per "maosen.zhang" report. Tags: REL8_3_STABLE Modified Files: -- pgsql/contrib/hstore: hstore_io.c (r1.7.2.1 -> r1.7.2.2) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/hstor

[COMMITTERS] pgsql: Fix memory allocation for output of hstore type.

2009-04-02 Thread Teodor Sigaev
Log Message: --- Fix memory allocation for output of hstore type. Per "maosen.zhang" report. Modified Files: -- pgsql/contrib/hstore: hstore_io.c (r1.9 -> r1.10) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/hstore/hstore_io.c?r1=1.9&r2=1.10) --

[COMMITTERS] pgsql: Do not show information_schema in \d* commands, unless 'S' or

2009-04-02 Thread Bruce Momjian
Log Message: --- Do not show information_schema in \d* commands, unless 'S' or pattern is specified. Martin Pihlak Modified Files: -- pgsql/src/bin/psql: describe.c (r1.204 -> r1.205) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/describe.c?

[COMMITTERS] pgsql: Fix SetClientEncoding() to maintain a cache of previously

2009-04-02 Thread Tom Lane
Log Message: --- Fix SetClientEncoding() to maintain a cache of previously selected encoding conversion functions. This allows transaction rollback to revert to a previous client_encoding setting without doing fresh catalog lookups. I believe that this explains and fixes the recent report

[COMMITTERS] pgsql: Change psql \d* display so 'S' _or_ a pattern include system

2009-04-02 Thread Bruce Momjian
Log Message: --- Change psql \d* display so 'S' _or_ a pattern include system objects. Modified Files: -- pgsql/doc/src/sgml/ref: psql-ref.sgml (r1.220 -> r1.221) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/psql-ref.sgml?r1=1.220&r2=1.2

[COMMITTERS] pglogparser - pglogparser: New Directory

2009-04-02 Thread User Kpierno
Update of /cvsroot/pglogparser/pglogparser/image In directory pgfoundry.org:/tmp/cvs-serv94363/image Log Message: Directory /cvsroot/pglogparser/pglogparser/image added to the repository -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscrip

[COMMITTERS] pglogparser - pglogparser: Initial checking to cvs

2009-04-02 Thread User Kpierno
Log Message: --- Initial checking to cvs Added Files: --- pglogparser: .project (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pglogparser/pglogparser/.project?rev=1.1&content-type=text/x-cvsweb-markup) logo.gif (r1.1) (http://cvs.pgfoundr

[COMMITTERS] pglogparser - pglogparser: New Directory

2009-04-02 Thread User Kpierno
Update of /cvsroot/pglogparser/pglogparser/dblogs In directory pgfoundry.org:/tmp/cvs-serv81550/dblogs Log Message: Directory /cvsroot/pglogparser/pglogparser/dblogs added to the repository -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subsc