[SCM] PostGIS branch stable-3.6 updated. 3.6.2-12-gb25865df6
git at osgeo.org
git at osgeo.org
Tue Mar 31 14:16:59 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, stable-3.6 has been updated
via b25865df6950e117a859324e9d570de4b2292df6 (commit)
from daf6a4fd267c0ba50598de359789ef7296dc1c1d (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 b25865df6950e117a859324e9d570de4b2292df6
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 1df639e7c..710c24e42 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -3274,7 +3274,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?';
@@ -3320,9 +3320,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;
@@ -3332,9 +3332,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