[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-455-ga8de642a3
git at osgeo.org
git at osgeo.org
Wed Feb 2 07:10:55 PST 2022
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 a8de642a310c58793b03f35aff6e58938a94fb78 (commit)
from ffe8971e3e33f8699cab13a4dfb5118e8257f95b (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 a8de642a310c58793b03f35aff6e58938a94fb78
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Feb 2 16:10:28 2022 +0100
Do not change ST_ConcaveHull signature
Fixes #5078
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 4901e3b73..0f86459c4 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -6449,9 +6449,10 @@ CREATE OR REPLACE FUNCTION ST_SquareGrid(size float8, bounds geometry, OUT geom
#if POSTGIS_GEOS_VERSION >= 31100
--- Availability: 3.3.0
-
-CREATE OR REPLACE FUNCTION ST_ConcaveHull(geom geometry, area_ratio float8, allow_holes boolean DEFAULT false)
+-- Availability: 2.0.0
+-- Changed: 2.5.0
+-- Enhanced: 3.3.0 implements it in C, if GEOS >= 3.10
+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'
LANGUAGE 'c' IMMUTABLE STRICT
@@ -6546,6 +6547,7 @@ LANGUAGE 'plpgsql' IMMUTABLE STRICT PARALLEL SAFE _COST_HIGH;
-- Availability: 2.0.0
-- Changed: 2.5.0
+-- Enhanced: 3.3.0 implements it in C, if GEOS >= 3.10
CREATE OR REPLACE FUNCTION ST_ConcaveHull(param_geom geometry, param_pctconvex float, param_allow_holes boolean DEFAULT false) RETURNS geometry AS
$$
DECLARE
-----------------------------------------------------------------------
Summary of changes:
postgis/postgis.sql.in | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list