[SCM] PostGIS branch stable-3.2 updated. 3.2.9-2-g9bed75f7f

git at osgeo.org git at osgeo.org
Thu Feb 12 06:35:45 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.2 has been updated
       via  9bed75f7f186dfa4f60039d68103a73c91a69b8e (commit)
      from  1ac41a133257973ea736a93f95c1f98df1abdbf8 (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 9bed75f7f186dfa4f60039d68103a73c91a69b8e
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Feb 12 09:14:41 2026 -0500

    Do not pre-create tiger_data schema during extension creation time
    Load process will create it if it does not exist
    We don't need it as part of the postgis_tiger_geocoder extension
    
    Reference #6049 for PostGIS 3.2.10

diff --git a/NEWS b/NEWS
index 916bc0146..99442f6b4 100644
--- a/NEWS
+++ b/NEWS
@@ -6,7 +6,8 @@ Proj 4.9+ required.
 
 * Bug Fixes  *
 
-
+ - #5998, [tiger_geododer] Do not create tiger_data as part
+             of postgis_tiger_geocoder extension, create/update (Regina Obe)
 
 PostGIS 3.2.9
 2026/02/08
diff --git a/extras/tiger_geocoder/tiger_loader_2021.sql b/extras/tiger_geocoder/tiger_loader_2021.sql
index 675bff9cd..f773dd267 100644
--- a/extras/tiger_geocoder/tiger_loader_2021.sql
+++ b/extras/tiger_geocoder/tiger_loader_2021.sql
@@ -242,13 +242,6 @@ BEGIN
 END
 $$ LANGUAGE 'plpgsql';
 
-DO
-$$
-BEGIN
-    CREATE SCHEMA IF NOT EXISTS tiger_data;
-END
-$$ LANGUAGE 'plpgsql';
-
 DELETE FROM loader_platform WHERE os IN ('sh', 'windows');
 GRANT SELECT ON TABLE loader_platform TO public;
 INSERT INTO loader_platform(os, wget, pgbin, declare_sect, unzip_command, psql,path_sep,loader, environ_set_command, county_process_command)

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

Summary of changes:
 NEWS                                        | 3 ++-
 extras/tiger_geocoder/tiger_loader_2021.sql | 7 -------
 2 files changed, 2 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list