PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_hasBBOX()

Datum LWGEOM_hasBBOX ( PG_FUNCTION_ARGS  )

Definition at line 1998 of file lwgeom_functions_basic.c.

References gserialized_has_bbox(), LWGEOM_ndims(), PG_FUNCTION_INFO_V1(), and window::res.

Referenced by LWGEOM_hasm().

1999 {
2000  GSERIALIZED *in = PG_GETARG_GSERIALIZED_P(0);
2001  char res = gserialized_has_bbox(in);
2002  PG_FREE_IF_COPY(in, 0);
2003  PG_RETURN_BOOL(res);
2004 }
tuple res
Definition: window.py:78
int gserialized_has_bbox(const GSERIALIZED *gser)
Check if a GSERIALIZED has a bounding box without deserializing first.
Definition: g_serialized.c:40
Here is the call graph for this function:
Here is the caller graph for this function: