[SCM] PostGIS branch master updated. 3.6.0rc2-418-gdc09e5a11
git at osgeo.org
git at osgeo.org
Tue Mar 31 14:16:30 PDT 2026
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 dc09e5a11d71b0bebf763750b53036276778afa0 (commit)
from 67ff872e2d4b8b46e6d412dae592e89480fc668c (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 dc09e5a11d71b0bebf763750b53036276778afa0
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Tue Mar 31 14:07:27 2026 -0700
Ensure that functions called in upgrade script are fully qualified
diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index 8c85013ab..e378a453d 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -3312,7 +3312,7 @@ BEGIN
END;
BEGIN
- SELECT postgis_raster_scripts_installed() INTO rast_scr_ver;
+ SELECT @extschema at .postgis_raster_scripts_installed() INTO rast_scr_ver;
EXCEPTION
WHEN undefined_function THEN
RAISE DEBUG 'Function postgis_raster_scripts_installed() not found. Is raster support enabled and rtpostgis.sql installed?';
@@ -3358,9 +3358,9 @@ BEGIN
IF geosver IS NOT NULL THEN
fullver = fullver || ' GEOS="' || geosver || '"';
- IF (string_to_array(geosver, '.'))[1:2] != (string_to_array(geosver_compiled, '.'))[1:2]
+ IF (pg_catalog.string_to_array(geosver, '.'))[1:2] != (pg_catalog.string_to_array(geosver_compiled, '.'))[1:2]
THEN
- fullver = format('%s (compiled against GEOS %s)', fullver, geosver_compiled);
+ fullver = pg_catalog.format('%s (compiled against GEOS %s)', fullver, geosver_compiled);
END IF;
END IF;
@@ -3370,9 +3370,9 @@ BEGIN
IF projver IS NOT NULL THEN
fullver = fullver || ' PROJ="' || projver || '"';
- IF (string_to_array(projver, '.'))[1:3] != (string_to_array(projver_compiled, '.'))[1:3]
+ IF (pg_catalog.string_to_array(projver, '.'))[1:3] != (pg_catalog.string_to_array(projver_compiled, '.'))[1:3]
THEN
- fullver = format('%s (compiled against PROJ %s)', fullver, projver_compiled);
+ fullver = pg_catalog.format('%s (compiled against PROJ %s)', fullver, projver_compiled);
END IF;
END IF;
-----------------------------------------------------------------------
Summary of changes:
postgis/postgis.sql.in | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list