[COMMITTERS] pgsql: revert prior patch to fsync directories until portability

2010-02-17 Thread Greg Stark
Log Message: --- revert prior patch to fsync directories until portability problems exposed by build farm can be sorted out Tags: REL8_1_STABLE Modified Files: -- pgsql/src/port: copydir.c (r1.16.2.2 -> r1.16.2.3) (http://anoncvs.postgresql.org/cvswe

Re: [COMMITTERS] pgsql: Stamp HEAD as 9.0devel, and update various places that were

2010-02-17 Thread Alvaro Herrera
Tom Lane wrote: > Log Message: > --- > Stamp HEAD as 9.0devel, and update various places that were referring to 8.5 > (hope I got 'em all). Per discussion, this release will be 9.0 not 8.5. Note that git managed to handle the rename of release-8.5.sgml to release-9.0.sgml very nicely: ht

Re: [COMMITTERS] pgsql: Stamp HEAD as 9.0devel, and update various places that were

2010-02-17 Thread Tom Lane
David Fetter writes: > On Wed, Feb 17, 2010 at 04:19:41AM +, Tom Lane wrote: >> Log Message: >> --- >> Stamp HEAD as 9.0devel, and update various places that were >> referring to 8.5 (hope I got 'em all). Per discussion, this release >> will be 9.0 not 8.5. > This patch fills in plac

[COMMITTERS] pgsql: Take care to reprocess an uncommitted notify message.

2010-02-17 Thread Tom Lane
Log Message: --- Take care to reprocess an uncommitted notify message. Oversight in my changes to cope with possible errors during message processing; spotted by Joachim Wieland. Modified Files: -- pgsql/src/backend/commands: async.c (r1.152 -> r1.153) (ht

Re: [COMMITTERS] pgsql: Stamp HEAD as 9.0devel, and update various places that were

2010-02-17 Thread David Fetter
On Wed, Feb 17, 2010 at 10:12:17AM -0500, Tom Lane wrote: > David Fetter writes: > > On Wed, Feb 17, 2010 at 04:19:41AM +, Tom Lane wrote: > >> Log Message: > >> --- > >> Stamp HEAD as 9.0devel, and update various places that were > >> referring to 8.5 (hope I got 'em all). Per discus

[COMMITTERS] npgsql - Npgsql2: Added VS.Net 2010 project file generated from vs.net

2010-02-17 Thread User Fxjr
Log Message: --- Added VS.Net 2010 project file generated from vs.net 2008 project file. Added Files: --- Npgsql2/src: Npgsql2010.csproj (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql2010.csproj?rev=1.1&content-type=text/x-cvswe

[COMMITTERS] npgsql - Npgsql2: Fixed a bug where a function which has a return type

2010-02-17 Thread User Fxjr
Log Message: --- Fixed a bug where a function which has a return type of record but already has the columnlist defined inside itself ( i.e.: functions with returns table clauses, see testreturnrecordresultset in the testcases) were being misinterpreted as needing a column list. Thanks J

[COMMITTERS] npgsql - Npgsql2: Added missing comments.

2010-02-17 Thread User Fxjr
Log Message: --- Added missing comments. Modified Files: -- Npgsql2/src/Npgsql: NpgsqlCommand.cs (r1.47 -> r1.48) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlCommand.cs?r1=1.47&r2=1.48) -- Sent via pgsql-committers mailin

[COMMITTERS] pgsql: Fix up pg_dump's treatment of large object ownership and ACLs.

2010-02-17 Thread Tom Lane
Log Message: --- Fix up pg_dump's treatment of large object ownership and ACLs. We now emit a separate archive entry for each BLOB, and use pg_dump's standard methods for dealing with its ownership, ACL if any, and comment if any. This means that switches like --no-owner and --no-privileg

[COMMITTERS] pgsql: Force READY portals into FAILED state when a transaction or

2010-02-17 Thread Tom Lane
Log Message: --- Force READY portals into FAILED state when a transaction or subtransaction is aborted, if they were created within the failed xact. This prevents ExecutorEnd from being run on them, which is a good idea because they may contain references to tables or other objects that no

[COMMITTERS] pgsql: Force READY portals into FAILED state when a transaction or

2010-02-17 Thread Tom Lane
Log Message: --- Force READY portals into FAILED state when a transaction or subtransaction is aborted, if they were created within the failed xact. This prevents ExecutorEnd from being run on them, which is a good idea because they may contain references to tables or other objects that no

[COMMITTERS] pgsql: Wordsmithing of HS and SR documentation, with some wording

2010-02-17 Thread Bruce Momjian
Log Message: --- Wordsmithing of HS and SR documentation, with some wording improvements from Erik Rijkers too. Modified Files: -- pgsql/doc/src/sgml: high-availability.sgml (r1.44 -> r1.45) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/high-

[COMMITTERS] pgsql: Add missing close tag.

2010-02-17 Thread Bruce Momjian
Log Message: --- Add missing close tag. Modified Files: -- pgsql/doc/src/sgml: high-availability.sgml (r1.45 -> r1.46) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/high-availability.sgml?r1=1.45&r2=1.46) -- Sent via pgsql-committers mailin

[COMMITTERS] pgsql: date_recv should accept infinities.

2010-02-17 Thread Takahiro Itagaki
Log Message: --- date_recv should accept infinities. Reported by James William Pye. Modified Files: -- pgsql/src/backend/utils/adt: date.c (r1.150 -> r1.151) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/date.c?r1=1.150&r2=1.151) -