aboutsummaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw/connection.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-01-28 12:21:51 -0500
committerRobert Haas <rhaas@postgresql.org>2016-01-28 12:21:51 -0500
commit2f6b041f76e6de0fa2921131a23bda794ffb83bb (patch)
tree87cc44274733ebf1e3fe698375f067d848fa21f3 /contrib/postgres_fdw/connection.c
parent96198d94cb7adc664bda341842dc8db671d8be72 (diff)
downloadpostgresql-2f6b041f76e6de0fa2921131a23bda794ffb83bb.tar.gz
postgresql-2f6b041f76e6de0fa2921131a23bda794ffb83bb.zip
Add missing quotation mark.
This fix accidentally got left out of the previous commit.
Diffstat (limited to 'contrib/postgres_fdw/connection.c')
-rw-r--r--contrib/postgres_fdw/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c
index 6e664b0213a..3df86d1d0c0 100644
--- 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);
}