mylog() + qlog() implementation

Поиск
Список
Период
Сортировка
От Kristis Makris
Тема mylog() + qlog() implementation
Дата
Msg-id 1020787292.30031.6.camel@leonidas
обсуждение исходный текст
Ответы Re: mylog() + qlog() implementation  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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

Вложения

В списке pgsql-odbc по дате отправления:

Предыдущее
От: Hiroshi Inoue
Дата:
Сообщение: Re: Dignostics?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: mylog() + qlog() implementation