Re: [PATCH] Log crashed backend's query (activity string) - Mailing list pgsql-hackers

From Marti Raudsepp
Subject Re: [PATCH] Log crashed backend's query (activity string)
Date
Msg-id CABRT9RDcJhKfw8shbO9QdHqAFC6fqcLyXXcmjx4CdFnntEBsLQ@mail.gmail.com
Whole thread Raw
In response to Re: [PATCH] Log crashed backend's query (activity string)  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: [PATCH] Log crashed backend's query (activity string)
List pgsql-hackers
On Thu, Sep 8, 2011 at 03:22, Robert Haas <robertmhaas@gmail.com> wrote:
> On Wed, Sep 7, 2011 at 5:24 PM, Alvaro Herrera
> <alvherre@commandprompt.com> wrote:
>> I remember we had bugs whereby an encoding conversion would fail,
>> leading to elog trying to report this problem, but this attempt would
>> also incur a conversion step, failing recursively until elog's stack got
>> full.  I'm not saying this is impossible to solve, just something to
>> keep in mind.

Looking at elog.c, this only seems to apply to messages sent to the
client from a backend connection. No conversion is done for log
messages.

> Can we do something like: pass through ASCII characters unchanged, and
> output anything with the high-bit set as \x<hexdigit><hexdigit>?  That
> might be garbled in some cases, but the goal here is not perfection.
> We're just trying to give the admin (or PostgreSQL-guru-for-hire) a
> clue where to start looking for the problem.

Or we might just replace them with '?'. This has the advantage of not
expanding query length 4x if it does happen to be corrupted. The vast
majority of queries are ASCII-only anyway.

Regards,
Marti


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: Patch to improve reliability of postgresql on linux nfs
Next
From: Fujii Masao
Date:
Subject: unite recovery.conf and postgresql.conf