postgis/extensions
Paul Ramsey a4298ca293 Try an older bash syntax for robe?
git-svn-id: http://svn.osgeo.org/postgis/trunk@8759 b70326c6-7e19-0410-871a-916f4a2858ee
2012-01-11 02:27:41 +00:00
..
postgis Try an older bash syntax for robe? 2012-01-11 02:27:41 +00:00
postgis_topology Try an older bash syntax for robe? 2012-01-11 02:27:41 +00:00
postgis_extension_helper.sql put in svn Author Date Id Revision keywords 2012-01-09 20:17:59 +00:00
postgis_extension_helper_uninstall.sql put in svn Author Date Id Revision keywords 2012-01-09 20:17:59 +00:00
README now topology installs can get rid of error note. 2011-09-15 18:35:32 +00:00

These are extension modules for PostgreQL 9.1
to allow postgis modules
to be installed using standard PostgreSQL 9.1+
CREATE EXTENSION syntax

To use: first make install regular PostGIS
then do the below for each extension

make 
make install 

each

Then in your PostgreSQL database run
CREATE EXTENSION postgis_core;
CREATE EXTENSION postgis_raster;
CREATE EXTENSION postgis_topology;

Known issue:
To uninstall postgis_core you have to drop cascade the extension
which is not ideal but working out the cast issues.

The dependency logic should warn if you try
to install postgis_raster without postgis_core, 
but that seems to not be working right
thought drop cascade extension postgis_core drops
postgis_raster extension.