Changes between Version 3 and Version 4 of Ticket #5830
- Timestamp:
- 01/06/25 03:53:43 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5830 – Description
v3 v4 14 14 What also works is 15 15 16 SELECT 1 FROM communities c1, communities c2 WHERE ST_Within(c1.geom, c2.geom) 16 SELECT 1 FROM communities c1, communities c2 WHERE ST_Within(c1.geom, c2.geom) AND ST_Within(c2.geom, c1.geom) 17 17 18 18 The error my postgres container logs: … … 21 21 I tried to run the failing query on our staging environment where we have PostGis 3.4.0 and it runs without any error. 22 22 23 I was unable to install 3.4.x locally as older versions seem to get deleted from the apt repository and installing from source I was unable to Installing it from s.23 I was unable to install 3.4.x locally as older versions seem to get deleted from the apt repository and installing from source did not work out for me. 24 24 25 25 EDIT: I wanted to attach the data but it exceeds the size limit.