]> granicus.if.org Git - postgis/commitdiff
Have TopologySummary use the word "Mixed" for collection layers
authorSandro Santilli <strk@keybit.net>
Tue, 16 Oct 2012 08:29:15 +0000 (08:29 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 16 Oct 2012 08:29:15 +0000 (08:29 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@10434 b70326c6-7e19-0410-871a-916f4a2858ee

topology/sql/manage/TopologySummary.sql.in.c

index 9d99484f205d3f484306380797cede8de2933e1b..fa4a9162fc62cb7893dffba7756b077919150cb7 100644 (file)
@@ -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;