[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-687-gb07418304
git at osgeo.org
git at osgeo.org
Wed Mar 30 12:46:31 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, master has been updated
via b0741830443c896ebbf15b51486a2b23787b7485 (commit)
from e4495fb792fe31a87a84e92297d276baf254007a (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 b0741830443c896ebbf15b51486a2b23787b7485
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Mar 30 21:44:51 2022 +0200
Add missing argument to printf command
The lack of argument was introduced with
854103fa2e087b53485c8cf403a1fcb952146be2
diff --git a/topology/postgis_topology.c b/topology/postgis_topology.c
index e1e9076af..5ddc2809c 100644
--- a/topology/postgis_topology.c
+++ b/topology/postgis_topology.c
@@ -2196,7 +2196,9 @@ cb_updateTopoGeomEdgeSplit ( const LWT_BE_TOPOLOGY* topo,
"l.topology_id = %d AND l.level = 0 AND l.layer_id = r.layer_id "
"AND r.element_id IN ( %" LWTFMT_ELEMID ", -%" LWTFMT_ELEMID
") AND r.element_type = 2",
- topo->name, (new_edge2 == -1 ? "," : "USING" ), topo->id, split_edge );
+ topo->name, (new_edge2 == -1 ? "," : "USING" ),
+ topo->id,
+ split_edge, split_edge );
if ( new_edge2 != -1 )
{
appendStringInfo(sql, " RETURNING %s", proj);
-----------------------------------------------------------------------
Summary of changes:
topology/postgis_topology.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list