web-dev-qa-db-ja.com

「PARALLEL」またはその近くでpostgis拡張構文エラーを作成する

Windowsのpostgresqlでpostgis拡張機能を有効にしようとすると、次のエラーが発生します。

「PARALLEL」またはその近くの構文エラー

私は探していましたが、このエラーのある人を見つけることができません。何か助けはありますか?

14
Jens de Bruijn

PostgreSQL 9.5をインストールしている間、バージョン9.6向けのPostGISを使用していました。これによりエラーが発生しました。

a_horse_with_no_name へのクレジット

6
Jens de Bruijn

同じエラーが発生し、古き良き再起動手順で解決しました。

# install or upgrade postgres and postgis
brew upgrade postgres
brew upgrade postgis

# drop extension in case of an update
DROP EXTENSION postgis

# restart postgres
pg_ctl -D /usr/local/var/postgres stop -s -m fast
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

# create extension
CREATE EXTENSION postgis

Postgresを再起動することが問題を解決するための重要なステップだったと思います。

5
baltendo
brew postgresql-upgrade-database

私はPostgresの古いバージョンを持っていました。これはosxの問題を解決しました。

0
piyer