Hello, I’m DocuDroid!
Submitting feedback
Thank you for rating our AI Search!
We would be grateful if you could share your thoughts so we can improve our AI Search for you and other readers.
GitHub

pg_foreign_data_wrapper

The system catalog table pg_foreign_data_wrapper stores foreign data wrapper definitions. A foreign data wrapper is a mechanism by which you access external data residing on foreign servers.

Column Type References Description

fdwname

name

 — 

Name of the foreign data wrapper

fdwowner

oid

pg_authid.oid

Owner of the foreign data wrapper

fdwhandler

oid

pg_proc.oid

A reference to a handler function that is responsible for supplying execution routines for the foreign data wrapper. 0 if no handler is provided

fdwvalidator

oid

pg_proc.oid

A reference to a validator function that is responsible for checking the validity of the options provided to the foreign data wrapper. This function also checks the options for foreign servers and user mappings using the foreign data wrapper. 0 if no validator is provided

fdwacl

aclitem[]

 — 

Access privileges (see Roles and privileges)

fdwoptions

text[]

 — 

Foreign data wrapper-specific options, as keyword=value strings