CREATE SCHEMA is left out because uninstall_topology isn't getting
rid of it (to be fixed later)
git-svn-id: http://svn.osgeo.org/postgis/trunk@9557
b70326c6-7e19-0410-871a-
916f4a2858ee
-- Let people decide about that
-- DROP SCHEMA topology CASCADE;
+CREATE SCHEMA topology;
+
-- Doing everything outside of a transaction helps
-- upgrading in the best case.
--- BEGIN;
-
-CREATE SCHEMA topology;
+BEGIN;
--={ ----------------------------------------------------------------
-- POSTGIS-SPECIFIC block
AS _POSTGIS_SQL_SELECT_POSTGIS_SCRIPTS_VERSION
LANGUAGE 'sql' IMMUTABLE;
---COMMIT;
-- Make sure topology is in database search path --
SELECT topology.AddToSearchPath('topology');
+
+COMMIT;