Thanks to visit codestin.com
Credit goes to doxygen.postgresql.org

PostgreSQL Source Code git master
btree_int2.c
Go to the documentation of this file.
1/*
2 * contrib/btree_gist/btree_int2.c
3 */
4#include "postgres.h"
5
6#include "btree_gist.h"
7#include "btree_utils_num.h"
8#include "common/int.h"
9#include "utils/rel.h"
10#include "utils/sortsupport.h"
11
12typedef struct int16key
13{
17
18/* GiST support functions */
28
29
30static bool
31gbt_int2gt(const void *a, const void *b, FmgrInfo *flinfo)
32{
33 return (*((const int16 *) a) > *((const int16 *) b));
34}
35static bool
36gbt_int2ge(const void *a, const void *b, FmgrInfo *flinfo)
37{
38 return (*((const int16 *) a) >= *((const int16 *) b));
39}
40static bool
41gbt_int2eq(const void *a, const void *b, FmgrInfo *flinfo)
42{
43 return (*((const int16 *) a) == *((const int16 *) b));
44}
45static bool
46gbt_int2le(const void *a, const void *b, FmgrInfo *flinfo)
47{
48 return (*((const int16 *) a) <= *((const int16 *) b));
49}
50static bool
51gbt_int2lt(const void *a, const void *b, FmgrInfo *flinfo)
52{
53 return (*((const int16 *) a) < *((const int16 *) b));
54}
55
56static int
57gbt_int2key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
58{
59 int16KEY *ia = (int16KEY *) (((const Nsrt *) a)->t);
60 int16KEY *ib = (int16KEY *) (((const Nsrt *) b)->t);
61
62 if (ia->lower == ib->lower)
63 {
64 if (ia->upper == ib->upper)
65 return 0;
66
67 return (ia->upper > ib->upper) ? 1 : -1;
68 }
69
70 return (ia->lower > ib->lower) ? 1 : -1;
71}
72
73static float8
74gbt_int2_dist(const void *a, const void *b, FmgrInfo *flinfo)
75{
76 return GET_FLOAT_DISTANCE(int16, a, b);
77}
78
79
80static const gbtree_ninfo tinfo =
81{
83 sizeof(int16),
84 4, /* sizeof(gbtreekey4) */
92};
93
94
98{
101 int16 r;
102 int16 ra;
103
104 if (pg_sub_s16_overflow(a, b, &r) ||
105 r == PG_INT16_MIN)
107 (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
108 errmsg("smallint out of range")));
109
110 ra = abs(r);
111
112 PG_RETURN_INT16(ra);
113}
114
115
116/**************************************************
117 * GiST support functions
118 **************************************************/
119
120Datum
122{
123 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
124
126}
127
128Datum
130{
131 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
132
134}
135
136Datum
138{
139 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140 int16 query = PG_GETARG_INT16(1);
142
143 /* Oid subtype = PG_GETARG_OID(3); */
144 bool *recheck = (bool *) PG_GETARG_POINTER(4);
145 int16KEY *kkk = (int16KEY *) DatumGetPointer(entry->key);
147
148 /* All cases served by this function are exact */
149 *recheck = false;
150
151 key.lower = (GBT_NUMKEY *) &kkk->lower;
152 key.upper = (GBT_NUMKEY *) &kkk->upper;
153
154 PG_RETURN_BOOL(gbt_num_consistent(&key, &query, &strategy,
155 GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
156}
157
158Datum
160{
161 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
162 int16 query = PG_GETARG_INT16(1);
163
164 /* Oid subtype = PG_GETARG_OID(3); */
165 int16KEY *kkk = (int16KEY *) DatumGetPointer(entry->key);
167
168 key.lower = (GBT_NUMKEY *) &kkk->lower;
169 key.upper = (GBT_NUMKEY *) &kkk->upper;
170
172 &tinfo, fcinfo->flinfo));
173}
174
175Datum
177{
179 void *out = palloc(sizeof(int16KEY));
180
181 *(int *) PG_GETARG_POINTER(1) = sizeof(int16KEY);
182 PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
183}
184
185Datum
187{
188 int16KEY *origentry = (int16KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
190 float *result = (float *) PG_GETARG_POINTER(2);
191
192 penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
193
194 PG_RETURN_POINTER(result);
195}
196
197Datum
199{
202 &tinfo, fcinfo->flinfo));
203}
204
205Datum
207{
210 bool *result = (bool *) PG_GETARG_POINTER(2);
211
212 *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
213 PG_RETURN_POINTER(result);
214}
215
216static int
218{
219 int16KEY *arg1 = (int16KEY *) DatumGetPointer(x);
220 int16KEY *arg2 = (int16KEY *) DatumGetPointer(y);
221
222 /* for leaf items we expect lower == upper, so only compare lower */
223 if (arg1->lower < arg2->lower)
224 return -1;
225 else if (arg1->lower > arg2->lower)
226 return 1;
227 else
228 return 0;
229}
230
231Datum
233{
235
238}
@ gbt_t_int2
Definition: btree_gist.h:17
static bool gbt_int2lt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:51
static bool gbt_int2le(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:46
Datum gbt_int2_fetch(PG_FUNCTION_ARGS)
Definition: btree_int2.c:129
Datum gbt_int2_same(PG_FUNCTION_ARGS)
Definition: btree_int2.c:206
static int gbt_int2key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:57
Datum gbt_int2_sortsupport(PG_FUNCTION_ARGS)
Definition: btree_int2.c:232
Datum gbt_int2_union(PG_FUNCTION_ARGS)
Definition: btree_int2.c:176
Datum gbt_int2_consistent(PG_FUNCTION_ARGS)
Definition: btree_int2.c:137
static bool gbt_int2ge(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:36
static bool gbt_int2gt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:31
PG_FUNCTION_INFO_V1(gbt_int2_compress)
static bool gbt_int2eq(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:41
Datum gbt_int2_compress(PG_FUNCTION_ARGS)
Definition: btree_int2.c:121
static const gbtree_ninfo tinfo
Definition: btree_int2.c:80
Datum gbt_int2_distance(PG_FUNCTION_ARGS)
Definition: btree_int2.c:159
static int gbt_int2_ssup_cmp(Datum x, Datum y, SortSupport ssup)
Definition: btree_int2.c:217
Datum gbt_int2_penalty(PG_FUNCTION_ARGS)
Definition: btree_int2.c:186
Datum gbt_int2_picksplit(PG_FUNCTION_ARGS)
Definition: btree_int2.c:198
Datum int2_dist(PG_FUNCTION_ARGS)
Definition: btree_int2.c:97
static float8 gbt_int2_dist(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int2.c:74
struct int16key int16KEY
GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo)
float8 gbt_num_distance(const GBT_NUMKEY_R *key, const void *query, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
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_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)
GIST_SPLITVEC * gbt_num_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
void * gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
#define penalty_num(result, olower, oupper, nlower, nupper)
#define GET_FLOAT_DISTANCE(t, arg1, arg2)
char GBT_NUMKEY
double float8
Definition: c.h:636
int16_t int16
Definition: c.h:534
#define PG_INT16_MIN
Definition: c.h:591
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:150
#define PG_RETURN_VOID()
Definition: fmgr.h:349
#define PG_RETURN_FLOAT8(x)
Definition: fmgr.h:367
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_RETURN_INT16(x)
Definition: fmgr.h:356
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define PG_GETARG_INT16(n)
Definition: fmgr.h:271
#define GIST_LEAF(entry)
Definition: gist.h:171
static bool pg_sub_s16_overflow(int16 a, int16 b, int16 *result)
Definition: int.h:85
int y
Definition: isn.c:76
int b
Definition: isn.c:74
int x
Definition: isn.c:75
int a
Definition: isn.c:73
void * palloc(Size size)
Definition: mcxt.c:1365
uint64_t Datum
Definition: postgres.h:70
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:322
struct SortSupportData * SortSupport
Definition: sortsupport.h:58
uint16 StrategyNumber
Definition: stratnum.h:22
Definition: fmgr.h:57
Datum key
Definition: gist.h:161
int(* comparator)(Datum x, Datum y, SortSupport ssup)
Definition: sortsupport.h:106
int16 upper
Definition: btree_int2.c:15
int16 lower
Definition: btree_int2.c:14