[postgis-tickets] [PostGIS] #5488: Upgrade from 3.1.1: ERROR: cannot drop function st_clip(raster, integer, geometry, double precision, boolean) because other objects depend on it
PostGIS
trac at osgeo.org
Mon Aug 28 10:23:25 PDT 2023
#5488: Upgrade from 3.1.1: ERROR: cannot drop function
st_clip(raster,integer,geometry,double precision,boolean) because other
objects depend on it
------------------------------------+------------------
Reporter: strk | Owner: strk
Type: defect | Status: new
Priority: medium | Milestone:
Component: build/upgrade/install | Version:
Resolution: | Keywords:
------------------------------------+------------------
Comment (by strk):
Same signatures in stable-2.3 as well
The signatures, from 2.3 to current master are:
{{{
-- 1
st_clip(
rast raster,
nband integer[],
geom geometry,
nodataval double precision[] DEFAULT NULL,
crop boolean DEFAULT TRUE
) RETURNS raster
-- 2
st_clip(
rast raster, nband integer,
geom geometry,
nodataval double precision, crop boolean DEFAULT TRUE
) RETURNS raster
-- 3
st_clip(
rast raster,
nband integer,
geom geometry,
crop boolean
) RETURNS raster
-- 4
st_clip(
rast raster,
geom geometry,
nodataval double precision[] DEFAULT NULL,
crop boolean DEFAULT TRUE
) RETURNS raster
-- 5
st_clip(
rast raster,
geom geometry,
nodataval double precision, crop boolean DEFAULT TRUE
) RETURNS raster
-- 6
st_clip(
rast raster,
geom geometry,
crop boolean
) RETURNS raster
}}}
It would be about time to consolidate more, now that we support
Replaces...
--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/5488#comment:4>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.
More information about the postgis-tickets
mailing list