1-- PostGIS - Spatial Types for PostgreSQL
2-- http://postgis.net
3--
4-- Copyright (C) 2012 Regina Obe <lr@pcorp.us>
5-- This is free software; you can redistribute and/or modify it under
6-- the terms of the GNU General Public Licence. See the COPYING file.
7--
8--
9-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
10-- These are functions where the argument names may have changed  --
11-- so have to be dropped before upgrade can happen for 9.0+ --
12-- argument names changed --
13-- we might want to take toTopoGeom one out before release since
14-- I don't think too many people installed the bad name
15DROP FUNCTION IF EXISTS topology.toTopoGeom(Geometry, varchar, int, float8);
16
17-- used to be in public, will now be moved to topology
18DROP FUNCTION IF EXISTS postgis_topology_scripts_installed();
19
20-- Removed in 2.2.0 when topology API moved to liblwgeom
21DROP FUNCTION IF EXISTS topology._ST_RemEdgeCheck(varchar, integer, integer, integer, integer);
22DROP FUNCTION IF EXISTS topology._ST_AddFaceSplit(varchar, integer, integer, boolean);
23
24-- Added optional bbox parameter in 3.2.0
25DROP FUNCTION IF EXISTS topology.validatetopology(varchar);
26
27-- Merged the two function into one with both allowEdgeSplitting and setContainingFace parameters
28-- being optional (3.2.0)
29DROP FUNCTION IF EXISTS topology.AddNode(varchar, geometry);
30DROP FUNCTION IF EXISTS topology.AddNode(varchar, geometry, boolean, boolean);
31