PostgreSQL Source Code  git master
btree_utils_num.h
Go to the documentation of this file.
1 /*
2  * contrib/btree_gist/btree_utils_num.h
3  */
4 #ifndef __BTREE_UTILS_NUM_H__
5 #define __BTREE_UTILS_NUM_H__
6 
7 #include <math.h>
8 #include <float.h>
9 
10 #include "access/gist.h"
11 #include "btree_gist.h"
12 #include "utils/rel.h"
13 
14 typedef char GBT_NUMKEY;
15 
16 /* Better readable key */
17 typedef struct
18 {
19  const GBT_NUMKEY *lower,
21 } GBT_NUMKEY_R;
22 
23 
24 /* for sorting */
25 typedef struct
26 {
27  int i;
29 } Nsrt;
30 
31 
32 /* type description */
33 
34 typedef struct
35 {
36 
37  /* Attribs */
38 
39  enum gbtree_type t; /* data type */
40  int32 size; /* size of type, 0 means variable */
41  int32 indexsize; /* size of datums stored in index */
42 
43  /* Methods */
44 
45  bool (*f_gt) (const void *, const void *, FmgrInfo *); /* greater than */
46  bool (*f_ge) (const void *, const void *, FmgrInfo *); /* greater or equal */
47  bool (*f_eq) (const void *, const void *, FmgrInfo *); /* equal */
48  bool (*f_le) (const void *, const void *, FmgrInfo *); /* less or equal */
49  bool (*f_lt) (const void *, const void *, FmgrInfo *); /* less than */
50  int (*f_cmp) (const void *, const void *, FmgrInfo *); /* key compare function */
51  float8 (*f_dist) (const void *, const void *, FmgrInfo *); /* key distance function */
52 } gbtree_ninfo;
53 
54 
55 /*
56  * Numeric btree functions
57  */
58 
59 
60 
61 /*
62  * Note: The factor 0.49 in following macro avoids floating point overflows
63  */
64 #define penalty_num(result,olower,oupper,nlower,nupper) do { \
65  double tmp = 0.0F; \
66  (*(result)) = 0.0F; \
67  if ( (nupper) > (oupper) ) \
68  tmp += ( ((double)nupper)*0.49F - ((double)oupper)*0.49F ); \
69  if ( (olower) > (nlower) ) \
70  tmp += ( ((double)olower)*0.49F - ((double)nlower)*0.49F ); \
71  if (tmp > 0.0F) \
72  { \
73  (*(result)) += FLT_MIN; \
74  (*(result)) += (float) ( ((double)(tmp)) / ( (double)(tmp) + ( ((double)(oupper))*0.49F - ((double)(olower))*0.49F ) ) ); \
75  (*(result)) *= (FLT_MAX / (((GISTENTRY *) PG_GETARG_POINTER(0))->rel->rd_att->natts + 1)); \
76  } \
77 } while (0)
78 
79 
80 /*
81  * Convert an Interval to an approximate equivalent number of seconds
82  * (as a double). Here because we need it for time/timetz as well as
83  * interval. See interval_cmp_internal for comparison.
84  */
85 #define INTERVAL_TO_SEC(ivp) \
86  (((double) (ivp)->time) / ((double) USECS_PER_SEC) + \
87  (ivp)->day * (24.0 * SECS_PER_HOUR) + \
88  (ivp)->month * (30.0 * SECS_PER_DAY))
89 
90 #define GET_FLOAT_DISTANCE(t, arg1, arg2) fabs( ((float8) *((const t *) (arg1))) - ((float8) *((const t *) (arg2))) )
91 
92 
94 
95 extern bool gbt_num_consistent(const GBT_NUMKEY_R *key, const void *query,
96  const StrategyNumber *strategy, bool is_leaf,
97  const gbtree_ninfo *tinfo, FmgrInfo *flinfo);
98 
99 extern float8 gbt_num_distance(const GBT_NUMKEY_R *key, const void *query,
100  bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo);
101 
103  const gbtree_ninfo *tinfo, FmgrInfo *flinfo);
104 
105 extern GISTENTRY *gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo);
106 
107 extern GISTENTRY *gbt_num_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo);
108 
109 extern void *gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec,
110  const gbtree_ninfo *tinfo, FmgrInfo *flinfo);
111 
112 extern bool gbt_num_same(const GBT_NUMKEY *a, const GBT_NUMKEY *b,
113  const gbtree_ninfo *tinfo, FmgrInfo *flinfo);
114 
115 extern void gbt_num_bin_union(Datum *u, GBT_NUMKEY *e,
116  const gbtree_ninfo *tinfo, FmgrInfo *flinfo);
117 
118 #endif
static const gbtree_vinfo tinfo
Definition: btree_bit.c:109
gbtree_type
Definition: btree_gist.h:15
Interval * abs_interval(Interval *a)
void gbt_num_bin_union(Datum *u, GBT_NUMKEY *e, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
float8 gbt_num_distance(const GBT_NUMKEY_R *key, const void *query, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
GISTENTRY * gbt_num_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)
bool gbt_num_consistent(const GBT_NUMKEY_R *key, const void *query, const StrategyNumber *strategy, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
bool gbt_num_same(const GBT_NUMKEY *a, const GBT_NUMKEY *b, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo)
char GBT_NUMKEY
void * gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
GIST_SPLITVEC * gbt_num_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
signed int int32
Definition: c.h:494
double float8
Definition: c.h:630
unsigned char bool
Definition: c.h:456
int b
Definition: isn.c:70
int a
Definition: isn.c:69
uintptr_t Datum
Definition: postgres.h:64
e
Definition: preproc-init.c:82
uint16 StrategyNumber
Definition: stratnum.h:22
Definition: fmgr.h:57
const GBT_NUMKEY * upper
const GBT_NUMKEY * lower
GBT_NUMKEY * t