pgsql: postgres_fdw: Save foreign server OID in connection cache entry. - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: postgres_fdw: Save foreign server OID in connection cache entry.
Date
Msg-id E1l0DxC-0002jt-Ii@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
postgres_fdw: Save foreign server OID in connection cache entry.

The foreign server OID stored in the connection cache entry is used as
a lookup key to directly get the server name.

Previously since the connection cache entry did not have the server OID,
postgres_fdw had to get the server OID at first from user mapping before
getting the server name. So if the corresponding user mapping was dropped,
postgres_fdw could raise the error "cache lookup failed for user mapping"
while looking up user mapping and fail to get the server name even though
the server had not been dropped yet.

Author: Bharath Rupireddy
Reviewed-by: Fujii Masao
Discussion: https://postgr.es/m/CALj2ACVRZPUB7ZwqLn-6DY8C_UmPs6084gSpHA92YBv++1AJXA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/5e5f4fcd89c082bba0239e8db1552834b4905c34

Modified Files
--------------
contrib/postgres_fdw/connection.c | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: pg_dump: label PUBLICATION TABLE ArchiveEntries with an owner.
Next
From: Michael Paquier
Date:
Subject: pgsql: Fix O(N^2) stat() calls when recycling WAL segments