Use %u not %d to print OIDs.

Oversight in commit 96198d94c.

Etsuro Fujita
This commit is contained in:
Tom Lane 2016-02-08 11:06:23 -05:00
parent 02292845ac
commit 63828969c8

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 %u, userid %u)",
entry->conn, server->servername, user->umid, user->userid);
}