2008-05-17 05:28:26 +04:00
|
|
|
/*
|
2010-09-21 00:08:53 +04:00
|
|
|
* contrib/btree_gist/btree_date.c
|
2008-05-17 05:28:26 +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
|
|
|
#include "btree_gist.h"
|
|
|
|
#include "btree_utils_num.h"
|
|
|
|
#include "utils/date.h"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
DateADT lower;
|
|
|
|
DateADT upper;
|
2009-06-11 18:49:15 +04:00
|
|
|
} dateKEY;
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
** date ops
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_date_compress);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_date_union);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_date_picksplit);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_date_consistent);
|
2011-03-02 22:43:24 +03:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_date_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_date_penalty);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_date_same);
|
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
Datum gbt_date_compress(PG_FUNCTION_ARGS);
|
|
|
|
Datum gbt_date_union(PG_FUNCTION_ARGS);
|
|
|
|
Datum gbt_date_picksplit(PG_FUNCTION_ARGS);
|
|
|
|
Datum gbt_date_consistent(PG_FUNCTION_ARGS);
|
2011-03-02 22:43:24 +03:00
|
|
|
Datum gbt_date_distance(PG_FUNCTION_ARGS);
|
2004-08-29 09:07:03 +04:00
|
|
|
Datum gbt_date_penalty(PG_FUNCTION_ARGS);
|
|
|
|
Datum gbt_date_same(PG_FUNCTION_ARGS);
|
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
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
static bool
|
|
|
|
gbt_dategt(const void *a, const void *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
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
return DatumGetBool(
|
|
|
|
DirectFunctionCall2(date_gt, DateADTGetDatum(*((DateADT *) a)), DateADTGetDatum(*((DateADT *) 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
|
|
|
}
|
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
static bool
|
|
|
|
gbt_datege(const void *a, const void *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
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
return DatumGetBool(
|
|
|
|
DirectFunctionCall2(date_ge, DateADTGetDatum(*((DateADT *) a)), DateADTGetDatum(*((DateADT *) 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
|
|
|
}
|
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
static bool
|
|
|
|
gbt_dateeq(const void *a, const void *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
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
return DatumGetBool(
|
|
|
|
DirectFunctionCall2(date_eq, DateADTGetDatum(*((DateADT *) a)), DateADTGetDatum(*((DateADT *) 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
|
|
|
}
|
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
static bool
|
|
|
|
gbt_datele(const void *a, const void *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
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
return DatumGetBool(
|
|
|
|
DirectFunctionCall2(date_le, DateADTGetDatum(*((DateADT *) a)), DateADTGetDatum(*((DateADT *) 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
|
|
|
}
|
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
static bool
|
|
|
|
gbt_datelt(const void *a, const void *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
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
return DatumGetBool(
|
|
|
|
DirectFunctionCall2(date_lt, DateADTGetDatum(*((DateADT *) a)), DateADTGetDatum(*((DateADT *) 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
|
|
|
|
gbt_datekey_cmp(const void *a, const void *b)
|
|
|
|
{
|
2010-02-26 05:01:40 +03:00
|
|
|
dateKEY *ia = (dateKEY *) (((Nsrt *) a)->t);
|
|
|
|
dateKEY *ib = (dateKEY *) (((Nsrt *) b)->t);
|
|
|
|
int res;
|
2009-12-02 16:13:24 +03:00
|
|
|
|
|
|
|
res = DatumGetInt32(DirectFunctionCall2(date_cmp, DateADTGetDatum(ia->lower), DateADTGetDatum(ib->lower)));
|
|
|
|
if (res == 0)
|
|
|
|
return DatumGetInt32(DirectFunctionCall2(date_cmp, DateADTGetDatum(ia->upper), DateADTGetDatum(ib->upper)));
|
|
|
|
|
|
|
|
return res;
|
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
|
|
|
|
gdb_date_dist(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
/* we assume the difference can't overflow */
|
|
|
|
Datum diff = DirectFunctionCall2(date_mi,
|
|
|
|
DateADTGetDatum(*((const DateADT *) a)),
|
|
|
|
DateADTGetDatum(*((const DateADT *) b)));
|
|
|
|
|
|
|
|
return (float8) Abs(DatumGetInt32(diff));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
static const gbtree_ninfo 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
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
gbt_t_date,
|
|
|
|
sizeof(DateADT),
|
|
|
|
gbt_dategt,
|
|
|
|
gbt_datege,
|
|
|
|
gbt_dateeq,
|
|
|
|
gbt_datele,
|
|
|
|
gbt_datelt,
|
2011-03-02 22:43:24 +03:00
|
|
|
gbt_datekey_cmp,
|
|
|
|
gdb_date_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(date_dist);
|
|
|
|
Datum date_dist(PG_FUNCTION_ARGS);
|
|
|
|
Datum
|
|
|
|
date_dist(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
/* we assume the difference can't overflow */
|
|
|
|
Datum diff = DirectFunctionCall2(date_mi,
|
|
|
|
PG_GETARG_DATUM(0),
|
|
|
|
PG_GETARG_DATUM(1));
|
|
|
|
|
|
|
|
PG_RETURN_INT32(Abs(DatumGetInt32(diff)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
/**************************************************
|
|
|
|
* date ops
|
|
|
|
**************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_date_compress(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
GISTENTRY *retval = NULL;
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(gbt_num_compress(retval, 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_date_consistent(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
DateADT query = PG_GETARG_DATEADT(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);
|
2004-08-29 09:07:03 +04:00
|
|
|
dateKEY *kkk = (dateKEY *) 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
|
|
|
|
2009-06-11 18:49:15 +04:00
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
2004-08-29 09:07:03 +04:00
|
|
|
|
|
|
|
PG_RETURN_BOOL(
|
|
|
|
gbt_num_consistent(&key, (void *) &query, &strategy, GIST_LEAF(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
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-02 22:43:24 +03:00
|
|
|
Datum
|
|
|
|
gbt_date_distance(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
DateADT query = PG_GETARG_DATEADT(1);
|
|
|
|
|
|
|
|
/* Oid subtype = PG_GETARG_OID(3); */
|
|
|
|
dateKEY *kkk = (dateKEY *) DatumGetPointer(entry->key);
|
|
|
|
GBT_NUMKEY_R key;
|
|
|
|
|
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
|
|
|
|
|
|
|
PG_RETURN_FLOAT8(
|
|
|
|
gbt_num_distance(&key, (void *) &query, GIST_LEAF(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_date_union(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
|
|
|
|
void *out = palloc(sizeof(dateKEY));
|
|
|
|
|
|
|
|
*(int *) PG_GETARG_POINTER(1) = sizeof(dateKEY);
|
|
|
|
PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &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_date_penalty(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
dateKEY *origentry = (dateKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
|
|
|
|
dateKEY *newentry = (dateKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
|
|
|
|
float *result = (float *) PG_GETARG_POINTER(2);
|
|
|
|
int32 diff,
|
|
|
|
res;
|
|
|
|
|
|
|
|
diff = DatumGetInt32(DirectFunctionCall2(
|
|
|
|
date_mi,
|
2005-10-15 06:49:52 +04:00
|
|
|
DateADTGetDatum(newentry->upper),
|
|
|
|
DateADTGetDatum(origentry->upper)));
|
2004-08-29 09:07:03 +04:00
|
|
|
|
|
|
|
res = Max(diff, 0);
|
|
|
|
|
|
|
|
diff = DatumGetInt32(DirectFunctionCall2(
|
|
|
|
date_mi,
|
2005-10-15 06:49:52 +04:00
|
|
|
DateADTGetDatum(origentry->lower),
|
|
|
|
DateADTGetDatum(newentry->lower)));
|
2004-08-29 09:07:03 +04:00
|
|
|
|
|
|
|
res += Max(diff, 0);
|
|
|
|
|
|
|
|
*result = 0.0;
|
|
|
|
|
|
|
|
if (res > 0)
|
|
|
|
{
|
|
|
|
diff = DatumGetInt32(DirectFunctionCall2(
|
|
|
|
date_mi,
|
2005-10-15 06:49:52 +04:00
|
|
|
DateADTGetDatum(origentry->upper),
|
|
|
|
DateADTGetDatum(origentry->lower)));
|
2004-08-29 09:07:03 +04:00
|
|
|
*result += FLT_MIN;
|
|
|
|
*result += (float) (res / ((double) (res + diff)));
|
|
|
|
*result *= (FLT_MAX / (((GISTENTRY *) PG_GETARG_POINTER(0))->rel->rd_att->natts + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(result);
|
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_date_picksplit(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
PG_RETURN_POINTER(gbt_num_picksplit(
|
2005-10-15 06:49:52 +04:00
|
|
|
(GistEntryVector *) PG_GETARG_POINTER(0),
|
|
|
|
(GIST_SPLITVEC *) PG_GETARG_POINTER(1),
|
2004-08-29 09:07:03 +04:00
|
|
|
&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_date_same(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 09:07:03 +04:00
|
|
|
dateKEY *b1 = (dateKEY *) PG_GETARG_POINTER(0);
|
|
|
|
dateKEY *b2 = (dateKEY *) PG_GETARG_POINTER(1);
|
|
|
|
bool *result = (bool *) PG_GETARG_POINTER(2);
|
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
|
|
|
|
2004-08-29 09:07:03 +04:00
|
|
|
*result = gbt_num_same((void *) b1, (void *) b2, &tinfo);
|
|
|
|
PG_RETURN_POINTER(result);
|
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
|
|
|
}
|