[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.3-23-g6842d6351

git at osgeo.org git at osgeo.org
Thu Jul 6 09:13:48 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, stable-3.3 has been updated
       via  6842d6351b606375aa199009403528252989a662 (commit)
      from  c8dd8b38066a06e08ef9d0408fcb6327ade8fa28 (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 6842d6351b606375aa199009403528252989a662
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)
    
    Closes #5395 in 3.3 branch (3.3.4dev)
    
    This is a backport of 6f8b43f882ed24d7800a175c9fd863612e793736

diff --git a/topology/topology.sql.in b/topology/topology.sql.in
index 27ae06595..3a97859f0 100644
--- a/topology/topology.sql.in
+++ b/topology/topology.sql.in
@@ -1435,5 +1435,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 ++
 1 file changed, 2 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list