From: Robert Haas Date: Thu, 28 Jan 2016 17:21:51 +0000 (-0500) Subject: Add missing quotation mark. X-Git-Tag: REL9_6_BETA1~806 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f6b041f76e6de0fa2921131a23bda794ffb83bb;p=postgresql Add missing quotation mark. This fix accidentally got left out of the previous commit. --- diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 6e664b0213..3df86d1d0c 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); }