[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-138-gc16cd8814

git at osgeo.org git at osgeo.org
Fri Sep 1 07:42:10 PDT 2023


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, master has been updated
       via  c16cd881437f0ced20a91ef8b43e49260e93edf9 (commit)
      from  6f9e4cd82b884466510140421a2868fa6cf21c85 (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 c16cd881437f0ced20a91ef8b43e49260e93edf9
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Sep 1 16:41:35 2023 +0200

    Avoid calling _postgis_drop_function_by_signature during creation
    
    Fixes installcheck,
    see https://gitlab.com/postgis/postgis/-/jobs/4999313128

diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 0423236f4..e962965e7 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -6660,6 +6660,7 @@ CREATE OR REPLACE FUNCTION ST_SimplifyPolygonHull(geom geometry, vertex_fraction
 -- Availability: 2.0.0
 -- Changed: 2.5.0
 -- Enhanced: 3.3.0 implements it in C, if GEOS >= 3.10
+-- Replaces _st_concavehull(geometry) deprecated in 3.3.0-with-geos-3.11
 CREATE OR REPLACE FUNCTION ST_ConcaveHull(param_geom geometry, param_pctconvex float, param_allow_holes boolean DEFAULT false)
 	RETURNS geometry
 	AS 'MODULE_PATHNAME', 'ST_ConcaveHull'
@@ -6667,12 +6668,6 @@ CREATE OR REPLACE FUNCTION ST_ConcaveHull(param_geom geometry, param_pctconvex f
 	PARALLEL SAFE
 	_COST_HIGH;
 
--- No longer needed with C language implementation
-SELECT _postgis_drop_function_by_signature(
-	'_st_concavehull(geometry)',
-	'3.3.0--geos3.11'
-);
-
 #else
 
 -- ST_ConcaveHull and Helper functions starts here --

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

Summary of changes:
 postgis/postgis.sql.in | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list