]> granicus.if.org Git - postgis/commitdiff
Add comment to topology face and node tables
authorSandro Santilli <strk@keybit.net>
Fri, 4 Mar 2016 08:29:45 +0000 (08:29 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 4 Mar 2016 08:29:45 +0000 (08:29 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@14744 b70326c6-7e19-0410-871a-916f4a2858ee

topology/topology.sql.in

index 62e15d6f5a7d3af84c157f7b9edd3df839bd0ffe..c9cb7216b0409dd4ea48298a1d03874b2e5b29d4 100644 (file)
@@ -1739,6 +1739,11 @@ BEGIN
   ||',''face'',''mbr'','||quote_literal(srid)
   ||',''POLYGON'',2)'; -- 2d only mbr is good enough
 
+  -- Face standard view description
+  EXECUTE 'COMMENT ON TABLE ' || quote_ident(atopology)
+    || '.face IS '
+       '''Contains face topology primitives''';
+
   -------------} END OF face CREATION
 
 
@@ -1766,6 +1771,11 @@ BEGIN
   ||',''node'',''geom'','||quote_literal(srid)
   ||',''POINT'',' || ndims || ')';
 
+  -- Node standard view description
+  EXECUTE 'COMMENT ON TABLE ' || quote_ident(atopology)
+    || '.node IS '
+       '''Contains node topology primitives''';
+
   --------------} END OF node CREATION
 
   --------------{ edge CREATION
@@ -1826,7 +1836,7 @@ BEGIN
        ' left_face, right_face, geom FROM '
     || quote_ident(atopology) || '.edge_data';
 
-  -- edge standard view description
+  -- Edge standard view description
   EXECUTE 'COMMENT ON VIEW ' || quote_ident(atopology)
     || '.edge IS '
        '''Contains edge topology primitives''';