Changes between Initial Version and Version 1 of Ticket #4864, comment 4


Ignore:
Timestamp:
Mar 2, 2021, 1:48:53 PM (3 years ago)
Author:
strk

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) }}}
     1It looks like this query changes output with new GEOS:
     2
     3> SELECT ST_AsText(ST_PointOnSurface('MULTIPOINT(8 10, 10 12)'));
     4
     5Old GEOS returned {{{ POINT(8 10) }}} while newer one returns {{{ POINT(10 12) }}}