From: Sandro Santilli Date: Thu, 17 Nov 2016 07:57:04 +0000 (+0000) Subject: Remove trailing whitespaces X-Git-Tag: 2.4.0alpha~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39dfe6fd5e795cc358482d03adecc54ce2901c22;p=postgis Remove trailing whitespaces git-svn-id: http://svn.osgeo.org/postgis/trunk@15233 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/extras_topology.xml b/doc/extras_topology.xml index 22cfaeefb..d8e3b9729 100644 --- a/doc/extras_topology.xml +++ b/doc/extras_topology.xml @@ -412,15 +412,15 @@ SELECT topology.AddTopoGeometryColumn('ri_topo', 'ri', 'roads', 'topo', 'LINE'); - + Populate_Topology_Layer Adds missing entries to topology.layer table by reading metadata from topo tables. - - + + @@ -449,18 +449,18 @@ CREATE SCHEMA strk; CREATE TABLE strk.parcels(gid serial, parcel_id varchar(20) PRIMARY KEY, address text); SELECT topology.AddTopoGeometryColumn('strk_topo', 'strk', 'parcels', 'topo', 'POLYGON'); -- this will return no records because this feature is already registered -SELECT * - FROM topology.Populate_Topology_Layer(); +SELECT * + FROM topology.Populate_Topology_Layer(); -- let's rebuild TRUNCATE TABLE topology.layer; -SELECT * - FROM topology.Populate_Topology_Layer(); - +SELECT * + FROM topology.Populate_Topology_Layer(); + SELECT topology_id,layer_id, schema_name As sn, table_name As tn, feature_column As fc FROM topology.layer; - + schema_name | table_name | feature_column -------------+------------+----------------