Changes between Version 6 and Version 7 of Ticket #5580
- Timestamp:
- 10/19/23 23:43:04 (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5580 – Description
v6 v7 5 5 FROM ST_GeomFromText('GEOMETRYCOLLECTION Z (POINT Z EMPTY, POINT Z (0 0 0))') As a1 6 6 , ST_GeomFromText('POINT Z (0 0 0)') As a2; 7 --ex cepted{t}; actual{f}7 --expected{t}; actual{f} 8 8 }}} 9 9 Postgis produces a result of false, but I expected it to produce true. I think this is a bug, due to the following 3 reasons: 10 10 11 1. ST_3DIntersection(a1, a2) returns POINT Z (0 0 0). So the ex cepted result of 3DIntersects is true.11 1. ST_3DIntersection(a1, a2) returns POINT Z (0 0 0). So the expected result of 3DIntersects is true. 12 12 13 13 2. Considering the 2D version function, ST_Intersects(a1, a2) returns true here: