From: Sandro Santilli Date: Tue, 16 Oct 2012 08:29:15 +0000 (+0000) Subject: Have TopologySummary use the word "Mixed" for collection layers X-Git-Tag: 2.1.0beta2~534 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6404af057913d88575be55e75fab2e926b278ac3;p=postgis Have TopologySummary use the word "Mixed" for collection layers git-svn-id: http://svn.osgeo.org/postgis/trunk@10434 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/sql/manage/TopologySummary.sql.in.c b/topology/sql/manage/TopologySummary.sql.in.c index 9d99484f2..fa4a9162f 100644 --- a/topology/sql/manage/TopologySummary.sql.in.c +++ b/topology/sql/manage/TopologySummary.sql.in.c @@ -100,6 +100,8 @@ BEGIN ret = ret || 'Lineal'; WHEN rec.feature_type = 3 THEN ret = ret || 'Polygonal'; + WHEN rec.feature_type = 4 THEN + ret = ret || 'Mixed'; ELSE ret = ret || '???'; END CASE;