pgfdw_report_error_v1.patch
text/plain
Filename: pgfdw_report_error_v1.patch
Type: text/plain
Part: 0
Message:
Re: issue in pgfdw_report_error()?
Patch
Format: unified
Series: patch v1
| File | + | − |
|---|---|---|
| contrib/postgres_fdw/connection.c | 2 | 1 |
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c
index 4aff315b7c..5c0137220a 100644
--- a/contrib/postgres_fdw/connection.c
+++ b/contrib/postgres_fdw/connection.c
@@ -824,7 +824,8 @@ pgfdw_report_error(int elevel, PGresult *res, PGconn *conn,
ereport(elevel,
(errcode(sqlstate),
- message_primary ? errmsg_internal("%s", message_primary) :
+ (message_primary != NULL && message_primary[0] != '\0') ?
+ errmsg_internal("%s", message_primary) :
errmsg("could not obtain message string for remote error"),
message_detail ? errdetail_internal("%s", message_detail) : 0,
message_hint ? errhint("%s", message_hint) : 0,