2008-05-17 09:28:26 +08:00
|
|
|
/*
|
2010-09-21 04:08:53 +08:00
|
|
|
* contrib/btree_gist/btree_interval.c
|
2008-05-17 09:28:26 +08:00
|
|
|
*/
|
2011-08-27 09:16:24 +08: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 18:43:32 +08:00
|
|
|
#include "btree_gist.h"
|
|
|
|
#include "btree_utils_num.h"
|
2016-12-29 01:00:00 +08:00
|
|
|
#include "utils/builtins.h"
|
2006-07-14 00:57:31 +08:00
|
|
|
#include "utils/timestamp.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 18:43:32 +08:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
Interval lower,
|
|
|
|
upper;
|
2009-06-11 22:49:15 +08:00
|
|
|
} intvKEY;
|
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 18:43:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Interval ops
|
|
|
|
*/
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_compress);
|
2015-03-28 05:35:16 +08:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_fetch);
|
2004-06-03 20:26:10 +08:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_decompress);
|
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 18:43:32 +08:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_union);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_picksplit);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_consistent);
|
2011-03-03 03:43:24 +08:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_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 18:43:32 +08:00
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_penalty);
|
|
|
|
PG_FUNCTION_INFO_V1(gbt_intv_same);
|
|
|
|
|
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intvgt(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 18:43:32 +08:00
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
return DatumGetBool(DirectFunctionCall2(interval_gt, IntervalPGetDatum(a), IntervalPGetDatum(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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intvge(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 18:43:32 +08:00
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
return DatumGetBool(DirectFunctionCall2(interval_ge, IntervalPGetDatum(a), IntervalPGetDatum(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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intveq(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 18:43:32 +08:00
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
return DatumGetBool(DirectFunctionCall2(interval_eq, IntervalPGetDatum(a), IntervalPGetDatum(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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intvle(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 18:43:32 +08:00
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
return DatumGetBool(DirectFunctionCall2(interval_le, IntervalPGetDatum(a), IntervalPGetDatum(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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
static bool
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intvlt(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 18:43:32 +08:00
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
return DatumGetBool(DirectFunctionCall2(interval_lt, IntervalPGetDatum(a), IntervalPGetDatum(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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intvkey_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 18:43:32 +08:00
|
|
|
{
|
2011-09-12 02:54:32 +08:00
|
|
|
intvKEY *ia = (intvKEY *) (((const Nsrt *) a)->t);
|
|
|
|
intvKEY *ib = (intvKEY *) (((const Nsrt *) b)->t);
|
2010-02-26 10:01:40 +08:00
|
|
|
int res;
|
2009-12-02 21:13:24 +08:00
|
|
|
|
|
|
|
res = DatumGetInt32(DirectFunctionCall2(interval_cmp, IntervalPGetDatum(&ia->lower), IntervalPGetDatum(&ib->lower)));
|
|
|
|
if (res == 0)
|
|
|
|
return DatumGetInt32(DirectFunctionCall2(interval_cmp, IntervalPGetDatum(&ia->upper), IntervalPGetDatum(&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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
2004-06-03 20:26:10 +08:00
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
static double
|
|
|
|
intr2num(const Interval *i)
|
2004-06-03 20:26:10 +08:00
|
|
|
{
|
2005-07-21 12:15:04 +08:00
|
|
|
return INTERVAL_TO_SEC(i);
|
2004-06-03 20:26:10 +08:00
|
|
|
}
|
|
|
|
|
2011-03-03 03:43:24 +08:00
|
|
|
static float8
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_intv_dist(const void *a, const void *b, FmgrInfo *flinfo)
|
2011-03-03 03:43:24 +08:00
|
|
|
{
|
2011-09-12 02:54:32 +08:00
|
|
|
return (float8) Abs(intr2num((const Interval *) a) - intr2num((const Interval *) b));
|
2011-03-03 03:43:24 +08:00
|
|
|
}
|
|
|
|
|
2005-07-21 12:15:04 +08:00
|
|
|
/*
|
|
|
|
* INTERVALSIZE should be the actual size-on-disk of an Interval, as shown
|
2014-05-07 00:12:18 +08:00
|
|
|
* in pg_type. This might be less than sizeof(Interval) if the compiler
|
2014-05-17 03:11:51 +08:00
|
|
|
* insists on adding alignment padding at the end of the struct. (Note:
|
|
|
|
* this concern is obsolete with the current definition of Interval, but
|
|
|
|
* was real before a separate "day" field was added to it.)
|
2005-07-21 12:15:04 +08:00
|
|
|
*/
|
2005-07-21 02:17:39 +08:00
|
|
|
#define INTERVALSIZE 16
|
2004-06-03 20:26:10 +08:00
|
|
|
|
2004-08-29 13:07:03 +08: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 18:43:32 +08:00
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
gbt_t_intv,
|
|
|
|
sizeof(Interval),
|
2014-05-17 03:11:51 +08:00
|
|
|
32, /* sizeof(gbtreekey32) */
|
2004-08-29 13:07:03 +08:00
|
|
|
gbt_intvgt,
|
|
|
|
gbt_intvge,
|
|
|
|
gbt_intveq,
|
|
|
|
gbt_intvle,
|
|
|
|
gbt_intvlt,
|
2011-03-03 03:43:24 +08:00
|
|
|
gbt_intvkey_cmp,
|
|
|
|
gbt_intv_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 18:43:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-03-03 03:43:24 +08:00
|
|
|
Interval *
|
|
|
|
abs_interval(Interval *a)
|
|
|
|
{
|
|
|
|
static Interval zero = {0, 0, 0};
|
|
|
|
|
|
|
|
if (DatumGetBool(DirectFunctionCall2(interval_lt,
|
|
|
|
IntervalPGetDatum(a),
|
|
|
|
IntervalPGetDatum(&zero))))
|
|
|
|
a = DatumGetIntervalP(DirectFunctionCall1(interval_um,
|
|
|
|
IntervalPGetDatum(a)));
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
PG_FUNCTION_INFO_V1(interval_dist);
|
|
|
|
Datum
|
|
|
|
interval_dist(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
Datum diff = DirectFunctionCall2(interval_mi,
|
|
|
|
PG_GETARG_DATUM(0),
|
|
|
|
PG_GETARG_DATUM(1));
|
|
|
|
|
|
|
|
PG_RETURN_INTERVAL_P(abs_interval(DatumGetIntervalP(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 18:43:32 +08:00
|
|
|
/**************************************************
|
|
|
|
* interval ops
|
|
|
|
**************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_intv_compress(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
GISTENTRY *retval = entry;
|
|
|
|
|
|
|
|
if (entry->leafkey || INTERVALSIZE != sizeof(Interval))
|
|
|
|
{
|
|
|
|
char *r = (char *) palloc(2 * INTERVALSIZE);
|
|
|
|
|
|
|
|
retval = palloc(sizeof(GISTENTRY));
|
|
|
|
|
|
|
|
if (entry->leafkey)
|
|
|
|
{
|
|
|
|
Interval *key = DatumGetIntervalP(entry->key);
|
|
|
|
|
|
|
|
memcpy((void *) r, (void *) key, INTERVALSIZE);
|
|
|
|
memcpy((void *) (r + INTERVALSIZE), (void *) key, INTERVALSIZE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
intvKEY *key = (intvKEY *) DatumGetPointer(entry->key);
|
|
|
|
|
|
|
|
memcpy(r, &key->lower, INTERVALSIZE);
|
|
|
|
memcpy(r + INTERVALSIZE, &key->upper, INTERVALSIZE);
|
|
|
|
}
|
|
|
|
gistentryinit(*retval, PointerGetDatum(r),
|
|
|
|
entry->rel, entry->page,
|
2017-08-16 12:22:32 +08:00
|
|
|
entry->offset, false);
|
2004-08-29 13:07:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(retval);
|
2004-06-03 20:26:10 +08: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 18:43:32 +08:00
|
|
|
}
|
2004-06-03 20:26:10 +08:00
|
|
|
|
2015-03-28 05:35:16 +08:00
|
|
|
Datum
|
|
|
|
gbt_intv_fetch(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
|
|
|
|
PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
|
|
|
|
}
|
|
|
|
|
2004-06-03 20:26:10 +08:00
|
|
|
Datum
|
|
|
|
gbt_intv_decompress(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
GISTENTRY *retval = entry;
|
2004-06-03 20:26:10 +08:00
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
if (INTERVALSIZE != sizeof(Interval))
|
|
|
|
{
|
|
|
|
intvKEY *r = palloc(sizeof(intvKEY));
|
|
|
|
char *key = DatumGetPointer(entry->key);
|
2004-06-03 20:26:10 +08:00
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
retval = palloc(sizeof(GISTENTRY));
|
|
|
|
memcpy(&r->lower, key, INTERVALSIZE);
|
|
|
|
memcpy(&r->upper, key + INTERVALSIZE, INTERVALSIZE);
|
2004-06-03 20:26:10 +08:00
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
gistentryinit(*retval, PointerGetDatum(r),
|
|
|
|
entry->rel, entry->page,
|
2017-08-16 12:22:32 +08:00
|
|
|
entry->offset, false);
|
2004-08-29 13:07:03 +08:00
|
|
|
}
|
|
|
|
PG_RETURN_POINTER(retval);
|
2004-06-03 20:26:10 +08: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 18:43:32 +08:00
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_intv_consistent(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
Interval *query = PG_GETARG_INTERVAL_P(1);
|
2008-04-15 01:05:34 +08:00
|
|
|
StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
|
2009-06-11 22:49:15 +08:00
|
|
|
|
2008-04-15 01:05:34 +08:00
|
|
|
/* Oid subtype = PG_GETARG_OID(3); */
|
|
|
|
bool *recheck = (bool *) PG_GETARG_POINTER(4);
|
2004-08-29 13:07:03 +08:00
|
|
|
intvKEY *kkk = (intvKEY *) DatumGetPointer(entry->key);
|
|
|
|
GBT_NUMKEY_R key;
|
2008-04-15 01:05:34 +08:00
|
|
|
|
|
|
|
/* All cases served by this function are exact */
|
|
|
|
*recheck = false;
|
2004-08-29 13:07:03 +08:00
|
|
|
|
2009-06-11 22:49:15 +08:00
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
2004-08-29 13:07:03 +08:00
|
|
|
|
|
|
|
PG_RETURN_BOOL(
|
2017-03-21 21:12:46 +08:00
|
|
|
gbt_num_consistent(&key, (void *) query, &strategy, GIST_LEAF(entry), &tinfo, fcinfo->flinfo)
|
2004-08-29 13:07:03 +08: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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-03 03:43:24 +08:00
|
|
|
Datum
|
|
|
|
gbt_intv_distance(PG_FUNCTION_ARGS)
|
|
|
|
{
|
|
|
|
GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
|
|
|
|
Interval *query = PG_GETARG_INTERVAL_P(1);
|
|
|
|
|
|
|
|
/* Oid subtype = PG_GETARG_OID(3); */
|
|
|
|
intvKEY *kkk = (intvKEY *) DatumGetPointer(entry->key);
|
|
|
|
GBT_NUMKEY_R key;
|
|
|
|
|
|
|
|
key.lower = (GBT_NUMKEY *) &kkk->lower;
|
|
|
|
key.upper = (GBT_NUMKEY *) &kkk->upper;
|
|
|
|
|
|
|
|
PG_RETURN_FLOAT8(
|
2017-05-18 04:31:56 +08:00
|
|
|
gbt_num_distance(&key, (void *) query, GIST_LEAF(entry), &tinfo, fcinfo->flinfo)
|
2011-03-03 03:43:24 +08: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 18:43:32 +08:00
|
|
|
Datum
|
|
|
|
gbt_intv_union(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
|
|
|
|
void *out = palloc(sizeof(intvKEY));
|
|
|
|
|
|
|
|
*(int *) PG_GETARG_POINTER(1) = sizeof(intvKEY);
|
2017-03-21 21:12:46 +08: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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_intv_penalty(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
intvKEY *origentry = (intvKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
|
|
|
|
intvKEY *newentry = (intvKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
|
|
|
|
float *result = (float *) PG_GETARG_POINTER(2);
|
|
|
|
double iorg[2],
|
2005-07-01 21:44:56 +08:00
|
|
|
inew[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 18:43:32 +08:00
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
iorg[0] = intr2num(&origentry->lower);
|
|
|
|
iorg[1] = intr2num(&origentry->upper);
|
|
|
|
inew[0] = intr2num(&newentry->lower);
|
|
|
|
inew[1] = intr2num(&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 18:43:32 +08:00
|
|
|
|
2005-10-15 10:49:52 +08:00
|
|
|
penalty_num(result, iorg[0], iorg[1], inew[0], inew[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 18:43:32 +08:00
|
|
|
|
2004-08-29 13:07:03 +08:00
|
|
|
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 18:43:32 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_intv_picksplit(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
PG_RETURN_POINTER(gbt_num_picksplit(
|
Phase 3 of pgindent updates.
Don't move parenthesized lines to the left, even if that means they
flow past the right margin.
By default, BSD indent lines up statement continuation lines that are
within parentheses so that they start just to the right of the preceding
left parenthesis. However, traditionally, if that resulted in the
continuation line extending to the right of the desired right margin,
then indent would push it left just far enough to not overrun the margin,
if it could do so without making the continuation line start to the left of
the current statement indent. That makes for a weird mix of indentations
unless one has been completely rigid about never violating the 80-column
limit.
This behavior has been pretty universally panned by Postgres developers.
Hence, disable it with indent's new -lpl switch, so that parenthesized
lines are always lined up with the preceding left paren.
This patch is much less interesting than the first round of indent
changes, but also bulkier, so I thought it best to separate the effects.
Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
2017-06-22 03:35:54 +08:00
|
|
|
(GistEntryVector *) PG_GETARG_POINTER(0),
|
|
|
|
(GIST_SPLITVEC *) PG_GETARG_POINTER(1),
|
2017-03-21 21:12:46 +08:00
|
|
|
&tinfo, fcinfo->flinfo
|
2004-08-29 13:07:03 +08: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 18:43:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Datum
|
|
|
|
gbt_intv_same(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2004-08-29 13:07:03 +08:00
|
|
|
intvKEY *b1 = (intvKEY *) PG_GETARG_POINTER(0);
|
|
|
|
intvKEY *b2 = (intvKEY *) 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 18:43:32 +08:00
|
|
|
|
2017-03-21 21:12:46 +08:00
|
|
|
*result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
|
2004-08-29 13:07:03 +08:00
|
|
|
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 18:43:32 +08:00
|
|
|
}
|