[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha1-144-g50796cc

git at osgeo.org git at osgeo.org
Mon Jun 29 02:04:40 PDT 2020


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  50796cc1ae7b77ec0af102c72cd7a365c0f04cd5 (commit)
      from  272f1e3af3e8cad1711c6dce4f8cc5212895f2ef (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 50796cc1ae7b77ec0af102c72cd7a365c0f04cd5
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Jun 29 10:46:10 2020 +0200

    Fix comments in testcase

diff --git a/topology/test/regress/st_addedgemodface.sql b/topology/test/regress/st_addedgemodface.sql
index b94beb8..2939c22 100644
--- a/topology/test/regress/st_addedgemodface.sql
+++ b/topology/test/regress/st_addedgemodface.sql
@@ -526,15 +526,13 @@ SELECT 'F'||face_id, st_astext(mbr) FROM city_data.face ORDER BY face_id;
 
 -- See https://trac.osgeo.org/postgis/ticket/4709
 BEGIN; -- need a transaction to corrupt the topology
--- 1. Corrupt topology by setting edge 5 next_face_right = 999999 (instead of 5)
+-- 1. Corrupt topology by setting edge 5 next_left_edge = 999999 (instead of -4)
 UPDATE city_data.edge_data
   SET
     next_left_edge = 999999,
     abs_next_left_edge = 999999
   WHERE edge_id = 5; -- corrupt topology
 -- 2. Try to add an edge closing a ring involving edge 5
--- 5 | POINT(36 38)
--- 7 | POINT(41 40)
 SELECT ST_AddEdgeModFace('city_data', 5, 7, 'LINESTRING(36 38,41 40)');
 ROLLBACK; -- restores the topology
 

-----------------------------------------------------------------------

Summary of changes:
 topology/test/regress/st_addedgemodface.sql | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list