File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ PostGIS 3.2.0
12
12
13
13
* Enhancements *
14
14
- #4997, FlatGeobuf format input/output (Björn Harrtell)
15
+ - #4575, GRANT SELECT on topology metadata tables to PUBLIC (Sandro Santilli)
15
16
- #2592, Do not allow CreateTopology to define topologies with SRID < 0
16
17
(Sandro Santilli)
17
18
- #3232, Prevent moving an isolated node to different face
Original file line number Diff line number Diff line change @@ -1827,4 +1827,9 @@ CREATE OR REPLACE FUNCTION topology.postgis_topology_scripts_installed() RETURNS
1827
1827
-- Make sure topology is in database search path --
1828
1828
SELECT topology.AddToSearchPath('topology');
1829
1829
1830
+ -- Make metadata tables publically visible
1831
+ -- See https://trac.osgeo.org/postgis/ticket/4575
1832
+ GRANT SELECT ON topology.topology TO PUBLIC;
1833
+ GRANT SELECT ON topology.layer TO PUBLIC;
1834
+
1830
1835
COMMIT;
You can’t perform that action at this time.
0 commit comments