[postgis-tickets] [SCM] PostGIS branch main updated. 3.1.0rc1-434-gf5bbe56
git at osgeo.org
git at osgeo.org
Fri Aug 27 14:41:10 PDT 2021
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, main has been updated
via f5bbe5655b1416420711d8b61adf5cf4b54a5e62 (commit)
from 4b64d38dd391e36b9cfe9c0e2bdf747e2c3e9d22 (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 f5bbe5655b1416420711d8b61adf5cf4b54a5e62
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Aug 27 23:40:53 2021 +0200
Fix example of TopoGeom_addTopoGeom
diff --git a/doc/extras_topology.xml b/doc/extras_topology.xml
index 78ccbfd..6972c07 100644
--- a/doc/extras_topology.xml
+++ b/doc/extras_topology.xml
@@ -3409,12 +3409,12 @@ of the same child layer.
<programlisting>
-- Set an "overall" TopoGeometry value to be composed by all
-- elements of specific TopoGeometry values
-UPDATE mylayer SET tg_overall = TopoGeom_addTopogeometry(
- TopoGeom_addTopoGeometry(
+UPDATE mylayer SET tg_overall = TopoGeom_addTopogeom(
+ TopoGeom_addTopoGeom(
clearTopoGeom(tg_overall),
tg_specific1
),
- tg_specific1
+ tg_specific2
);
</programlisting>
</refsection>
-----------------------------------------------------------------------
Summary of changes:
doc/extras_topology.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list