-
Notifications
You must be signed in to change notification settings - Fork 468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixing issue with PostGIS topology extension #47
fixing issue with PostGIS topology extension #47
Conversation
environment variable DB_POSTGIS_TOPOLOGY controls creation of 'postgis_topology' extension _only_ when user selects PostGIS extension. refs sameersbn#44
Hi Sameer, sorry for creating another pull request but I am not sure how to 'fix' the existing one (and I have a very poor Internet connection right now). |
fixing issue with PostGIS topology extension
—Reply to this email directly or view it on GitHub. |
I am concerned about the upgrade path to take when the PostGIS version is updated. Right now it looks like the user will manually need to update as per these instructions http://postgis.net/docs/manual-2.1/postgis_installation.html#soft_upgrade_extensions. Is there is way that we can detect that a particular database is running an older version of the extension and upgrade it automatically? Or is this a bad idea and we should leave this to user which would mean that the user will need to keep a watch on the changelog of the image? In which case it might make sense to remove the My ultimate aim is to have minimal support requests. edit: one question I had was that I see PostGIS 2.2 is available. Any particular reason you chose 2.1? |
Hi Sameer, I think you are right with assuming that upgrading the PostGIS database There is a way to get the version of the PostGIS from the spatial-enabled csd=# select postgis_lib_version(); postgis_lib_version2.1.8 But even with this, the PostGIS manual is very clear: the data might be For me it would be great if I could have a quick way to start Docker Cheers, Łukasz Wiecheć Sameer Naik writes:
|
environment variable DB_POSTGIS_TOPOLOGY controls creation of
'postgis_topology' extension only when user selects PostGIS extension.
refs #44