2008-05-17 05:28:26 +04:00
|
|
|
/*
|
2010-09-21 00:08:53 +04:00
|
|
|
* contrib/btree_gist/btree_float8.c
|
2008-05-17 05:28:26 +04:00
|
|
|
*/
|
2011-08-27 05:16:24 +04:00
|
|
|
#include "postgres.h"
|
|
|
|
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
#include "btree_gist.h"
|
|
|
|
#include "btree_utils_num.h"
|
2021-08-19 04:42:44 +03:00
|
|
|
#include "utils/float.h"
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
|
|
|
|
typedef struct float8key
|
|
|
|
{
|
|
|
|
float8 lower;
|
|
|
|
float8 upper;
|
|
|
|
} float8KEY;
|
|
|
|
|
|
|
|
/*
|
|
|
|
** float8 ops
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_compress);
|
2015-03-28 00:35:16 +03:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_fetch);
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_union);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_picksplit);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_consistent);
|
2011-03-02 22:43:24 +03:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_distance);
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_penalty);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_float8_same);
|
|
|
|
|
|
|
|
|
|
|
|
static bool
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8gt(const void *a, const void *b, FmgrInfo *flinfo)
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
{
|
2011-09-11 22:54:32 +04:00
|
|
|
return (*((const float8 *) a) > *((const float8 *) b));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
static bool
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8ge(const void *a, const void *b, FmgrInfo *flinfo)
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
{
|
2011-09-11 22:54:32 +04:00
|
|
|
return (*((const float8 *) a) >= *((const float8 *) b));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
static bool
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8eq(const void *a, const void *b, FmgrInfo *flinfo)
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
{
|
2011-09-11 22:54:32 +04:00
|
|
|
return (*((const float8 *) a) == *((const float8 *) b));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
static bool
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8le(const void *a, const void *b, FmgrInfo *flinfo)
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
{
|
2011-09-11 22:54:32 +04:00
|
|
|
return (*((const float8 *) a) <= *((const float8 *) b));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
static bool
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8lt(const void *a, const void *b, FmgrInfo *flinfo)
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
{
|
2011-09-11 22:54:32 +04:00
|
|
|
return (*((const float8 *) a) < *((const float8 *) b));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
{
|
2011-09-11 22:54:32 +04:00
|
|
|
float8KEY *ia = (float8KEY *) (((const Nsrt *) a)->t);
|
|
|
|
float8KEY *ib = (float8KEY *) (((const Nsrt *) b)->t);
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
|
2009-12-02 16:13:24 +03:00
|
|
|
if (ia->lower == ib->lower)
|
|
|
|
{
|
|
|
|
if (ia->upper == ib->upper)
|
|
|
|
return 0;
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
|
2009-12-02 16:13:24 +03:00
|
|
|
return (ia->upper > ib->upper) ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ia->lower > ib->lower) ? 1 : -1;
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
|
2011-03-02 22:43:24 +03:00
|
|
|
static float8
|
2017-03-21 16:12:46 +03:00
|
|
|
gbt_float8_dist(const void *a, const void *b, FmgrInfo *flinfo)
|
2011-03-02 22:43:24 +03:00
|
|
|
{
|
|
|
|
float8 arg1 = *(const float8 *) a;
|
|
|
|
float8 arg2 = *(const float8 *) b;
|
|
|
|
float8 r;
|
|
|
|
|
|
|
|
r = arg1 - arg2;
|
2021-08-19 04:42:44 +03:00
|
|
|
if (unlikely(isinf(r)) && !isinf(arg1) && !isinf(arg2))
|
|
|
|
float_overflow_error();
|
2011-03-02 22:43:24 +03:00
|
|
|
return Abs(r);
|
|
|
|
}
|
|
|
|
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
|
|
|
|
static const gbtree_ninfo tinfo =
|
|
|
|
{
|
|
|
|
gbt_t_float8,
|
|
|
|
sizeof(float8),
|
2014-05-16 23:11:51 +04:00
|
|
|
16, /* sizeof(gbtreekey16) */
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
gbt_float8gt,
|
|
|
|
gbt_float8ge,
|
|
|
|
gbt_float8eq,
|
|
|
|
gbt_float8le,
|
|
|
|
gbt_float8lt,
|
2011-03-02 22:43:24 +03:00
|
|
|
gbt_float8key_cmp,
|
|
|
|
gbt_float8_dist
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-03-02 22:43:24 +03:00
|
|
|
PG_FUNCTION_INFO_V1(float8_dist);
|
|
|
|
Datum
|
|
|
|
float8_dist(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
float8 a = PG_GETARG_FLOAT8(0);
|
|
|
|
float8 b = PG_GETARG_FLOAT8(1);
|
|
|
|
float8 r;
|
|
|
|
|
|
|
|
r = a - b;
|
2021-08-19 04:42:44 +03:00
|
|
|
if (unlikely(isinf(r)) && !isinf(a) && !isinf(b))
|
|
|
|
float_overflow_error();
|
2011-03-02 22:43:24 +03:00
|
|
|
|
|
|
|
PG_RETURN_FLOAT8(Abs(r));
|
|
|
|
}
|
|
|
|
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
/**************************************************
|
|
|
|
* float8 ops
|
|
|
|
**************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_float8_compress(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
2004-08-29 09:07:03 +04:00
|
|
|
|
2015-03-27 00:10:10 +03:00
|
|
|
PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
|
2015-03-28 00:35:16 +03:00
|
|
|
Datum
|
|
|
|
gbt_float8_fetch(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
|
|
|
|
}
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_float8_consistent(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
float8 query = PG_GETARG_FLOAT8(1);
|
2008-04-14 21:05:34 +04:00
|
|
|
StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
|
2009-06-11 18:49:15 +04:00
|
|
|
|
2008-04-14 21:05:34 +04:00
|
|
|
/* Oid subtype = PG_GETARG_OID(3); */
|
|
|
|
bool *recheck = (bool *) PG_GETARG_POINTER(4);
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
float8KEY *kkk = (float8KEY *) DatumGetPointer(entry->key);
|
|
|
|
GBT_NUMKEY_R key;
|
2008-04-14 21:05:34 +04:00
|
|
|
|
|
|
|
/* All cases served by this function are exact */
|
|
|
|
*recheck = false;
|
2004-08-29 09:07:03 +04:00
|
|
|
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
2004-08-29 09:07:03 +04:00
|
|
|
|
2017-03-21 16:12:46 +03:00
|
|
|
PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) &query, &strategy,
|
|
|
|
GIST_LEAF(entry), &tinfo,
|
|
|
|
fcinfo->flinfo));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-02 22:43:24 +03:00
|
|
|
Datum
|
|
|
|
gbt_float8_distance(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
float8 query = PG_GETARG_FLOAT8(1);
|
|
|
|
|
|
|
|
/* Oid subtype = PG_GETARG_OID(3); */
|
|
|
|
float8KEY *kkk = (float8KEY *) DatumGetPointer(entry->key);
|
|
|
|
GBT_NUMKEY_R key;
|
|
|
|
|
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
|
|
|
|
2017-03-21 16:12:46 +03:00
|
|
|
PG_RETURN_FLOAT8(gbt_num_distance(&key, (void *) &query, GIST_LEAF(entry),
|
|
|
|
&tinfo, fcinfo->flinfo));
|
2011-03-02 22:43:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
Datum
|
|
|
|
gbt_float8_union(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
|
|
|
|
void *out = palloc(sizeof(float8KEY));
|
2004-08-29 09:07:03 +04:00
|
|
|
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
*(int *) PG_GETARG_POINTER(1) = sizeof(float8KEY);
|
2017-03-21 16:12:46 +03:00
|
|
|
PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_float8_penalty(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
float8KEY *origentry = (float8KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
|
|
|
|
float8KEY *newentry = (float8KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
|
|
|
|
float *result = (float *) PG_GETARG_POINTER(2);
|
2004-08-29 09:07:03 +04:00
|
|
|
|
2005-07-01 17:44:56 +04:00
|
|
|
penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
|
|
|
|
PG_RETURN_POINTER(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_float8_picksplit(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
|
|
|
|
(GIST_SPLITVEC *) PG_GETARG_POINTER(1),
|
2017-03-21 16:12:46 +03:00
|
|
|
&tinfo, fcinfo->flinfo));
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_float8_same(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
float8KEY *b1 = (float8KEY *) PG_GETARG_POINTER(0);
|
|
|
|
float8KEY *b2 = (float8KEY *) PG_GETARG_POINTER(1);
|
|
|
|
bool *result = (bool *) PG_GETARG_POINTER(2);
|
|
|
|
|
2017-03-21 16:12:46 +03:00
|
|
|
*result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
|
New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST
2004-05-28 14:43:32 +04:00
|
|
|
PG_RETURN_POINTER(result);
|
|
|
|
}
|