I created a foreign data wrapper table named
t_user
intomySchema
.IMPORT FOREIGN SCHEMA public LIMIT TO (t_user) FROM SERVER myServer INTO mySchema;
The
myServer
sidet_user
added some column, but the foreign table didn't update accordingly.I tried to delete the foreign table
t_user
, but it was used by my view and materialized viewt_user
, so the deletion failed.
Any ideas on how to update this table?