Add missing quotation mark.

This fix accidentally got left out of the previous commit.
This commit is contained in:
Robert Haas 2016-01-28 12:21:51 -05:00
parent 96198d94cb
commit 2f6b041f76
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}