Re: [PATCHES] [BUGS] BUG #3969: pg_ctl cannot detect server startup

2008-02-20 Thread Tom Lane
ITAGAKI Takahiro <[EMAIL PROTECTED]> writes: > I found this bug comes from the definition of WHITESPACE > characters in pg_ctl.c. WHITESPACE is defined as folows: >#define WHITESPACE "\f\n\r\t\v" > In fact, WHITESPACE does not contain whilespace (0x20) :-( Ooops :-( > I attach a patch to fix

Re: [PATCHES] [BUGS] BUG #3969: pg_ctl cannot detect server startup

2008-02-19 Thread ITAGAKI Takahiro
"ITAGAKI Takahiro" <[EMAIL PROTECTED]> wrote: > Bug reference: 3969 > Description:pg_ctl cannot detect server startup > Details: > pg_ctl -w -o "-p 5432 -c max_connections=100" start > waits for server startup forever and timeout, > but server has successfully started actually. I f