Re: [BUGS] BUG #7595: terminate process in an unusual way

2012-10-14 Thread Craig Ringer
On 10/15/2012 10:34 AM, kimseowoong wrote: > There was no any antivirus and no history install or uninstall antivirus > software Any custom file-system (anything not NTFS)? Security software? Does copying the data directory to another location complete without error? Could you have run out of d

Re: [BUGS] pg_ctl restart issue with relative paths

2012-10-14 Thread Tom Lane
Josh Kupershmidt writes: > On Sat, Oct 13, 2012 at 3:56 PM, Thom Brown wrote: >> I have noticed that, using pg_ctl, if you start Postgres using a >> relative path, then attempt to restart it from anywhere else, it >> fails. > Yeah, I was complaining about the same problem here: > http://archiv

Re: [BUGS] pg_ctl restart issue with relative paths

2012-10-14 Thread Josh Kupershmidt
On Sat, Oct 13, 2012 at 3:56 PM, Thom Brown wrote: > I have noticed that, using pg_ctl, if you start Postgres using a > relative path, then attempt to restart it from anywhere else, it > fails. Yeah, I was complaining about the same problem here: http://archives.postgresql.org/pgsql-bugs/2011-

Re: [BUGS] BUG #6510: A simple prompt is displayed using wrong charset

2012-10-14 Thread Tom Lane
Alexander Law writes: > +#ifdef WIN32 > + termin = fopen("CONIN$", "r"); > + termout = fopen("CONOUT$", "w+"); > +#else > termin = fopen(DEVTTY, "r"); > termout = fopen(DEVTTY, "w"); > +#endif > if (!termin || !termout My immediate reaction to this patch is "that's a ho