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.

    columntypereferencesdescription
    fdwnamename Name of the foreign-data wrapper.
    fdwowneroidpg_authid.oidOwner of the foreign-data wrapper.
    fdwhandleroidpg_proc.oidA reference to a handler function that is responsible for supplying execution routines for the foreign-data wrapper. Zero if no handler is provided.
    fdwvalidatoroidpg_proc.oidA 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. Zero if no validator is provided.
    fdwaclaclitem[] Access privileges; see GRANT and REVOKE for details.
    fdwoptionstext[] Foreign-data wrapper-specific options, as “keyword=value” strings.

    Parent topic: System Catalogs Definitions