[SCM] PostGIS branch stable-3.4 updated. 3.4.0-57-ge8edb36ba
git at osgeo.org
git at osgeo.org
Thu Oct 26 09:51:51 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.4 has been updated
via e8edb36ba7ba542154e4493e77d1912376b2b0e9 (commit)
from add69b2213aa60862b9210bc486ac76fc71653c0 (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 e8edb36ba7ba542154e4493e77d1912376b2b0e9
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Oct 26 18:49:28 2023 +0200
Fix script-based load of topology by qualifying refs to TopoGeometry
Closes #5590 in 3.4 branch (3.4.1dev)
diff --git a/NEWS b/NEWS
index 3446965be..fe598d02b 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
* Bug Fixes *
+ - #5590, Fix script-based load of topology.sql (Sandro Santilli)
- #5574, #5575, #5576, #5577, #5578, #5579, #5569
Fix restore of postgis dumps since 2.1 (Sandro Santilli)
- #5568, Improve robustness of topology face split handling (Sandro Santilli)
diff --git a/topology/topology.sql.in b/topology/topology.sql.in
index b1d5969dd..97c0e3926 100644
--- a/topology/topology.sql.in
+++ b/topology/topology.sql.in
@@ -1300,7 +1300,7 @@ AS $$SELECT ARRAY[topo.id,topo.layer_id]::topology.topoelement;$$;
--
-- Availability: 3.4.0
-- }{
-CREATE CAST (topogeometry AS int[]) WITH FUNCTION TopoElement(topogeometry) AS ASSIGNMENT;
+CREATE CAST (topology.TopoGeometry AS int[]) WITH FUNCTION topology.TopoElement(topology.TopoGeometry) AS ASSIGNMENT;
--} TopoGeometry(int[])
--{
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
topology/topology.sql.in | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list