PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ ST_IsCollection()

Datum ST_IsCollection ( PG_FUNCTION_ARGS  )

Definition at line 2192 of file lwgeom_functions_basic.c.

2193 {
2194  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_HEADER(0);
2195  int type = gserialized_get_type(geom);
2196  PG_RETURN_BOOL(lwtype_is_collection(type));
2197 }
uint32_t gserialized_get_type(const GSERIALIZED *g)
Extract the geometry type from the serialized form (it hides in the anonymous data area,...
Definition: gserialized.c:89
int lwtype_is_collection(uint8_t type)
Determine whether a type number is a collection or not.
Definition: lwgeom.c:1088
type
Definition: ovdump.py:42

References gserialized_get_type(), lwtype_is_collection(), and ovdump::type.

Here is the call graph for this function: