我最近在 MacOSX Mojave 上使用 Homebrew 安装了 Postgres 11.3。我想使用 TimescaleDB 扩展数据库,也与 Homebrew 一起安装,但收到以下错误:
tutorial=# CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
ERROR: could not open extension control file "/Library/PostgreSQL/11/share/postgresql/extension/timescaledb.control": No such file or directory
看起来该命令希望 Postgres 安装在 /Library 中,但brew info postgres
说它位于/usr/local/Cellar/postgresql/11.3
. 有没有办法可以修改命令使用的路径或更改 Postgres 的安装位置?