[SCM] PostGIS branch stable-3.6 updated. 3.6.3-6-gf313504c6

git at osgeo.org git at osgeo.org
Mon May 25 09:41:01 PDT 2026


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, stable-3.6 has been updated
       via  f313504c66bb76adffa23d41e0266317710968dd (commit)
       via  0a8939cc21781b1a0fb8e22a6fb24a300468e9e6 (commit)
      from  79f2b6bc45c66b01d3455c14591fbff4e2b90cf0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f313504c66bb76adffa23d41e0266317710968dd
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Mon May 25 09:40:50 2026 -0700

    News entry for GH-862

diff --git a/NEWS b/NEWS
index 249ca7adb..c5a7f5fb6 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ PostGIS 3.6.4
 
 - #6076, ST_Length(geography) for GeometryCollection not consistent
          with geometry implementation
+- GH-862, use SFCGAL undeprecated function sfcgal_geometry_tessellate() (Jean Felder)
 
 
 PostGIS 3.6.3

commit 0a8939cc21781b1a0fb8e22a6fb24a300468e9e6
Author: Jean Felder <jean.felder at oslandia.com>
Date:   Mon May 25 15:46:05 2026 +0200

    sfcgal: Adapt to deprecated sfcgal_geometry_tesselate
    
    `sfcgal_geometry_tessellate` is now used instead.

diff --git a/sfcgal/lwgeom_sfcgal.c b/sfcgal/lwgeom_sfcgal.c
index cec862018..6f0a4368d 100644
--- a/sfcgal/lwgeom_sfcgal.c
+++ b/sfcgal/lwgeom_sfcgal.c
@@ -319,7 +319,11 @@ sfcgal_tesselate(PG_FUNCTION_ARGS)
 	geom = POSTGIS2SFCGALGeometry(input);
 	PG_FREE_IF_COPY(input, 0);
 
+#if POSTGIS_SFCGAL_VERSION < 20300
 	result = sfcgal_geometry_tesselate(geom);
+#else
+        result = sfcgal_geometry_tessellate(geom);
+#endif
 	sfcgal_geometry_delete(geom);
 
 	output = SFCGALGeometry2POSTGIS(result, 0, srid);

-----------------------------------------------------------------------

Summary of changes:
 NEWS                   | 1 +
 sfcgal/lwgeom_sfcgal.c | 4 ++++
 2 files changed, 5 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list