[postgis-commits] svn - r3256 - branches/1.3/lwgeom
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Wed Nov 5 03:27:37 PST 2008
Author: mcayland
Date: 2008-11-05 03:27:37 -0800 (Wed, 05 Nov 2008)
New Revision: 3256
Modified:
branches/1.3/lwgeom/lwgeom_gml.c
Log:
Fix ST_AsGML() not recognising GEOMETRYCOLLECTION as a valid geometry type from my GBT#65 fix :(
Modified: branches/1.3/lwgeom/lwgeom_gml.c
===================================================================
--- branches/1.3/lwgeom/lwgeom_gml.c 2008-11-05 11:25:14 UTC (rev 3255)
+++ branches/1.3/lwgeom/lwgeom_gml.c 2008-11-05 11:27:37 UTC (rev 3256)
@@ -153,6 +153,7 @@
case MULTIPOINTTYPE:
case MULTILINETYPE:
case MULTIPOLYGONTYPE:
+ case COLLECTIONTYPE:
inspected = lwgeom_inspect(geom);
return asgml2_inspected(inspected, srs);
More information about the postgis-commits
mailing list