[SCM] PostGIS branch master updated. 3.6.0rc2-212-gf9b78e888

git at osgeo.org git at osgeo.org
Wed Nov 19 08:44:13 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, master has been updated
       via  f9b78e888a1bd3b35469e27ab7b48b80c2508e1b (commit)
      from  4fd22aa0ae5c93bd04618f6a7a0fd35b30e8ae26 (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 f9b78e888a1bd3b35469e27ab7b48b80c2508e1b
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Nov 19 08:44:07 2025 -0800

    schema qualify call in ST_MPointFromText, closes #6020

diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index dee9101c4..3e5916205 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -5728,7 +5728,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:
 postgis/postgis.sql.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list