Re: [PATCHES] log_autovacuum

2007-04-18 Thread Simon Riggs
On Tue, 2007-04-17 at 21:45 -0400, Alvaro Herrera wrote: Alvaro Herrera wrote: Seems fair. Updated patch attached. If there are no further comments, I'll add some docs and apply it later. If autovacuum_vacuum_cost_delay is set to 20, my pitiful desktop system takes 8.4 seconds to

Re: [PATCHES] Suppress warnings on mingw

2007-04-18 Thread Magnus Hagander
On Mon, Apr 16, 2007 at 12:32:56PM +0900, ITAGAKI Takahiro wrote: This trivial patch fixes the following warnings on mingw. pthread-win32.c:20: warning: no previous prototype for 'pthread_self' Index: src/bin/pgevent/pgevent.def

Re: [PATCHES] Suppress warnings on mingw

2007-04-18 Thread ITAGAKI Takahiro
Magnus Hagander [EMAIL PROTECTED] wrote: EXPORTS - DllUnregisterServer ; - DllRegisterServer ; + DllUnregisterServer = [EMAIL PROTECTED] ; + DllRegisterServer = [EMAIL PROTECTED] ; This breaks the MSVC build, so not applied. Are you sure we should not just follow the

Re: [PATCHES] log_autovacuum

2007-04-18 Thread Alvaro Herrera
I applied this patch some hours ago but I haven't gotten the pgsql-committers mail and I don't see it in the archives either. Here is the evidence: http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml Is there a problem with pgsql-committers again? Attached is the patch I

Re: [PATCHES] scrollable cursor support without MOVE statement

2007-04-18 Thread Simon Riggs
On Mon, 2007-04-16 at 18:56 -0400, Tom Lane wrote: the default behavior is still the same Just had time to check this. You're right, my mistake. -- Simon Riggs EnterpriseDB http://www.enterprisedb.com ---(end of

[PATCHES] Load distributed checkpoint V4

2007-04-18 Thread ITAGAKI Takahiro
Here is an updated version of LDC patch (V4). - Refactor the codes to minimize the impact of changes. - Progress of checkpoint is controlled not only based on checkpoint_timeout but also checkpoint_segments. -- Now it works better with large checkpoint_timeout and small checkpoint_segments.