[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-963-g5e05bc3e7

git at osgeo.org git at osgeo.org
Mon Jun 5 08:54:24 PDT 2023


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, master has been updated
       via  5e05bc3e7461e19055f16af367c6fc9260222179 (commit)
       via  6f8b43f882ed24d7800a175c9fd863612e793736 (commit)
      from  f534ee90efe82f3393c0278fd596704ee14b52b3 (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 5e05bc3e7461e19055f16af367c6fc9260222179
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Jun 5 17:52:17 2023 +0200

    Have skip signature generator scan full postgis upgrade script
    
    References #5396 in master branch (3.4.0dev)

diff --git a/utils/Makefile.in b/utils/Makefile.in
index 87d5be4ef..774724402 100644
--- a/utils/Makefile.in
+++ b/utils/Makefile.in
@@ -45,12 +45,11 @@ all: $(SCRIPTS_built)
 DROP_FILES = \
 	$(top_srcdir)/raster/rt_pg/rtpostgis_upgrade_cleanup.sql.in \
 	$(top_srcdir)/raster/rt_pg/rtpostgis_drop.sql.in \
-	$(top_srcdir)/postgis/postgis_after_upgrade.sql \
-	$(top_srcdir)/postgis/postgis_before_upgrade.sql \
 	$(top_srcdir)/topology/topology_after_upgrade.sql.in \
 	$(top_srcdir)/topology/topology_before_upgrade.sql.in \
 	$(top_builddir)/postgis/uninstall_postgis.sql \
 	$(top_builddir)/postgis/uninstall_legacy.sql \
+	$(top_builddir)/postgis/postgis_upgrade.sql \
 	$(top_builddir)/sfcgal/uninstall_sfcgal.sql \
 	$(top_builddir)/raster/rt_pg/uninstall_rtpostgis.sql \
 	$(top_builddir)/topology/uninstall_topology.sql

commit 6f8b43f882ed24d7800a175c9fd863612e793736
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Jun 5 17:42:41 2023 +0200

    Grant select on topology sequences
    
    Allows public dumping of postgis-topology enabled database
    (as long as there are no topologies)
    
    References #5344 in master branch (3.4.0dev)

diff --git a/topology/topology.sql.in b/topology/topology.sql.in
index b8f05d9da..ef89fdaeb 100644
--- a/topology/topology.sql.in
+++ b/topology/topology.sql.in
@@ -1466,5 +1466,7 @@ GRANT SELECT ON topology.topology TO PUBLIC;
 GRANT SELECT ON topology.layer TO PUBLIC;
 -- See https://trac.osgeo.org/postgis/ticket/5124
 GRANT USAGE ON SCHEMA topology TO PUBLIC;
+-- See https://trac.osgeo.org/postgis/ticket/5395
+GRANT SELECT ON ALL SEQUENCES IN SCHEMA topology TO PUBLIC;
 
 COMMIT;

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

Summary of changes:
 topology/topology.sql.in | 2 ++
 utils/Makefile.in        | 3 +--
 2 files changed, 3 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list