]> granicus.if.org Git - postgis/commitdiff
Stop WARNING from AddFace about next_left_edge/next_right_edge
authorSandro Santilli <strk@keybit.net>
Tue, 24 Jan 2012 18:04:29 +0000 (18:04 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 24 Jan 2012 18:04:29 +0000 (18:04 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8916 b70326c6-7e19-0410-871a-916f4a2858ee

doc/extras_topology.xml
topology/sql/populate.sql.in.c

index 1c6fbb82a060c598426cb9058226a1671cf12d18..41931ccd9e8718994c91f8e6f9d2d23aabdd99c9 100644 (file)
@@ -2157,6 +2157,10 @@ Isolated nodes contained in the face will also be updated to have a correct
 containing_face field value.
                 </para>
 
+               <note><para>
+This function does not use nor set the next_left_edge and next_right_edge fields of the edge table.
+                </para></note>
+
                 <para>The target topology is assumed to be valid (containing no self-intersecting edges). An exception is raised if: The polygon boundary is not fully defined by existing edges or the polygon overlaps an existing face.</para>
 
                 <para>
index 7dd1a7931615a30361fe567306f3bfad2c5eae80..2760b4e5d3f126f8f1905ed60d4f118fcabcec76 100644 (file)
@@ -616,17 +616,6 @@ BEGIN
     || quote_literal(apoly::text)
     || ', geom)';
 
-  --
-  -- TODO:
-  -- Set next_left_face and next_right_face !
-  -- These are required by the model, but not really used
-  -- by this implementation...
-  -- NOTE: should probably be done when adding edges rather than
-  --       when registering faces
-  --
-  RAISE WARNING 'Not updating next_{left,right}_face fields of face boundary edges';
-
-
   RETURN faceid;
        
 END