[SCM] PostGIS branch stable-3.4 updated. 3.4.2-5-ga22f29c3c

git at osgeo.org git at osgeo.org
Wed Feb 28 05:21:40 PST 2024


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.4 has been updated
       via  a22f29c3c6520342bc79291bc0573df4b40ac343 (commit)
      from  f37390b9cc4b33e8a7ec15e0396112fca19391c9 (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 a22f29c3c6520342bc79291bc0573df4b40ac343
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Feb 28 14:19:44 2024 +0100

    Remove spurious COMMIT statements from sfcgal sql script
    
    References #5679 in 3.4 branch (3.4.3dev)

diff --git a/NEWS b/NEWS
index adc9d238a..01d2bfa0a 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,8 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
 
  - #5649, ST_Value should return NULL on missing band (Paul Ramsey)
  - #5677, ST_Union(geom[]) should unary union single entry arrays (Paul Ramsey)
+ - #5679, Remove spurious COMMIT statements from sfcgal script
+          (Sandro Santilli, Loïc Bartoletti)
 
 
 PostGIS 3.4.2
diff --git a/sfcgal/sfcgal.sql.in b/sfcgal/sfcgal.sql.in
index 2466545ba..1a82e45cc 100644
--- a/sfcgal/sfcgal.sql.in
+++ b/sfcgal/sfcgal.sql.in
@@ -164,7 +164,6 @@ CREATE OR REPLACE FUNCTION ST_ConstrainedDelaunayTriangles(geometry)
        AS 'MODULE_PATHNAME', 'ST_ConstrainedDelaunayTriangles'
        LANGUAGE 'c' IMMUTABLE STRICT PARALLEL SAFE
        COST 100;
-COMMIT;
 
 -- Availability: 3.3.0
 CREATE OR REPLACE FUNCTION ST_3DConvexHull(geometry)
@@ -172,7 +171,6 @@ CREATE OR REPLACE FUNCTION ST_3DConvexHull(geometry)
        AS 'MODULE_PATHNAME', 'sfcgal_convexhull3D'
        LANGUAGE 'c' IMMUTABLE STRICT PARALLEL SAFE
        COST 100;
-COMMIT;
 
 -- Availability: 3.3.0
 CREATE OR REPLACE FUNCTION ST_AlphaShape(g1 geometry, alpha float8 DEFAULT 1.0, allow_holes boolean DEFAULT false)
@@ -180,7 +178,6 @@ CREATE OR REPLACE FUNCTION ST_AlphaShape(g1 geometry, alpha float8 DEFAULT 1.0,
        AS 'MODULE_PATHNAME', 'sfcgal_alphashape'
        LANGUAGE 'c' IMMUTABLE STRICT PARALLEL SAFE
        COST 100;
-COMMIT;
 
 -- Availability: 3.3.0
 CREATE OR REPLACE FUNCTION ST_OptimalAlphaShape(g1 geometry, allow_holes boolean DEFAULT false, nb_components int DEFAULT 1)
@@ -188,4 +185,5 @@ CREATE OR REPLACE FUNCTION ST_OptimalAlphaShape(g1 geometry, allow_holes boolean
        AS 'MODULE_PATHNAME', 'sfcgal_optimalalphashape'
        LANGUAGE 'c' IMMUTABLE STRICT PARALLEL SAFE
        COST 100;
+
 COMMIT;

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

Summary of changes:
 NEWS                 | 2 ++
 sfcgal/sfcgal.sql.in | 4 +---
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list