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

◆ gserialized_gist_same()

Datum gserialized_gist_same ( PG_FUNCTION_ARGS  )

Definition at line 1254 of file gserialized_gist_nd.c.

1255{
1256 GIDX *b1 = (GIDX *)PG_GETARG_POINTER(0);
1257 GIDX *b2 = (GIDX *)PG_GETARG_POINTER(1);
1258 bool *result = (bool *)PG_GETARG_POINTER(2);
1259
1260 POSTGIS_DEBUG(4, "[GIST] 'same' function called");
1261
1262 *result = gidx_equals(b1, b2);
1263
1264 PG_RETURN_POINTER(result);
1265}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
bool gidx_equals(GIDX *a, GIDX *b)

References gidx_equals(), and result.

Here is the call graph for this function: