[PATCHES] Tiny patch on print.c of psql

2005-01-21 Thread Jean-Paul Argudo
Hi all, This is my 1st patch ever in C :-)... I was just borried by a bad psql \H html output of an EXPLAIN because it didnt respected spaces sent from backend like: -> Sort -> Sort I just remarked in this print.c the case of a white space wasnt handled in the function escaping special caracter

Re: [PATCHES] [pgsql-hackers-win32] pg_autovacuum fails to start - 8.0 Release

2005-01-21 Thread Dave Page
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Page > Sent: 20 January 2005 15:29 > To: Harald Massa; [EMAIL PROTECTED] > Cc: Patches (PostgreSQL) > Subject: Re: [PATCHES] [pgsql-hackers-win32] pg_autovacuum > fails to start - 8.0 Release >

Re: [PATCHES] [pgsql-hackers-win32] pg_autovacuum fails to start - 8.0 Release

2005-01-21 Thread Harald Massa
Dave, > [access denied] > > I see that message if the service user cannot access the executable - in > my case, when I tried running it from my development directory, which > the service user has no access to. When I moved the file to C:\Program > Files\PostgreSQL\8.0\bin, it worked perfectly. >

Re: [PATCHES] [pgsql-hackers-win32] 300 seconds in less than 1 second with pg_autovacuum

2005-01-21 Thread Dave Page
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Dave Page > Sent: 21 January 2005 13:20 > To: Harald Massa; [EMAIL PROTECTED] > Subject: Re: [pgsql-hackers-win32] 300 seconds in less than 1 > second with pg_autovacuum > > > > > -Origin

Re: [PATCHES] [pgsql-hackers-win32] 300 seconds in less than 1 second with pg_autovacuum

2005-01-21 Thread Andrew Dunstan
Dave Page said: > >> >> Hmm: >> >> Windows: >> >> VOID Sleep(DWORD dwMilliseconds); >> >> Unix: >> >> unsigned int sleep(unsigned int seconds); >> >> D'oh! >> >> Patch coming up > We should not be using either of these, should we? pg_usleep() is platform independent. cheers andrew --

Re: [PATCHES] [pgsql-hackers-win32] 300 seconds in less than 1 second with pg_autovacuum

2005-01-21 Thread Dave Page
> -Original Message- > From: Andrew Dunstan [mailto:[EMAIL PROTECTED] > Sent: 21 January 2005 14:01 > To: Dave Page > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > pgsql-patches@postgresql.org > Subject: Re: [PATCHES] [pgsql-hackers-win32] 300 seconds in > less than 1 second with pg_aut

[PATCHES] pg_autovacuum/Win32 Fixes

2005-01-21 Thread Dave Page
Theis patch supercedes *all* my earlier ones from today - apologies for the noise, clearly I need a beer or 3 and a few nights away from the laptop. The following fixes are included: - Dependency services may not be correctly registered when installing as a Windows Service. - The sleep time is

Re: [PATCHES] regression: pass with no default WITH OIDS

2005-01-21 Thread Neil Conway
Neil Conway wrote: This patch updates the regression tests to allow "make installcheck" to pass if "default_with_oids" is set to false. I took the approach of explicitly adding WITH OIDS to the CREATE TABLEs where necessary, rather than tweaking the default_with_oids GUC var. Applied to HEAD and RE