forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit5cb86a2
committed
postgres_fdw: Fix unexpected reporting of empty message.
pgfdw_report_error() in postgres_fdw gets a message from PGresult orPGconn to report an error received from a remote server. Previouslyif it could get a message from neither of them, it reported emptymessage unexpectedly. The cause of this issue was that pgfdw_report_error()didn't handle properly the case where no message could be obtainedand 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_primaryis 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 alsoimproves it in the same way.Back-patch to all supported branches.Author: Fujii MasaoReviewed-by: Bharath RupireddyDiscussion:https://postgr.es/m/477c16c8-7ea4-20fc-38d5-ed3a77ed616c@oss.nttdata.com1 parent4cd2928 commit5cb86a2
2 files changed
+4
-2
lines changedLines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2799 | 2799 |
| |
2800 | 2800 |
| |
2801 | 2801 |
| |
2802 |
| - | |
| 2802 | + | |
| 2803 | + | |
2803 | 2804 |
| |
2804 | 2805 |
| |
2805 | 2806 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
805 | 805 |
| |
806 | 806 |
| |
807 | 807 |
| |
808 |
| - | |
| 808 | + | |
| 809 | + | |
809 | 810 |
| |
810 | 811 |
| |
811 | 812 |
| |
|
0 commit comments
Comments
(0)