PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_hasBBOX()

Datum LWGEOM_hasBBOX ( PG_FUNCTION_ARGS  )

Definition at line 2005 of file lwgeom_functions_basic.c.

2006 {
2007  GSERIALIZED *in = PG_GETARG_GSERIALIZED_P(0);
2008  char res = gserialized_has_bbox(in);
2009  PG_FREE_IF_COPY(in, 0);
2010  PG_RETURN_BOOL(res);
2011 }
int gserialized_has_bbox(const GSERIALIZED *gser)
Check if a GSERIALIZED has a bounding box without deserializing first.
Definition: g_serialized.c:40
tuple res
Definition: window.py:78

References gserialized_has_bbox(), and window::res.

Here is the call graph for this function: