PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_dropBBOX()

Datum LWGEOM_dropBBOX ( PG_FUNCTION_ARGS  )

Definition at line 703 of file lwgeom_inout.c.

704 {
705  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
706 
707  /* No box? we're done already! */
708  if ( ! gserialized_has_bbox(geom) )
709  PG_RETURN_POINTER(geom);
710 
711  PG_RETURN_POINTER(gserialized_drop_gidx(geom));
712 }
int gserialized_has_bbox(const GSERIALIZED *gser)
Check if a GSERIALIZED has a bounding box without deserializing first.
Definition: g_serialized.c:40

References gserialized_has_bbox().

Here is the call graph for this function: