[postgis-tickets] [SCM] PostGIS branch stable-3.2 updated. 3.2.1-33-gab58faa8b
git at osgeo.org
git at osgeo.org
Tue Jul 12 00:38:17 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, stable-3.2 has been updated
via ab58faa8bf7b95187d74179e78946e2284fb8b85 (commit)
from 167e67f5d317eac2bfff0b1177c34c907c0a81ca (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 ab58faa8bf7b95187d74179e78946e2284fb8b85
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Jul 12 09:23:14 2022 +0200
Qualify topology type names in FindLayer and FindTopology signatures
Closes #5183 in stable-3.2 branch (3.2.2dev)
diff --git a/NEWS b/NEWS
index e52ffa767..71851600f 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ PostGIS 3.2.2dev
2022/MM/DD
* Bug Fixes *
+ - #5182, Fix loading topology.sql in new database (Sandro Santilli)
- #4835, Occasional distance errors in polar area (Paul Ramsey)
- #5124, GRANT USAGE on topology schema to PUBLIC (Sandro Santilli)
- #5120, Fix not-null result from ST_EstimatedExtent against
diff --git a/topology/sql/manage/FindLayer.sql.in b/topology/sql/manage/FindLayer.sql.in
index f7766b878..dbd621a9a 100644
--- a/topology/sql/manage/FindLayer.sql.in
+++ b/topology/sql/manage/FindLayer.sql.in
@@ -15,7 +15,7 @@
--
-- Return a topology.layer record from a TopoGeometry
--
-CREATE OR REPLACE FUNCTION topology.FindLayer(tg TopoGeometry)
+CREATE OR REPLACE FUNCTION topology.FindLayer(tg topology.TopoGeometry)
RETURNS topology.layer
AS $$
SELECT * FROM topology.layer
diff --git a/topology/sql/manage/FindTopology.sql.in b/topology/sql/manage/FindTopology.sql.in
index 484fe7c77..5362aeb88 100644
--- a/topology/sql/manage/FindTopology.sql.in
+++ b/topology/sql/manage/FindTopology.sql.in
@@ -15,7 +15,7 @@
--
-- Return a topology.topology record from a TopoGeometry
--
-CREATE OR REPLACE FUNCTION topology.FindTopology(TopoGeometry)
+CREATE OR REPLACE FUNCTION topology.FindTopology(topology.TopoGeometry)
RETURNS topology.topology
AS $$
SELECT * FROM topology.topology
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
topology/sql/manage/FindLayer.sql.in | 2 +-
topology/sql/manage/FindTopology.sql.in | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list