[SCM] PostGIS branch stable-3.4 updated. 3.4.4-63-gc1613ccca

git at osgeo.org git at osgeo.org
Wed Nov 19 08:42:24 PST 2025


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  c1613ccca5df7d587bd4ade0a49c34de5e0434b7 (commit)
      from  51c29b96077122fe9e2794f98585fe03a110e02e (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 c1613ccca5df7d587bd4ade0a49c34de5e0434b7
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Nov 19 08:42:17 2025 -0800

    schema qualify call in ST_MPointFromText, references #6020

diff --git a/NEWS b/NEWS
index 2828a8c5f..68a4c5130 100644
--- a/NEWS
+++ b/NEWS
@@ -35,6 +35,7 @@ Proj 6.1+ required.
   - #5989, ST_Distance error on CurvePolygon (Paul Ramsey)
   - #5962, Consistent clipping of MULTI/POINT (Paul Ramsey)
   - #5754, ST_ForcePolygonCCW reverses lines (Paul Ramsey)
+  - #6020, schema qualify call in ST_MPointFromText (Paul Ramsey)
 
 
 PostGIS 3.4.4
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index d8be7593b..f1175e101 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -5744,7 +5744,7 @@ CREATE OR REPLACE FUNCTION ST_MPointFromText(text, integer)
 	RETURNS geometry
 	AS '
 	SELECT CASE WHEN @extschema at .geometrytype(@extschema at .ST_GeomFromText($1, $2)) = ''MULTIPOINT''
-	THEN ST_GeomFromText($1, $2)
+	THEN @extschema at .ST_GeomFromText($1, $2)
 	ELSE NULL END
 	'
 	LANGUAGE 'sql' IMMUTABLE STRICT PARALLEL SAFE

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

Summary of changes:
 NEWS                   | 1 +
 postgis/postgis.sql.in | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list