Changes between Initial Version and Version 1 of Ticket #4864, comment 4
- Timestamp:
- 03/02/21 13:48:53 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4864, comment 4
initial v1 1 It looks like ST_PointOnSurface(geom) in GEOS changed behavior when the input is {{{ MULTIPOINT(10 12, 8 10) }}} 1 It looks like this query changes output with new GEOS: 2 3 > SELECT ST_AsText(ST_PointOnSurface('MULTIPOINT(8 10, 10 12)')); 4 5 Old GEOS returned {{{ POINT(8 10) }}} while newer one returns {{{ POINT(10 12) }}}