[SCM] PostGIS branch stable-3.3 updated. 3.3.9-2-g8c0b543dc

git at osgeo.org git at osgeo.org
Thu Feb 12 06:51:46 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  8c0b543dcba0007b55e0a5fa1b3144910aa27c18 (commit)
      from  73a8114ba08b50341061489ad12607798f9f6ca8 (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 8c0b543dcba0007b55e0a5fa1b3144910aa27c18
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Feb 12 09:50:45 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.3.10

diff --git a/NEWS b/NEWS
index 73681eb29..ff1eb5bf2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,11 @@
 PostGIS 3.3.10
 2026-xx-xx
 
+* Bug Fixes and Enhancements *
+
+ - #5998, [tiger_geododer] Do not create tiger_data as part
+  		       of postgis_tiger_geocoder extension, create/update (Regina Obe)
+
 PostGIS 3.3.9
 2026-02-09
 
diff --git a/extras/tiger_geocoder/tiger_loader_2022.sql b/extras/tiger_geocoder/tiger_loader_2022.sql
index 991ce2255..cf162cdd1 100644
--- a/extras/tiger_geocoder/tiger_loader_2022.sql
+++ b/extras/tiger_geocoder/tiger_loader_2022.sql
@@ -245,13 +245,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                                        | 5 +++++
 extras/tiger_geocoder/tiger_loader_2022.sql | 7 -------
 2 files changed, 5 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list