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 ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly