[SCM] PostGIS branch stable-3.4 updated. 3.4.4-34-g75539c197
git at osgeo.org
git at osgeo.org
Tue Jul 1 04:01:31 PDT 2025
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 75539c197fd157581229ee2887e0d7ee378e5d03 (commit)
from 7e6b479dd6fd3057b9f4cdcc4219651bd0932ec2 (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 75539c197fd157581229ee2887e0d7ee378e5d03
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Jul 1 12:57:35 2025 +0200
Ensure script-based topology upgrade is in a single transaction
CLoses #5936 in 3.4 branch (3.4.5dev)
diff --git a/NEWS b/NEWS
index 07c748820..77d235595 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ Proj 6.1+ required.
* Bug Fixes *
+ - #5936, [topology] Do script-based upgrade in a single transaction (Sandro Santilli)
- #5922, [topology] Fix crash in TopoGeo_AddLinestring with EMPTY input (Sandro Santilli)
- #5908, [topology] Fix crash in GetFaceContainingPoint (Sandro Santilli)
- #5907, [topology] Fix crash in TopoGeo_AddPolygon with EMPTY input (Sandro Santilli)
diff --git a/topology/Makefile.in b/topology/Makefile.in
index be2afd862..fc6527bc3 100644
--- a/topology/Makefile.in
+++ b/topology/Makefile.in
@@ -120,7 +120,7 @@ topology_upgrade.sql.in: topology.sql ../utils/create_upgrade.pl
topology_upgrade.sql: ../postgis/common_before_upgrade.sql topology_before_upgrade.sql topology_upgrade.sql.in topology_after_upgrade.sql ../postgis/common_after_upgrade.sql
echo "BEGIN;" > $@
- cat $^ > $@
+ cat $^ >> $@
echo "COMMIT;" >> $@
topology.sql: \
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
topology/Makefile.in | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list