Changes between Version 1 and Version 3 of Ticket #5830
- Timestamp:
- 01/06/25 01:52:18 (2 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5830
- Property Keywords st_equals added
-
Ticket #5830 – Description
v1 v3 5 5 6 6 Dummy query that fails: 7 7 8 SELECT 1 FROM communities c1, communities c2 WHERE ST_Equals(c1.geom, c2.geom) 8 9 9 10 Dummy query that runs: 10 SELECT 1 FROM communities c1, communities c2 WHERE ST_Equals(c1.geom, c2.geom) AND c1.gisco_code = 'DE_01001000' 11 12 SELECT 1 FROM communities c1, communities c2 WHERE ST_Equals(c1.geom, c2.geom) AND ST_Intersects(c1.geom, c2.geom) 13 14 What also works is 15 16 SELECT 1 FROM communities c1, communities c2 WHERE ST_Within(c1.geom, c2.geom) 11 17 12 18 The error my postgres container logs: … … 15 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. 16 22 17 I was unable to install 3.4.x locally as older versions seem to get deleted from the apt repository and installing it from source was pain and did not work in the end.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. 18 24 19 25 EDIT: I wanted to attach the data but it exceeds the size limit.