1269 GISTENTRY *entry = (GISTENTRY*) PG_GETARG_POINTER(0);
1272 StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
1274 #if POSTGIS_PGSQL_VERSION >= 95
1275 bool *recheck = (
bool *) PG_GETARG_POINTER(4);
1278 POSTGIS_DEBUG(4,
"[GIST] 'distance' function called");
1282 if ( strategy != 13 && strategy != 14 ) {
1283 elog(ERROR,
"unrecognized strategy number: %d", strategy);
1284 PG_RETURN_FLOAT8(FLT_MAX);
1290 POSTGIS_DEBUG(4,
"[GIST] null query_gbox_index!");
1291 PG_RETURN_FLOAT8(FLT_MAX);
1295 entry_box = (BOX2DF*)DatumGetPointer(entry->key);
1297 #if POSTGIS_PGSQL_VERSION >= 95
1300 if ( strategy == 14 )
1305 else if ( strategy == 13 )
1312 if (GIST_LEAF(entry))
1317 elog(ERROR,
"%s: reached unreachable code", __func__);
1322 if ( strategy == 14 )
1329 if (GIST_LEAF(entry))
1337 distance = (double)box2df_distance_node_centroid(entry_box, &query_box);
static double box2df_distance(const BOX2DF *a, const BOX2DF *b)
Calculate the box->box distance.
static double box2df_distance_leaf_centroid(const BOX2DF *a, const BOX2DF *b)
Calculate the centroid->centroid distance between the boxes.
int gserialized_datum_get_box2df_p(Datum gsdatum, BOX2DF *box2df)
Peak into a GSERIALIZED datum to find the bounding box.
Datum distance(PG_FUNCTION_ARGS)