PostgreSQL Source Code git master
Loading...
Searching...
No Matches
btree_int8.c File Reference
#include "postgres.h"
#include "btree_gist.h"
#include "btree_utils_num.h"
#include "common/int.h"
#include "utils/rel.h"
#include "utils/sortsupport.h"
Include dependency graph for btree_int8.c:

Go to the source code of this file.

Data Structures

struct  int64key
 

Typedefs

typedef struct int64key int64KEY
 

Functions

 PG_FUNCTION_INFO_V1 (gbt_int8_compress)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_fetch)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_union)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_picksplit)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_consistent)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_distance)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_penalty)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_same)
 
 PG_FUNCTION_INFO_V1 (gbt_int8_sortsupport)
 
static bool gbt_int8gt (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int8ge (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int8eq (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int8le (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int8lt (const void *a, const void *b, FmgrInfo *flinfo)
 
static int gbt_int8key_cmp (const void *a, const void *b, FmgrInfo *flinfo)
 
static float8 gbt_int8_dist (const void *a, const void *b, FmgrInfo *flinfo)
 
 PG_FUNCTION_INFO_V1 (int8_dist)
 
Datum int8_dist (PG_FUNCTION_ARGS)
 
Datum gbt_int8_compress (PG_FUNCTION_ARGS)
 
Datum gbt_int8_fetch (PG_FUNCTION_ARGS)
 
Datum gbt_int8_consistent (PG_FUNCTION_ARGS)
 
Datum gbt_int8_distance (PG_FUNCTION_ARGS)
 
Datum gbt_int8_union (PG_FUNCTION_ARGS)
 
Datum gbt_int8_penalty (PG_FUNCTION_ARGS)
 
Datum gbt_int8_picksplit (PG_FUNCTION_ARGS)
 
Datum gbt_int8_same (PG_FUNCTION_ARGS)
 
static int gbt_int8_ssup_cmp (Datum x, Datum y, SortSupport ssup)
 
Datum gbt_int8_sortsupport (PG_FUNCTION_ARGS)
 

Variables

static const gbtree_ninfo tinfo
 

Typedef Documentation

◆ int64KEY

Function Documentation

◆ gbt_int8_compress()

Datum gbt_int8_compress ( PG_FUNCTION_ARGS  )

Definition at line 121 of file btree_int8.c.

122{
123 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
124
126}
static const gbtree_ninfo tinfo
Definition btree_int8.c:80
GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo)
#define PG_GETARG_POINTER(n)
Definition fmgr.h:277
#define PG_RETURN_POINTER(x)
Definition fmgr.h:363

References gbt_num_compress(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_int8_consistent()

Datum gbt_int8_consistent ( PG_FUNCTION_ARGS  )

Definition at line 137 of file btree_int8.c.

138{
139 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140 int64 query = PG_GETARG_INT64(1);
142#ifdef NOT_USED
143 Oid subtype = PG_GETARG_OID(3);
144#endif
145 bool *recheck = (bool *) PG_GETARG_POINTER(4);
146 int64KEY *kkk = (int64KEY *) DatumGetPointer(entry->key);
148
149 /* All cases served by this function are exact */
150 *recheck = false;
151
152 key.lower = (GBT_NUMKEY *) &kkk->lower;
153 key.upper = (GBT_NUMKEY *) &kkk->upper;
154
155 PG_RETURN_BOOL(gbt_num_consistent(&key, &query, &strategy,
156 GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
157}
bool gbt_num_consistent(const GBT_NUMKEY_R *key, const void *query, const StrategyNumber *strategy, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
char GBT_NUMKEY
int64_t int64
Definition c.h:543
#define PG_GETARG_OID(n)
Definition fmgr.h:275
#define PG_GETARG_INT64(n)
Definition fmgr.h:284
#define PG_GETARG_UINT16(n)
Definition fmgr.h:272
#define PG_RETURN_BOOL(x)
Definition fmgr.h:360
#define GIST_LEAF(entry)
Definition gist.h:171
static Pointer DatumGetPointer(Datum X)
Definition postgres.h:342
unsigned int Oid
static int fb(int x)
uint16 StrategyNumber
Definition stratnum.h:22
Datum key
Definition gist.h:161

References DatumGetPointer(), fb(), gbt_num_consistent(), GIST_LEAF, GISTENTRY::key, PG_GETARG_INT64, PG_GETARG_OID, PG_GETARG_POINTER, PG_GETARG_UINT16, PG_RETURN_BOOL, and tinfo.

◆ gbt_int8_dist()

static float8 gbt_int8_dist ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 74 of file btree_int8.c.

75{
76 return GET_FLOAT_DISTANCE(int64, a, b);
77}
#define GET_FLOAT_DISTANCE(t, arg1, arg2)
int b
Definition isn.c:74
int a
Definition isn.c:73

References a, b, and GET_FLOAT_DISTANCE.

◆ gbt_int8_distance()

Datum gbt_int8_distance ( PG_FUNCTION_ARGS  )

Definition at line 160 of file btree_int8.c.

161{
162 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
163 int64 query = PG_GETARG_INT64(1);
164#ifdef NOT_USED
165 Oid subtype = PG_GETARG_OID(3);
166#endif
167 int64KEY *kkk = (int64KEY *) DatumGetPointer(entry->key);
169
170 key.lower = (GBT_NUMKEY *) &kkk->lower;
171 key.upper = (GBT_NUMKEY *) &kkk->upper;
172
173 PG_RETURN_FLOAT8(gbt_num_distance(&key, &query, GIST_LEAF(entry),
174 &tinfo, fcinfo->flinfo));
175}
float8 gbt_num_distance(const GBT_NUMKEY_R *key, const void *query, bool is_leaf, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
#define PG_RETURN_FLOAT8(x)
Definition fmgr.h:369

References DatumGetPointer(), fb(), gbt_num_distance(), GIST_LEAF, GISTENTRY::key, PG_GETARG_INT64, PG_GETARG_OID, PG_GETARG_POINTER, PG_RETURN_FLOAT8, and tinfo.

◆ gbt_int8_fetch()

Datum gbt_int8_fetch ( PG_FUNCTION_ARGS  )

Definition at line 129 of file btree_int8.c.

130{
131 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
132
134}
GISTENTRY * gbt_num_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)

References gbt_num_fetch(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_int8_penalty()

Datum gbt_int8_penalty ( PG_FUNCTION_ARGS  )

Definition at line 188 of file btree_int8.c.

189{
192 float *result = (float *) PG_GETARG_POINTER(2);
193
194 penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
195
196 PG_RETURN_POINTER(result);
197}
#define penalty_num(result, olower, oupper, nlower, nupper)

References DatumGetPointer(), fb(), penalty_num, PG_GETARG_POINTER, and PG_RETURN_POINTER.

◆ gbt_int8_picksplit()

Datum gbt_int8_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 200 of file btree_int8.c.

201{
204 &tinfo, fcinfo->flinfo));
205}
GIST_SPLITVEC * gbt_num_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)

References gbt_num_picksplit(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_int8_same()

Datum gbt_int8_same ( PG_FUNCTION_ARGS  )

Definition at line 208 of file btree_int8.c.

209{
212 bool *result = (bool *) PG_GETARG_POINTER(2);
213
214 *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
215 PG_RETURN_POINTER(result);
216}
bool gbt_num_same(const GBT_NUMKEY *a, const GBT_NUMKEY *b, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)

References fb(), gbt_num_same(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_int8_sortsupport()

Datum gbt_int8_sortsupport ( PG_FUNCTION_ARGS  )

Definition at line 235 of file btree_int8.c.

236{
238
241}
static int gbt_int8_ssup_cmp(Datum x, Datum y, SortSupport ssup)
Definition btree_int8.c:219
#define PG_RETURN_VOID()
Definition fmgr.h:350
struct SortSupportData * SortSupport
Definition sortsupport.h:58
int(* comparator)(Datum x, Datum y, SortSupport ssup)

References SortSupportData::comparator, gbt_int8_ssup_cmp(), PG_GETARG_POINTER, and PG_RETURN_VOID.

◆ gbt_int8_ssup_cmp()

static int gbt_int8_ssup_cmp ( Datum  x,
Datum  y,
SortSupport  ssup 
)
static

Definition at line 219 of file btree_int8.c.

220{
223
224 /* for leaf items we expect lower == upper, so only compare lower */
225 if (arg1->lower < arg2->lower)
226 return -1;
227 else if (arg1->lower > arg2->lower)
228 return 1;
229 else
230 return 0;
231
232}
int y
Definition isn.c:76
int x
Definition isn.c:75

References DatumGetPointer(), fb(), x, and y.

Referenced by gbt_int8_sortsupport().

◆ gbt_int8_union()

Datum gbt_int8_union ( PG_FUNCTION_ARGS  )

Definition at line 178 of file btree_int8.c.

179{
181 void *out = palloc(sizeof(int64KEY));
182
183 *(int *) PG_GETARG_POINTER(1) = sizeof(int64KEY);
184 PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
185}
struct int64key int64KEY
void * gbt_num_union(GBT_NUMKEY *out, const GistEntryVector *entryvec, const gbtree_ninfo *tinfo, FmgrInfo *flinfo)
void * palloc(Size size)
Definition mcxt.c:1387

References fb(), gbt_num_union(), palloc(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_int8eq()

static bool gbt_int8eq ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 41 of file btree_int8.c.

42{
43 return (*((const int64 *) a) == *((const int64 *) b));
44}

References a, and b.

◆ gbt_int8ge()

static bool gbt_int8ge ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 36 of file btree_int8.c.

37{
38 return (*((const int64 *) a) >= *((const int64 *) b));
39}

References a, and b.

◆ gbt_int8gt()

static bool gbt_int8gt ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 31 of file btree_int8.c.

32{
33 return (*((const int64 *) a) > *((const int64 *) b));
34}

References a, and b.

◆ gbt_int8key_cmp()

static int gbt_int8key_cmp ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 57 of file btree_int8.c.

58{
59 int64KEY *ia = (int64KEY *) (((const Nsrt *) a)->t);
60 int64KEY *ib = (int64KEY *) (((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}

References a, b, and fb().

◆ gbt_int8le()

static bool gbt_int8le ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 46 of file btree_int8.c.

47{
48 return (*((const int64 *) a) <= *((const int64 *) b));
49}

References a, and b.

◆ gbt_int8lt()

static bool gbt_int8lt ( const void a,
const void b,
FmgrInfo flinfo 
)
static

Definition at line 51 of file btree_int8.c.

52{
53 return (*((const int64 *) a) < *((const int64 *) b));
54}

References a, and b.

◆ int8_dist()

Datum int8_dist ( PG_FUNCTION_ARGS  )

Definition at line 97 of file btree_int8.c.

98{
101 int64 r;
102 int64 ra;
103
104 if (pg_sub_s64_overflow(a, b, &r) ||
105 r == PG_INT64_MIN)
108 errmsg("bigint out of range")));
109
110 ra = i64abs(r);
111
113}
#define PG_INT64_MIN
Definition c.h:605
int errcode(int sqlerrcode)
Definition elog.c:863
int errmsg(const char *fmt,...)
Definition elog.c:1080
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
#define PG_RETURN_INT64(x)
Definition fmgr.h:370
static bool pg_sub_s64_overflow(int64 a, int64 b, int64 *result)
Definition int.h:262

References a, b, ereport, errcode(), errmsg(), ERROR, fb(), PG_GETARG_INT64, PG_INT64_MIN, PG_RETURN_INT64, and pg_sub_s64_overflow().

◆ PG_FUNCTION_INFO_V1() [1/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_compress  )

◆ PG_FUNCTION_INFO_V1() [2/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_consistent  )

◆ PG_FUNCTION_INFO_V1() [3/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_distance  )

◆ PG_FUNCTION_INFO_V1() [4/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_fetch  )

◆ PG_FUNCTION_INFO_V1() [5/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_penalty  )

◆ PG_FUNCTION_INFO_V1() [6/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_picksplit  )

◆ PG_FUNCTION_INFO_V1() [7/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_same  )

◆ PG_FUNCTION_INFO_V1() [8/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_sortsupport  )

◆ PG_FUNCTION_INFO_V1() [9/10]

PG_FUNCTION_INFO_V1 ( gbt_int8_union  )

◆ PG_FUNCTION_INFO_V1() [10/10]

PG_FUNCTION_INFO_V1 ( int8_dist  )

Variable Documentation

◆ tinfo

const gbtree_ninfo tinfo
static
Initial value:
=
{
sizeof(int64),
16,
}
@ gbt_t_int8
Definition btree_gist.h:19
static bool gbt_int8lt(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:51
static float8 gbt_int8_dist(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:74
static bool gbt_int8eq(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:41
static int gbt_int8key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:57
static bool gbt_int8ge(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:36
static bool gbt_int8gt(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:31
static bool gbt_int8le(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_int8.c:46

Definition at line 80 of file btree_int8.c.

81{
83 sizeof(int64),
84 16, /* sizeof(gbtreekey16) */
92};

Referenced by gbt_int8_compress(), gbt_int8_consistent(), gbt_int8_distance(), gbt_int8_fetch(), gbt_int8_picksplit(), gbt_int8_same(), and gbt_int8_union().