From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Alvaro Herrera <alvherre(at)commandprompt(dot)com> |
Cc: | Michael Glaesemann <grzm(at)myrealbox(dot)com>, pgsql-patches(at)postgresql(dot)org, pgsql-interfaces(at)postgresql(dot)org |
Subject: | Re: [PATCHES] Proposed p.tch for error locations |
Date: | 2006-03-13 21:28:38 |
Message-ID: | 10458.1142285318@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces pgsql-patches |
I took another look at this and realized that for PQerrorMessage to emit
a cursor-pointer line, it'd be necessary for libpq to hold onto a copy
of the query last sent, which it doesn't do presently. This is annoying
for long queries --- in the worst case it could provoke out-of-memory
failures that don't occur now.
Plan B would be for psql to stop using PQerrorMessage and generate the
message report text from the message fields, omitting "at character N".
This would require duplicating a couple dozen lines from inside libpq.
It'd also mean that the report text gets built twice, once inside libpq
and once by psql, which is probably not such a big deal since error
messages ought not be a performance-critical path ... except there's
still that little question of overrunning memory.
Plan C is just to drop the "at character N" string from what
PQerrorMessage generates. We could make this configurable (maybe via
additional PGVerbosity values), or just not worry about whether it's
important.
Thoughts?
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Fangbing Wu | 2006-03-14 01:25:46 | Inherits and triggers |
Previous Message | Milen Dzhumerov | 2006-03-13 18:27:38 | Compiling/Linking on win32 |
From | Date | Subject | |
---|---|---|---|
Next Message | Christopher Kings-Lynne | 2006-03-14 02:53:19 | Re: [PATCHES] Proposed patch for error locations |
Previous Message | Neil Conway | 2006-03-13 18:05:19 | Re: Fix syntax errors in contrib uninstall scripts |