[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.3-11-ge62bf6eb7

git at osgeo.org git at osgeo.org
Wed Sep 28 20:43:56 PDT 2022


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.2 has been updated
       via  e62bf6eb7555b180319abee86245b5c94e4d2ea8 (commit)
      from  ef33207089b3e06290d76be7fea9406b436423c9 (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 e62bf6eb7555b180319abee86245b5c94e4d2ea8
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Sep 28 23:43:49 2022 -0400

    Add missing schema qual to upgrade util

diff --git a/NEWS b/NEWS
index e6e9e982e..da8f2f5fb 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ PostGIS 3.2.4
   - #5227, typo in ST_LineLocatePoint error message (Sandro Santilli)
   - #5231, PG15 no longer compiles because SQL/JSON removed PG upstream (Regina Obe)
   - #5420, ST_DumpPoints and ST_DumpSegments crash with empty polygon (Regina Obe)
+  - Add schema qual to upgrade util
 
 PostGIS 3.2.3
 2022/08/18
diff --git a/utils/postgis_proc_upgrade.pl b/utils/postgis_proc_upgrade.pl
index f58d9aa34..a75a06587 100755
--- a/utils/postgis_proc_upgrade.pl
+++ b/utils/postgis_proc_upgrade.pl
@@ -370,7 +370,7 @@ EOF
 DO LANGUAGE 'plpgsql'
 \$postgis_proc_upgrade\$
 BEGIN
-  IF current_setting('server_version_num')::integer >= 120000
+  IF pg_catalog.current_setting('server_version_num')::integer >= 120000
   THEN
     EXECUTE \$postgis_proc_upgrade_parsed_def\$ $pg12_def \$postgis_proc_upgrade_parsed_def\$;
   ELSIF $last_updated > version_from_num OR (

-----------------------------------------------------------------------

Summary of changes:
 NEWS                          | 1 +
 utils/postgis_proc_upgrade.pl | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list