[SCM] PostGIS branch stable-3.3 updated. 3.3.6-5-g29037e7e3

git at osgeo.org git at osgeo.org
Wed Feb 28 05:28:02 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.3 has been updated
       via  29037e7e37ede5dfa12bd6a5bcc42e0632e4a550 (commit)
      from  b885f39bee3be746780737c2517768aee433084c (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 29037e7e37ede5dfa12bd6a5bcc42e0632e4a550
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Feb 28 14:19:44 2024 +0100

    Remove spurious COMMIT statements from sfcgal sql script
    
    Closes #5679 in 3.3 branch (3.3.7dev)

diff --git a/NEWS b/NEWS
index f0c8e1e58..601eb12c5 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,8 @@ xxxx/xx/xx
 
  - #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.3.6
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