From: Regina Obe Date: Fri, 2 Mar 2012 14:36:33 +0000 (+0000) Subject: #1630 Add missing permutations of st_clip that exist in older versions so trimraster... X-Git-Tag: 2.0.0beta2~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a7f2274597d6fe424537cf08830db9a6387ebe3;p=postgis #1630 Add missing permutations of st_clip that exist in older versions so trimraster can be renamed to crop git-svn-id: http://svn.osgeo.org/postgis/trunk@9384 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 48f950286..0fe68a005 100644 --- a/raster/rt_pg/rtpostgis_drop.sql.in.c +++ b/raster/rt_pg/rtpostgis_drop.sql.in.c @@ -309,8 +309,12 @@ DROP FUNCTION IF EXISTS st_intersection(raster, int, geometry, text, regprocedur DROP FUNCTION IF EXISTS st_intersection(raster, int, geometry, regprocedure); DROP FUNCTION IF EXISTS st_intersection(raster, geometry, text, regprocedure); DROP FUNCTION IF EXISTS st_intersection(raster, geometry, regprocedure); +DROP FUNCTION IF EXISTS st_clip(raster, integer, geometry, boolean); DROP FUNCTION IF EXISTS st_clip(raster, geometry, float8, boolean); +DROP FUNCTION IF EXISTS st_clip(raster, geometry, boolean); DROP FUNCTION IF EXISTS st_clip(raster, int, geometry, float8, boolean); +DROP FUNCTION IF EXISTS st_clip(raster, geometry, float8[], boolean); +DROP FUNCTION IF EXISTS st_clip(raster, integer, geometry, float8[], boolean); -- refactoring of functions DROP FUNCTION IF EXISTS _st_dumpaswktpolygons(rast raster, band integer);