在我的 Mac 上安装 postgresql 和 postgis 后...
brew install postgres
brew install postgis
...我有一个 search_path,它只是设置为“postgis”。postgresql.conf 文件中的值被忽略或覆盖,默认情况下它甚至没有提到 postgis。另外,如果我运行诸如...之类的命令
ALTER USER ken SET search_path TO postgis,schema1,schema2;
ALTER DATABASE coneddb SET search_path TO postgis,shema1,schema2;
...然后在开始新连接时,路径仍设置为“postgis”。我错过了什么覆盖了我的 search_path 并且不允许我用用户或数据库特定的设置覆盖它?