Guillaume Lelarge <guilla...@lelarge.info> writes: > Le ven. 18 oct. 2019 à 11:51, Patrick FICHE <patrick.fi...@aqsacom.com> a > écrit : >> Is it possible to execute a function located on a server accessed through >> Postgres fdw.
> It's probably easier to create a view on the remote server, and access it > as a foreign table on the local server. Yeah. Or if you really want to call a remote function by name, see dblink. postgres_fdw actively avoids doing that sort of thing. regards, tom lane