Commit 13559b74 authored by Sandro Santilli's avatar Sandro Santilli
Browse files

Add an inspection in the final node table


git-svn-id: http://svn.osgeo.org/postgis/trunk@6427 b70326c6-7e19-0410-871a-916f4a2858ee
parent 694dec36
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -12,4 +12,9 @@ SELECT 'p1b', topology.addNode('nodes', 'POINT(0 0)');
SELECT 'p2',  topology.addNode('nodes', 'POINT(1 0)');
SELECT 'p2b', topology.addNode('nodes', 'POINT(1 0)');

-- Check we only have two points, both with unknown containing face

SELECT node_id, containing_face, st_astext(geom) from nodes.node
ORDER by node_id;

SELECT topology.DropTopology('nodes');
+2 −0
Original line number Diff line number Diff line
@@ -3,4 +3,6 @@ p1|1
p1b|1
p2|2
p2b|2
1||POINT(0 0)
2||POINT(1 0)
Topology 'nodes' dropped