Changes between Initial Version and Version 1 of Ticket #5687, comment 5
- Timestamp:
- 03/09/24 14:40:04 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5687, comment 5
initial v1 1 1 I'm having trouble building PG17 under mingw and reverted 0a5d454 as it caused other issues and is not the culprit since the regress_index and regress_nd_index which use the same function are working fine. 2 2 3 Some observations in the gist_index code, there is no logic to try to find location of postgis extension, yet I see this code in spgist. I'm assuming that is where it's failing - https://git.osgeo.org/gitea/postgis/postgis/src/branch/master/postgis/gserialized_spgist_2d.c#L29 63 Some observations in the gist_index code, there is no logic to try to find location of postgis extension, yet I see this code in spgist. I'm assuming that is where it's failing - https://git.osgeo.org/gitea/postgis/postgis/src/branch/master/postgis/gserialized_spgist_2d.c#L295 4 4 5 5 I see similar in the spgist_3d. 6 6 7 The initialize cache eventually gets to postgisConstants which then does a search for postgis extension schema https://git.osgeo.org/gitea/postgis/postgis/src/branch/master/libpgcommon/lwgeom_pg.c#L69 8 7 9 Not sure why we have a config function for these and it's not needed for the gist one.