Changeset: f8523dc700fc for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f8523dc700fc Modified Files: geom/sql/40_geom.sql Branch: sfcgal Log Message:
DumpPointsP same as DumpPoints but it includes the ID for the parent geom. ST_Collect should call geom.collect. diffs (20 lines): diff --git a/geom/sql/40_geom.sql b/geom/sql/40_geom.sql --- a/geom/sql/40_geom.sql +++ b/geom/sql/40_geom.sql @@ -4362,13 +4362,14 @@ CREATE FUNCTION ST_Length2D(geom Geometr --CREATE FUNCTION ST_Buffer(geog Geography, radius double) RETURNS Geometry EXTERNAL NAME geom."Buffer"; --CREATE FUNCTION ST_BuildArea RETURNS EXTERNAL NAME --collect is the same to union. POstGIS just has a more efficient implementation for it compared to union -CREATE FUNCTION ST_Collect(geom1 Geometry, geom2 Geometry) RETURNS Geometry EXTERNAL NAME geom."Union"; -CREATE AGGREGATE ST_Collect(geom Geometry) RETURNS Geometry external name geom."Union"; +CREATE FUNCTION ST_Collect(geom1 Geometry, geom2 Geometry) RETURNS Geometry EXTERNAL NAME geom."Collect"; +CREATE AGGREGATE ST_Collect(geom Geometry) RETURNS Geometry external name geom."Collect"; --CREATE FUNCTION ST_ConcaveHull RETURNS EXTERNAL NAME CREATE FUNCTION ST_DelaunayTriangles(geom Geometry, tolerance double, flags integer) RETURNS Geometry EXTERNAL NAME geom."DelaunayTriangles"; CREATE FUNCTION ST_Dump(geom Geometry) RETURNS TABLE(id string, polygonWKB Geometry) EXTERNAL NAME geom."Dump"; CREATE FUNCTION ST_Dump(geom Geometry, parent int) RETURNS TABLE(parent int, id string, polygonWKB Geometry) EXTERNAL NAME geom."DumpP"; CREATE FUNCTION ST_DumpPoints(geom Geometry) RETURNS TABLE(path string, pointG Geometry) EXTERNAL NAME geom."DumpPoints"; +CREATE FUNCTION ST_DumpPoints(geom Geometry, parent int) RETURNS TABLE(parent int, path string, pointG Geometry) EXTERNAL NAME geom."DumpPointsP"; --CREATE FUNCTION ST_DumpRings RETURNS EXTERNAL NAME --CREATE FUNCTION ST_FlipCoordinates RETURNS EXTERNAL NAME --CREATE FUNCTION ST_Intersection(geog1 Geography, geog2 Geography) RETURNS Geography EXTERNAL NAME geom."Intersection"; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
