[SCM] PostGIS branch stable-3.5 updated. 3.5.4-8-gc3afc1107
git at osgeo.org
git at osgeo.org
Wed Nov 19 08:40:08 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.5 has been updated
via c3afc11077b801cd3b88462519a4b1d9d79d8bc3 (commit)
from 6e6c2eb228e0fd4fdc4a034a74281ce2499684c9 (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 c3afc11077b801cd3b88462519a4b1d9d79d8bc3
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Wed Nov 19 08:40:02 2025 -0800
schema qualify call in ST_MPointFromText, references #6020
diff --git a/NEWS b/NEWS
index 075318f84..fbedc58aa 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ PostgreSQL 12-18 required. GEOS 3.8+ required. Proj 6.1+ required.
* Bug fixes *
- #5959, #5984, Prevent histogram target overflow when analysing massive tables (Darafei Praliaskouski)
+ - #6020, schema qualify call in ST_MPointFromText (Paul Ramsey)
PostGIS 3.5.4
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 0ad1db1e3..2b9a8fe76 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -5718,7 +5718,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 | 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