[SCM] PostGIS branch stable-3.6 updated. 3.6.1-5-g4a9da4fca

git at osgeo.org git at osgeo.org
Wed Nov 19 08:39:20 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.6 has been updated
       via  4a9da4fcaa9de8e7dc87b6a3be7569cdc2e17e95 (commit)
      from  c615e151d0f02f6f0d469255188d35cf09fb4689 (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 4a9da4fcaa9de8e7dc87b6a3be7569cdc2e17e95
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Nov 19 08:39:11 2025 -0800

    schema qualify call in ST_MPointFromText, references #6020

diff --git a/NEWS b/NEWS
index 9ec818ffe..d1c1e0708 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,7 @@
+
 PostGIS 3.6.2
 2025/xx/xx
+
 This version requires PostgreSQL 12-18, GEOS 3.8 or higher, and Proj 6.1+.
 To take advantage of all features, GEOS 3.14+ is needed.
 To take advantage of all SFCGAL features, SFCGAL 2.2+ is needed.
@@ -14,6 +16,8 @@ SELECT topology.FixCorruptTopoGeometryColumn(schema_name, table_name, feature_co
 
 - #6019, make clean does not remove cunit generated files
            (Bas Couwenberg)
+- #6020, schema qualify call in ST_MPointFromText (Paul Ramsey)
+
 
 PostGIS 3.6.1
 2025/11/13
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index c4177edb9..398031528 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -5716,7 +5716,7 @@ CREATE OR REPLACE FUNCTION ST_MPointFromText(text, integer)
 	RETURNS geometry
 	AS '
 	SELECT CASE WHEN @extschema at .ST_GeometryType(@extschema at .ST_GeomFromText($1, $2)) = ''ST_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                   | 4 ++++
 postgis/postgis.sql.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list