diff options
author | Joe Conway <mail@joeconway.com> | 2016-12-21 15:48:15 -0800 |
---|---|---|
committer | Joe Conway <mail@joeconway.com> | 2016-12-21 15:51:57 -0800 |
commit | 28c9b6be7f76d64397bfa39a944915d4dbfd1994 (patch) | |
tree | d496c4eb123e2e66ae00d060d25c1bdcbdd28b3b /contrib/postgres_fdw/connection.c | |
parent | d5633af7b60ba70fb0e1713df69af6672d52e2cd (diff) | |
download | postgresql-28c9b6be7f76d64397bfa39a944915d4dbfd1994.tar.gz postgresql-28c9b6be7f76d64397bfa39a944915d4dbfd1994.zip |
Improve dblink error message when remote does not provide it
When dblink or postgres_fdw detects an error on the remote side of the
connection, it will try to construct a local error message as best it
can using libpq's PQresultErrorField(). When no primary message is
available, it was bailing out with an unhelpful "unknown error". Make
that message better and more style guide compliant. Per discussion
on hackers.
Backpatch to 9.2 except postgres_fdw which didn't exist before 9.3.
Discussion: https://postgr.es/m/19872.1482338965%40sss.pgh.pa.us
Diffstat (limited to 'contrib/postgres_fdw/connection.c')
-rw-r--r-- | contrib/postgres_fdw/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 1a1e5b5eae3..36e95157d49 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -495,7 +495,7 @@ pgfdw_report_error(int elevel, PGresult *res, PGconn *conn, ereport(elevel, (errcode(sqlstate), message_primary ? errmsg_internal("%s", message_primary) : - errmsg("unknown error"), + errmsg("could not obtain message string for remote error"), message_detail ? errdetail_internal("%s", message_detail) : 0, message_hint ? errhint("%s", message_hint) : 0, message_context ? errcontext("%s", message_context) : 0, |