]> granicus.if.org Git - postgis/commitdiff
Minor cleanup of parameter names of ST_Intersection(raster, geometry)
authorBborie Park <bkpark at ucdavis.edu>
Tue, 7 Feb 2012 19:35:56 +0000 (19:35 +0000)
committerBborie Park <bkpark at ucdavis.edu>
Tue, 7 Feb 2012 19:35:56 +0000 (19:35 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@9071 b70326c6-7e19-0410-871a-916f4a2858ee

raster/rt_pg/rtpostgis.sql.in.c
raster/rt_pg/rtpostgis_drop.sql.in.c

index 094f0c2dbc3686b8dc84af44c6eaf61468aaf5dd..ea1614efec2933c46d3beb634e8e9aed14fbd17c 100644 (file)
@@ -3255,7 +3255,7 @@ CREATE OR REPLACE FUNCTION st_intersection(
 -----------------------------------------------------------------------
 
 CREATE OR REPLACE FUNCTION st_intersection(
-       rast1 raster, band1 int,
+       rast raster, band int,
        geom geometry,
        extenttype text DEFAULT 'INTERSECTION',
        otheruserfunc regprocedure DEFAULT NULL
@@ -3277,7 +3277,7 @@ CREATE OR REPLACE FUNCTION st_intersection(
        $$ LANGUAGE 'plpgsql' STABLE;
 
 CREATE OR REPLACE FUNCTION st_intersection(
-       rast1 raster, band1 int,
+       rast raster, band int,
        geom geometry,
        otheruserfunc regprocedure
 )
@@ -3286,7 +3286,7 @@ CREATE OR REPLACE FUNCTION st_intersection(
        LANGUAGE 'sql' STABLE;
 
 CREATE OR REPLACE FUNCTION st_intersection(
-       rast1 raster,
+       rast raster,
        geom geometry,
        extenttype text DEFAULT 'INTERSECTION',
        otheruserfunc regprocedure DEFAULT NULL
@@ -3296,7 +3296,7 @@ CREATE OR REPLACE FUNCTION st_intersection(
        LANGUAGE 'sql' STABLE;
 
 CREATE OR REPLACE FUNCTION st_intersection(
-       rast1 raster,
+       rast raster,
        geom geometry,
        otheruserfunc regprocedure
 )
index 975cb1a9da4d9d57e9c48e44db03883900603d83..c5e257096ec18c96fbf058650701458e8d60451c 100644 (file)
@@ -304,3 +304,9 @@ DROP FUNCTION IF EXISTS st_minpossibleval(text);
 
 -- function deprecated previously
 DROP FUNCTION IF EXISTS st_pixelaspolygon(raster, integer, integer, integer);
+
+-- function signatures changed
+DROP FUNCTION IF EXISTS st_intersection(raster, int, geometry, text, regprocedure);
+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);