#4925 closed defect (fixed)
ST_DumpPoints overlooks points
Reported by: | kalenik | Owned by: | pramsey |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 3.2.0 |
Component: | postgis | Version: | master |
Keywords: | Cc: |
Description
=> SELECT path, ST_AsText(geom) FROM ( SELECT (ST_DumpPoints(g.geom)).* FROM (SELECT 'GEOMETRYCOLLECTION( POINT(11 11), GEOMETRYCOLLECTION EMPTY, POINT(22 22), GEOMETRYCOLLECTION EMPTY, POINT(33 33), POINT(44 44) )'::geometry AS geom ) AS g ) j; path │ st_astext ───────┼────────────── {1,1} │ POINT(11 11) {6,1} │ POINT(44 44) (2 rows)
Doesn't seem like correct behaviour since points before GeometryCollection are not included in resulting set.
Note:
See TracTickets
for help on using tickets.
In 6c7a131/git: