projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96198d9
)
Add missing quotation mark.
author
Robert Haas
<rhaas@postgresql.org>
Thu, 28 Jan 2016 17:21:51 +0000
(12:21 -0500)
committer
Robert Haas
<rhaas@postgresql.org>
Thu, 28 Jan 2016 17:21:51 +0000
(12:21 -0500)
This fix accidentally got left out of the previous commit.
contrib/postgres_fdw/connection.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/postgres_fdw/connection.c
b/contrib/postgres_fdw/connection.c
index 6e664b0213a4e9eff399dde092a983fc0570eac8..3df86d1d0c07bcf5d1a5f4b7b4c19b62960a520b 100644
(file)
--- a/
contrib/postgres_fdw/connection.c
+++ b/
contrib/postgres_fdw/connection.c
@@
-159,7
+159,7
@@
GetConnection(UserMapping *user, bool will_prep_stmt)
entry->have_error = false;
entry->conn = connect_pg_server(server, user);
- elog(DEBUG3, "new postgres_fdw connection %p for server \"%s\ (user mapping oid %d, userid %d)",
+ elog(DEBUG3, "new postgres_fdw connection %p for server \"%s\
"
(user mapping oid %d, userid %d)",
entry->conn, server->servername, user->umid, user->userid);
}