It is not a problem with your search_path
, it could be an issue with your schema permissions as described in the answer here. Check with \dn+
that the public
schema indicates permissions for the postgres
role, and if not, grant them with: GRANT ALL ON SCHEMA public TO public;