[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-703-g88abe480f

git at osgeo.org git at osgeo.org
Thu Apr 7 07:47:28 PDT 2022


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  88abe480feab391f4f1daf17d93ea5c6f0e067d8 (commit)
      from  a19d7bdf5918a14ab29654a1ee183d5cf354403d (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 88abe480feab391f4f1daf17d93ea5c6f0e067d8
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Apr 7 16:45:52 2022 +0200

    GRANT USAGE ON SCHEMA topology TO PUBLIC
    
    Closes #5124 in master branch (3.3.0dev)

diff --git a/NEWS b/NEWS
index 8093b473a..7513c36db 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ PostGIS 3.3.0dev
   - Drop support for PostgreSQL 9.6 and 10 (Regina Obe)
 
  * Enhancements *
+  - #5124, GRANT USAGE on topology schema to PUBLIC (Sandro Santilli)
   - #2861, Add index on topology.node(containing_face) speeding up
     splitting and merging of faces (Sandro Santilli)
   - #2083, Speed up ST_RemEdge topology functions adding index on
diff --git a/topology/topology.sql.in b/topology/topology.sql.in
index 553e8c1b5..a73391687 100644
--- a/topology/topology.sql.in
+++ b/topology/topology.sql.in
@@ -1430,5 +1430,7 @@ SELECT topology.AddToSearchPath('topology');
 -- See https://trac.osgeo.org/postgis/ticket/4575
 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;
 
 COMMIT;

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

Summary of changes:
 NEWS                     | 1 +
 topology/topology.sql.in | 2 ++
 2 files changed, 3 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list