Opened 16 months ago
Closed 16 months ago
#5489 closed defect (fixed)
Upgrade from 3.1.1: ERROR: cannot drop function st_intersects(raster,geometry,integer) because other objects depend on it
Reported by: | strk | Owned by: | strk |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 3.4.1 |
Component: | build | Version: | 3.4.x |
Keywords: | Cc: |
Description
Another case of upgrade trouble:
=# select postgis_extensions_upgrade(); NOTICE: Updating extension postgis from 3.1.1 to 3.4.0 NOTICE: Updating extension postgis_sfcgal from 3.1.1 to 3.4.0 NOTICE: Updating extension postgis_raster from 3.1.1 to 3.4.0 ERROR: cannot drop function st_intersects(raster,geometry,integer) because other objects depend on it
See also #5488
Change History (6)
comment:1 by , 16 months ago
comment:2 by , 16 months ago
The other 2 internal signatures which did not change from 2.0.0 to 3.5.0dev are:
- _st_intersects(geom geometry, rast raster, nband integer DEFAULT NULL)
- _st_intersects(rast1 raster, nband1 integer, rast2 raster, nband2 integer)
Additionally stable-2.0 (dropped in stable-2.1) had:
- _st_intersects(rast raster, geom geometry, nband integer DEFAULT NULL)
comment:3 by , 16 months ago
Bug confirmed by CI: https://woodie.osgeo.org/repos/30/pipeline/865/7 about to push the fix
Note:
See TracTickets
for help on using tickets.
Current signatures (3.5.0dev, same as 2.0.0):
A lot of ST_Intersects signatures are dropped in 2.0.0, which doesn't make much sense as 2.0 was the first version including raster.
I think I'm going to stop dropping them all and call it a day.