PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ gserialized_gist_same()

Datum gserialized_gist_same ( PG_FUNCTION_ARGS  )

Definition at line 1443 of file gserialized_gist_nd.c.

1444 {
1445  GIDX *b1 = (GIDX*)PG_GETARG_POINTER(0);
1446  GIDX *b2 = (GIDX*)PG_GETARG_POINTER(1);
1447  bool *result = (bool*)PG_GETARG_POINTER(2);
1448 
1449  POSTGIS_DEBUG(4, "[GIST] 'same' function called");
1450 
1451  *result = gidx_equals(b1, b2);
1452 
1453  PG_RETURN_POINTER(result);
1454 }
static bool gidx_equals(GIDX *a, GIDX *b)

References gidx_equals().

Here is the call graph for this function: