From: Regina Obe Date: Wed, 29 Feb 2012 09:00:10 +0000 (+0000) Subject: #1630: Swap the order of dropping - you have to drop the function first before the... X-Git-Tag: 2.0.0beta1~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3bb5d43a84d19d3a43b1c840fe03cfa704eca1db;p=postgis #1630: Swap the order of dropping - you have to drop the function first before the type git-svn-id: http://svn.osgeo.org/postgis/trunk@9342 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/raster/rt_pg/rtpostgis_drop.sql.in.c b/raster/rt_pg/rtpostgis_drop.sql.in.c index e041a7c32..8b260dbea 100644 --- a/raster/rt_pg/rtpostgis_drop.sql.in.c +++ b/raster/rt_pg/rtpostgis_drop.sql.in.c @@ -313,6 +313,6 @@ DROP FUNCTION IF EXISTS st_intersection(raster, geometry, regprocedure); DROP FUNCTION IF EXISTS st_clip(raster, geometry, float8, boolean); -- refactoring of functions -DROP TYPE IF EXISTS wktgeomval; DROP FUNCTION IF EXISTS _st_dumpaswktpolygons(rast raster, band integer); +DROP TYPE IF EXISTS wktgeomval;