PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ LWGEOM_hasBBOX()

Datum LWGEOM_hasBBOX ( PG_FUNCTION_ARGS  )

Definition at line 1979 of file lwgeom_functions_basic.c.

1980 {
1981  GSERIALIZED *in = PG_GETARG_GSERIALIZED_HEADER(0);
1982  char res = gserialized_has_bbox(in);
1983  PG_FREE_IF_COPY(in, 0);
1984  PG_RETURN_BOOL(res);
1985 }
int gserialized_has_bbox(const GSERIALIZED *g)
Check if a GSERIALIZED has a bounding box without deserializing first.
Definition: gserialized.c:163
tuple res
Definition: window.py:79

References gserialized_has_bbox(), and window::res.

Here is the call graph for this function: