[SCM] PostGIS branch stable-3.3 updated. 3.3.7-49-gf590031b8
git at osgeo.org
git at osgeo.org
Fri Jul 25 01:25:57 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.3 has been updated
via f590031b8d688097e25a0b16eb339b86655854ed (commit)
via 41418c9a944a11020d14aee81b19106fb999b16d (commit)
from 505716588163b63d175ab8c40070f63979181e1d (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 f590031b8d688097e25a0b16eb339b86655854ed
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Jul 25 10:25:39 2025 +0200
Fix expected result from getfaceedges
diff --git a/topology/test/regress/st_getfaceedges_expected b/topology/test/regress/st_getfaceedges_expected
index 08d619f6f..e4c929206 100644
--- a/topology/test/regress/st_getfaceedges_expected
+++ b/topology/test/regress/st_getfaceedges_expected
@@ -38,4 +38,4 @@ t
#3265.6|2|(1,1)
#3265.6|2|(2,-2)
#3265.6|2|(3,3)
-Topology 'tt' dropped
+ERROR: Corrupted topology: unable to build geometry of face 1 from its 2 edges
commit 41418c9a944a11020d14aee81b19106fb999b16d
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Jul 25 10:10:23 2025 +0200
Fix printf format specifier
diff --git a/liblwgeom/lwgeom_topo.c b/liblwgeom/lwgeom_topo.c
index 80daa4524..584d99851 100644
--- a/liblwgeom/lwgeom_topo.c
+++ b/liblwgeom/lwgeom_topo.c
@@ -3131,7 +3131,7 @@ lwt_GetFaceEdges(LWT_TOPOLOGY* topo, LWT_ELEMID face_id, LWT_ELEMID **out )
/* _lwt_FaceByEdges should have already invoked lwerror in this case */
_lwt_release_edges(edges, numfaceedges);
lwerror("Corrupted topology: unable to build geometry of face %"
- LWTFMT_ELEMID " from its %llu edges", face_id, numfaceedges);
+ LWTFMT_ELEMID " from its %"PRIu64" edges", face_id, numfaceedges);
return -1;
}
-----------------------------------------------------------------------
Summary of changes:
liblwgeom/lwgeom_topo.c | 2 +-
topology/test/regress/st_getfaceedges_expected | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list