diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-02-08 11:06:23 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-02-08 11:06:23 -0500 |
commit | 63828969c822449744e63b76bff993ccd1d3245e (patch) | |
tree | 51629e94ad8557c003d030d205f611d3b40b5058 /contrib/postgres_fdw/connection.c | |
parent | 02292845ac6d6ec09d79abf1dbb0538e14582743 (diff) | |
download | postgresql-63828969c822449744e63b76bff993ccd1d3245e.tar.gz postgresql-63828969c822449744e63b76bff993ccd1d3245e.zip |
Use %u not %d to print OIDs.
Oversight in commit 96198d94c.
Etsuro Fujita
Diffstat (limited to 'contrib/postgres_fdw/connection.c')
-rw-r--r-- | contrib/postgres_fdw/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 3df86d1d0c0..189f290cdf6 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 %u, userid %u)", entry->conn, server->servername, user->umid, user->userid); } |