]> granicus.if.org Git - postgis/commitdiff
Drop ST_Neighborhood variants due to output datatype changes
authorBborie Park <bkpark at ucdavis.edu>
Tue, 22 May 2012 17:05:51 +0000 (17:05 +0000)
committerBborie Park <bkpark at ucdavis.edu>
Tue, 22 May 2012 17:05:51 +0000 (17:05 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@9790 b70326c6-7e19-0410-871a-916f4a2858ee

raster/rt_pg/rtpostgis_drop.sql.in.c

index 0fe68a0054d80813b9c7d490a623a6f63705184c..2a2c49d68c2b2c5ec238a1dca27fd2c4124a1130 100644 (file)
@@ -6,7 +6,7 @@
 -- http://trac.osgeo.org/postgis/wiki/WKTRaster
 --
 -- Copyright (C) 2011 Regina Obe <lr@pcorp.us>
--- Copyright (C) 2011 Regents of the University of California
+-- Copyright (C) 2011-2012 Regents of the University of California
 --   <bkpark@ucdavis.edu>
 --
 -- This is free software; you can redistribute and/or modify it under
@@ -317,6 +317,11 @@ 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);
+DROP FUNCTION IF EXISTS _st_dumpaswktpolygons(raster, integer);
 DROP TYPE IF EXISTS wktgeomval;
 
+-- refactored functions
+DROP FUNCTION IF EXISTS st_neighborhood(raster, integer, integer, integer, integer, boolean);
+DROP FUNCTION IF EXISTS st_neighborhood(raster, integer, integer, integer, boolean);
+DROP FUNCTION IF EXISTS st_neighborhood(raster, integer, geometry, integer, boolean);
+DROP FUNCTION IF EXISTS st_neighborhood(raster, geometry, integer, boolean);