From: Sandro Santilli Date: Fri, 4 Mar 2016 08:29:45 +0000 (+0000) Subject: Add comment to topology face and node tables X-Git-Tag: 2.3.0beta1~189 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=477d9231bc72df0ff8600c2c9b710ee3836108e1;p=postgis Add comment to topology face and node tables git-svn-id: http://svn.osgeo.org/postgis/trunk@14744 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/topology.sql.in b/topology/topology.sql.in index 62e15d6f5..c9cb7216b 100644 --- a/topology/topology.sql.in +++ b/topology/topology.sql.in @@ -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''';