mylog() + qlog() implementation - Mailing list pgsql-odbc

From Kristis Makris
Subject mylog() + qlog() implementation
Date
Msg-id 1020787292.30031.6.camel@leonidas
Whole thread Raw
Responses Re: mylog() + qlog() implementation  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-odbc
Hello,

I noticed that in misc.c:mylog() (same goes for qlog()), the logfile is
opened as "w" or "wb" in the WIN32 case. I've also noticed that
sometimes my log files while testing get truncated if I open multiple
connections through the odbc driver, close them down, and then open some
more, while still using the same custom-build application without
exiting (thus generate_filename() picks up the same pid for it). Hiroshi
will probably need to verify this, otherwise it's all speculation.

Would it be possible to consider fopen()ing the mylog file as "a" and
"ab" in WIN32 for appending vs zeroing out the log file, as described in
the attached patch?

Thanks,
Kristis

Attachment

pgsql-odbc by date:

Previous
From: Hiroshi Inoue
Date:
Subject: Re: Dignostics?
Next
From: Tom Lane
Date:
Subject: Re: mylog() + qlog() implementation