Re: [COMMITTERS] pgsql: Prevent shutdown in normal mode if online backup is running, and

2008-07-08 Thread Simon Riggs

On Wed, 2008-04-23 at 13:44 +, Magnus Hagander wrote:
> Log Message:
> ---
> Prevent shutdown in normal mode if online backup is running, and 
> have pg_ctl warn about this.
> 
> Cancel running online backups (by renaming the backup_label file, 
> thus rendering the backup useless) when shutting down in fast mode.

This TODO item is resolved by this commit:

"Fix server restart problem when the server was shutdown during a PITR
backup"

http://archives.postgresql.org/pgsql-hackers/2007-11/msg00800.php


-- 
 Simon Riggs   www.2ndQuadrant.com
 PostgreSQL Training, Services and Support


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix WAL file cutoff point calculation in pg_standby.

2008-07-08 Thread Heikki Linnakangas
Log Message:
---
Fix WAL file cutoff point calculation in pg_standby.

Patch by Simon Riggs, per bug report from Ferenc Felhoffer

Modified Files:
--
pgsql/contrib/pg_standby:
pg_standby.c (r1.12 -> r1.13)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_standby/pg_standby.c?r1=1.12&r2=1.13)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix WAL file cutoff point calculation in pg_standby.

2008-07-08 Thread Heikki Linnakangas
Log Message:
---
Fix WAL file cutoff point calculation in pg_standby.

Patch by Simon Riggs, per bug report from Ferenc Felhoffer

Tags:

REL8_3_STABLE

Modified Files:
--
pgsql/contrib/pg_standby:
pg_standby.c (r1.10.2.1 -> r1.10.2.2)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_standby/pg_standby.c?r1=1.10.2.1&r2=1.10.2.2)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgbouncer - pgbouncer: remove extra argument for SBuf callback

2008-07-08 Thread User Mkz
Log Message:
---
remove extra argument for SBuf callback

conserves memory and conforms more with general coding style.

plus few cleanups

Modified Files:
--
pgbouncer/include:
client.h (r1.2 -> r1.3)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/include/client.h.diff?r1=1.2&r2=1.3)
sbuf.h (r1.10 -> r1.11)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/include/sbuf.h.diff?r1=1.10&r2=1.11)
server.h (r1.2 -> r1.3)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/include/server.h.diff?r1=1.2&r2=1.3)
pgbouncer/src:
client.c (r1.22 -> r1.23)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/client.c.diff?r1=1.22&r2=1.23)
objects.c (r1.46 -> r1.47)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/objects.c.diff?r1=1.46&r2=1.47)
sbuf.c (r1.31 -> r1.32)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/sbuf.c.diff?r1=1.31&r2=1.32)
server.c (r1.27 -> r1.28)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/server.c.diff?r1=1.27&r2=1.28)
takeover.c (r1.14 -> r1.15)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/takeover.c.diff?r1=1.14&r2=1.15)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix performance bug in write_syslog(): the code to preferentially

2008-07-08 Thread Tom Lane
Log Message:
---
Fix performance bug in write_syslog(): the code to preferentially break the
log message at newlines cost O(N^2) for very long messages with few or no
newlines.  For messages in the megabyte range this became the dominant cost.
Per gripe from Achilleas Mantzios.

Patch all the way back, since this is a safe change with no portability
risks.  I am also thinking of increasing PG_SYSLOG_LIMIT, but that should
be done separately.

Modified Files:
--
pgsql/src/backend/utils/error:
elog.c (r1.203 -> r1.204)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.203&r2=1.204)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix performance bug in write_syslog(): the code to preferentially

2008-07-08 Thread Tom Lane
Log Message:
---
Fix performance bug in write_syslog(): the code to preferentially break the
log message at newlines cost O(N^2) for very long messages with few or no
newlines.  For messages in the megabyte range this became the dominant cost.
Per gripe from Achilleas Mantzios.

Patch all the way back, since this is a safe change with no portability
risks.  I am also thinking of increasing PG_SYSLOG_LIMIT, but that should
be done separately.

Tags:

REL8_3_STABLE

Modified Files:
--
pgsql/src/backend/utils/error:
elog.c (r1.201 -> r1.201.2.1)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.201&r2=1.201.2.1)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix performance bug in write_syslog(): the code to preferentially

2008-07-08 Thread Tom Lane
Log Message:
---
Fix performance bug in write_syslog(): the code to preferentially break the
log message at newlines cost O(N^2) for very long messages with few or no
newlines.  For messages in the megabyte range this became the dominant cost.
Per gripe from Achilleas Mantzios.

Patch all the way back, since this is a safe change with no portability
risks.  I am also thinking of increasing PG_SYSLOG_LIMIT, but that should
be done separately.

Tags:

REL8_2_STABLE

Modified Files:
--
pgsql/src/backend/utils/error:
elog.c (r1.178.2.4 -> r1.178.2.5)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.178.2.4&r2=1.178.2.5)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix performance bug in write_syslog(): the code to preferentially

2008-07-08 Thread Tom Lane
Log Message:
---
Fix performance bug in write_syslog(): the code to preferentially break the
log message at newlines cost O(N^2) for very long messages with few or no
newlines.  For messages in the megabyte range this became the dominant cost.
Per gripe from Achilleas Mantzios.

Patch all the way back, since this is a safe change with no portability
risks.  I am also thinking of increasing PG_SYSLOG_LIMIT, but that should
be done separately.

Tags:

REL8_1_STABLE

Modified Files:
--
pgsql/src/backend/utils/error:
elog.c (r1.167.2.5 -> r1.167.2.6)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.167.2.5&r2=1.167.2.6)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix performance bug in write_syslog(): the code to preferentially

2008-07-08 Thread Tom Lane
Log Message:
---
Fix performance bug in write_syslog(): the code to preferentially break the
log message at newlines cost O(N^2) for very long messages with few or no
newlines.  For messages in the megabyte range this became the dominant cost.
Per gripe from Achilleas Mantzios.

Patch all the way back, since this is a safe change with no portability
risks.  I am also thinking of increasing PG_SYSLOG_LIMIT, but that should
be done separately.

Tags:

REL8_0_STABLE

Modified Files:
--
pgsql/src/backend/utils/error:
elog.c (r1.155.4.7 -> r1.155.4.8)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.155.4.7&r2=1.155.4.8)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix performance bug in write_syslog(): the code to preferentially

2008-07-08 Thread Tom Lane
Log Message:
---
Fix performance bug in write_syslog(): the code to preferentially break the
log message at newlines cost O(N^2) for very long messages with few or no
newlines.  For messages in the megabyte range this became the dominant cost.
Per gripe from Achilleas Mantzios.

Patch all the way back, since this is a safe change with no portability
risks.  I am also thinking of increasing PG_SYSLOG_LIMIT, but that should
be done separately.

Tags:

REL7_4_STABLE

Modified Files:
--
pgsql/src/backend/utils/error:
elog.c (r1.125.2.3 -> r1.125.2.4)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.125.2.3&r2=1.125.2.4)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] npgsql - Npgsql2: Added support to not add type casts with prepared

2008-07-08 Thread User Fxjr
Log Message:
---

Added support to not add type casts with prepared statements. Previous patch 
only added this capability for non prepared queries. Now, types without casts 
have the type written as "unknown" so type inference is done by server backend.

Modified Files:
--
Npgsql2/src/Npgsql:
NpgsqlCommand.cs (r1.23 -> r1.24)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlCommand.cs.diff?r1=1.23&r2=1.24)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers