Reputation: 645
I can't create extension in my db. throws a error that says
CREATE EXTENSION postgis;
ERROR: syntax error at or near "PARALLEL"
Position: 2445
Is there any solution for this issue ?
PostgreSQL version 9.6.
PostGis version 2.3.
Thanks !
Upvotes: 5
Views: 1255
Reputation: 1
No one could possibly debug this without knowing a lot more information, but it's either
Connect to the database that you ran CREATE EXTENSION
on, and run this
SELECT version();
My assumption is that you're not on a 9.6 server, and that you're connecting to some earlier version of PostgreSQL. PARALLEL was new with 9.6.
Upvotes: 2