PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ gserialized_gidx_geom_within()

Datum gserialized_gidx_geom_within ( PG_FUNCTION_ARGS  )

Definition at line 753 of file gserialized_gist_nd.c.

754{
755 GIDX *gidx = (GIDX *)PG_GETARG_POINTER(0);
756
757 if (gserialized_datum_predicate_geom_gidx(PG_GETARG_DATUM(1), gidx, gidx_contains))
758 PG_RETURN_BOOL(true);
759
760 PG_RETURN_BOOL(false);
761}
bool gidx_contains(GIDX *a, GIDX *b)
static int gserialized_datum_predicate_geom_gidx(Datum gs1, GIDX *gidx2, gidx_predicate predicate)

References gidx_contains(), and gserialized_datum_predicate_geom_gidx().

Here is the call graph for this function: