Reputation: 31
While trying to execute PostgreSQL extension in PostgreSQL 13
CREATE EXTENSION postgres_fdw;
I am getting an error
CREATE EXTENSION postgres_fdw "Could not open extension control file "/opt/pgsql13/share/extension/postgres_fdw.control": No such file or directory
Upvotes: 3
Views: 8041
Reputation: 1
I was able to fix the issue for tablefunc.control extension issue post installing the postgresql13-contrib package
Upvotes: -3