Skip to content

Commit 82d1e13

Browse files
committed
postgres_fdw: Fix unexpected reporting of empty message.
pgfdw_report_error() in postgres_fdw gets a message from PGresult or PGconn to report an error received from a remote server. Previously if it could get a message from neither of them, it reported empty message unexpectedly. The cause of this issue was that pgfdw_report_error() didn't handle properly the case where no message could be obtained and its local variable message_primary was set to '\0'. This commit improves pgfdw_report_error() so that it reports the message "could not obtain ..." when it gets no message and message_primary is set to '\0'. This is the same behavior as when message_primary is NULL. dblink_res_error() in dblink has the same issue, so this commit also improves it in the same way. Back-patch to all supported branches. Author: Fujii Masao Reviewed-by: Bharath Rupireddy Discussion: https://postgr.es/m/477c16c8-7ea4-20fc-38d5-ed3a77ed616c@oss.nttdata.com
1 parent a87c8c3 commit 82d1e13

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

contrib/dblink/dblink.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2758,7 +2758,8 @@ dblink_res_error(PGconn *conn, const char *conname, PGresult *res,
27582758

27592759
ereport(level,
27602760
(errcode(sqlstate),
2761-
message_primary ? errmsg_internal("%s", message_primary) :
2761+
(message_primary != NULL && message_primary[0] != '\0') ?
2762+
errmsg_internal("%s", message_primary) :
27622763
errmsg("could not obtain message string for remote error"),
27632764
message_detail ? errdetail_internal("%s", message_detail) : 0,
27642765
message_hint ? errhint("%s", message_hint) : 0,

contrib/postgres_fdw/connection.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,8 @@ pgfdw_report_error(int elevel, PGresult *res, PGconn *conn,
625625

626626
ereport(elevel,
627627
(errcode(sqlstate),
628-
message_primary ? errmsg_internal("%s", message_primary) :
628+
(message_primary != NULL && message_primary[0] != '\0') ?
629+
errmsg_internal("%s", message_primary) :
629630
errmsg("could not obtain message string for remote error"),
630631
message_detail ? errdetail_internal("%s", message_detail) : 0,
631632
message_hint ? errhint("%s", message_hint) : 0,

0 commit comments

Comments
 (0)