[SCM] PostGIS branch stable-3.3 updated. 3.3.7-74-g023e57521
git at osgeo.org
git at osgeo.org
Sat Feb 7 18:45:15 PST 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.3 has been updated
via 023e57521e8c33c6ef862f17462389b55ba46e1e (commit)
from 77a390f2e97d1a5fb9f6cad8ba0fa438b6fd208f (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 023e57521e8c33c6ef862f17462389b55ba46e1e
Author: Regina Obe <lr at pcorp.us>
Date: Sat Feb 7 21:45:09 2026 -0500
Revert fix. References #5853 for PostGIS 3.3.9
diff --git a/NEWS b/NEWS
index f57ba5eba..04408d87d 100644
--- a/NEWS
+++ b/NEWS
@@ -33,7 +33,6 @@ Proj 4.9+ required.
- #5998, [tiger_geocoder] [security] CVE-2022-2625, make sure tables required
by extension are owned by extension
authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)
- - #5853, Issue with topology and tiger geocoder upgrade scripts (Regina Obe, Spencer Bryson)
PostGIS 3.3.8
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 292f6160c..9db92776f 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -35,7 +35,6 @@
<para><ulink url="https://trac.osgeo.org/postgis/ticket/5998">5998</ulink>, [tiger_geocoder] [security] CVE-2022-2625, make sure tables required
by extension are owned by extension
authored: Andrey Borodin (Yandex), reported by Sergey Bobrov (Kaspersky)</para>
- <para><ulink url="https://trac.osgeo.org/postgis/ticket/5853">5853</ulink>, Issue with topology and tiger geocoder upgrade scripts (Regina Obe, Spencer Bryson)</para>
</simplesect>
</sect1>
<sect1>
diff --git a/extensions/postgis_extension_helper.sql.in b/extensions/postgis_extension_helper.sql.in
index 8bf3f8dea..632385133 100644
--- a/extensions/postgis_extension_helper.sql.in
+++ b/extensions/postgis_extension_helper.sql.in
@@ -16,7 +16,7 @@
---------------------------
-- postgis_extension_remove_objects: This function removes objects of a particular class from an extension
-- this is needed because there is no ALTER EXTENSION DROP FUNCTION/AGGREGATE command
--- and we can't CREATE OR REPALCe functions whose signatures have changed and we can drop them if they are part of an extension
+-- and we can't CREATE OR REPALCe functions whose signatures have changed and we can drop them if they are part of an extention
-- So we use this to remove it from extension first before we drop
CREATE FUNCTION postgis_extension_remove_objects(param_extension text, param_type text)
RETURNS boolean AS
@@ -30,7 +30,7 @@ DECLARE
var_sql_list text := '';
var_pgsql_version integer := pg_catalog.current_setting('server_version_num');
BEGIN
- var_class := CASE WHEN pg_catalog.lower(param_type) OPERATOR(pg_catalog.=) 'function' OR pg_catalog.lower(param_type) OPERATOR(pg_catalog.=) 'aggregate' THEN 'pg_proc' ELSE '' END;
+ var_class := CASE WHEN pg_catalog.lower(param_type) OPERATOR(pg_catalog.=)'function' OR pg_catalog.lower(param_type) OPERATOR(pg_catalog.=) 'aggregate' THEN 'pg_catalog.pg_proc' ELSE '' END;
var_is_aggregate := CASE WHEN pg_catalog.lower(param_type) OPERATOR(pg_catalog.=) 'aggregate' THEN true ELSE false END;
IF var_pgsql_version OPERATOR(pg_catalog.<) 110000 THEN
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 -
doc/release_notes.xml | 1 -
extensions/postgis_extension_helper.sql.in | 4 ++--
3 files changed, 2 insertions(+), 4 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list