Re: Patch to implement pg_current_logfile() function

From: "Karl O(dot) Pinc" <kop(at)meme(dot)com>
To: Gilles Darold <gilles(dot)darold(at)dalibo(dot)com>
Cc: Robert Haas <robertmhaas(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Patch to implement pg_current_logfile() function
Date: 2016-12-13 16:04:44
Message-ID: 20161213100444.6c0d3867@slate.meme.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi Gilles,

I don't plan to be able to get back to this patch until late
this week or early next week. My plan is to then go though
the whole thing and fix everything I can find. If we're both
working at the same time this could lead to wasted effort
so I will write as soon as I start work and if you are working
at the same time I'll send smaller hunks.

By the by, my last email contained some stupidity in it's
code suggestion because it is structured like:

while
if (...)
do something;
else
break;
do more...;

Stupid to have an if/else construct.

while
if (!...)
break;
do something;
do more...;

Is cleaner. Apologies if my coding out loud is confusing things.
I'll fix this in the next go-round if you don't get to it first.

Regards,

Karl <kop(at)meme(dot)com>
Free Software: "You don't pay back, you pay forward."
-- Robert A. Heinlein

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Ashutosh Sharma 2016-12-13 16:14:05 Re: Hang in pldebugger after git commit : 98a64d0
Previous Message Ashutosh Sharma 2016-12-13 16:04:21 Re: Hang in pldebugger after git commit : 98a64d0