Re: log bind parameter values on error
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Alvaro Herrera <alvherre@2ndquadrant.com>
Cc: Andres Freund <andres@anarazel.de>, Alexey Bashtanov <bashtanov@imap.cc>,
Peter Eisentraut <peter.eisentraut@2ndquadrant.com>,
PostgreSQL Hackers <pgsql-hackers@postgresql.org>
Date: 2019-12-09T19:12:02Z
Lists: pgsql-hackers
Alvaro Herrera <alvherre@2ndquadrant.com> writes: > So rather than mess with stringinfo.c at all I could just create > stringinfo_server.c and put this function there, compiled only for > backend ... Good point: if we make a separate source file then we don't have to solve any of the code-movement issues till somebody wants this functionality in frontend. But we should expect that that day might come eventually, so I don't much like "stringinfo_server.c" as the file name. It'll look pretty silly once we start compiling it for frontend. Perhaps "appendquoted.c" or some such? regards, tom lane
Commits
-
Emit parameter values during query bind/execute errors
- ba79cb5dc841 13.0 landed
-
Add backend-only appendStringInfoStringQuoted
- 6cafde1bd43f 13.0 landed