Show
Ignore:
Timestamp:
11/17/09 12:03:50 (3 years ago)
Author:
pramsey
Message:

Implement ST_CollectionExtract() to pull specific homogeneous collections out of heterogeneous collections. Regressions and documentation included. (#218)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/postgis/postgis.sql.in.c

    r4836 r4847  
    14371437        RETURNS geometry 
    14381438        AS 'MODULE_PATHNAME', 'LWGEOM_force_collection' 
     1439        LANGUAGE 'C' IMMUTABLE STRICT; 
     1440 
     1441-- Availability: 1.5.0 
     1442CREATE OR REPLACE FUNCTION ST_CollectionExtract(geometry, integer) 
     1443        RETURNS geometry 
     1444        AS 'MODULE_PATHNAME', 'ST_CollectionExtract' 
    14391445        LANGUAGE 'C' IMMUTABLE STRICT; 
    14401446