-----------------------------------------------------------------------
CREATE OR REPLACE FUNCTION st_intersection(
- rast1 raster, band1 int,
+ rast raster, band int,
geom geometry,
extenttype text DEFAULT 'INTERSECTION',
otheruserfunc regprocedure DEFAULT NULL
$$ LANGUAGE 'plpgsql' STABLE;
CREATE OR REPLACE FUNCTION st_intersection(
- rast1 raster, band1 int,
+ rast raster, band int,
geom geometry,
otheruserfunc regprocedure
)
LANGUAGE 'sql' STABLE;
CREATE OR REPLACE FUNCTION st_intersection(
- rast1 raster,
+ rast raster,
geom geometry,
extenttype text DEFAULT 'INTERSECTION',
otheruserfunc regprocedure DEFAULT NULL
LANGUAGE 'sql' STABLE;
CREATE OR REPLACE FUNCTION st_intersection(
- rast1 raster,
+ rast raster,
geom geometry,
otheruserfunc regprocedure
)
-- 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);