[SCM] PostGIS branch stable-3.4 updated. 3.4.5-13-g9441c6b61
git at osgeo.org
git at osgeo.org
Tue Mar 31 14:20:31 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.4 has been updated
via 9441c6b61df7799408119c3f2c912740a80405d6 (commit)
from 082500dfb81518dd16746e34fba4c2ca81d4bac4 (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 9441c6b61df7799408119c3f2c912740a80405d6
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date: Tue Mar 31 14:20:25 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 27656e07c..142421860 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -3301,7 +3301,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?';
@@ -3347,9 +3347,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;
-----------------------------------------------------------------------
Summary of changes:
postgis/postgis.sql.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list