Changes between Initial Version and Version 1 of Ticket #4463
- Timestamp:
- 07/26/19 16:20:26 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4463 – Description
initial v1 29 29 30 30 31 --this doesn't use an index on PostgreSQL 12 (though it has option of a centroid functional index and a raster ST_ConvexHull(rast) index 31 --this doesn't use an index on PostgreSQL 12 (though it has option of a centroid functional index and a raster ST_ConvexHull(rast) index 32 32 -- TODO: test on 11, we suspect it will be able to use the indexes 33 33 … … 40 40 }}} 41 41 42 The issue as RhodiumToad explained on IRC is the ST_Intersects(raster,geometry), geometry,raster is still relying on _ST_Intersects which doesn't use the fancy function costing so is suffering from the high costs we've put in place.42 The issue as RhodiumToad explained on IRC http://irclogs.geoapt.com/postgis/%23postgis.2019-07-26.log is the ST_Intersects(raster,geometry), geometry,raster is still relying on _ST_Intersects which doesn't use the fancy function costing so is suffering from the high costs we've put in place. 43 43 44 44