[SCM] PostGIS branch stable-3.5 updated. 3.5.3-21-gf3fc45595

git at osgeo.org git at osgeo.org
Tue Jul 1 04:00:23 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.5 has been updated
       via  f3fc45595528bbf5172855730991eadc3e25b367 (commit)
      from  4ca710549d93933ff07d5fc5833abb7842f80cd2 (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 f3fc45595528bbf5172855730991eadc3e25b367
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
    
    References #5936 in 3.5 branch (3.5.4dev)

diff --git a/NEWS b/NEWS
index 5e40ae47d..f63f98657 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ PostgreSQL 12-18 required. GEOS 3.8+ required. Proj 6.1+ required.
 
 * Bug fixes *
 
+- #5936, [topology] Do script-based upgrade in a single transaction (Sandro Santilli)
 - #5908, [topology] Fix crash in GetFaceContainingPoint (Sandro Santilli)
 - #5907, [topology] Fix crash in TopoGeo_AddPolygon with EMPTY input (Sandro Santilli)
 - #5922, [topology] Fix crash in TopoGeo_AddLinestring with EMPTY input (Sandro Santilli)
diff --git a/topology/Makefile.in b/topology/Makefile.in
index ef8de4bb9..af1d4bf40 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