PostgreSQL Source Code git master
btree_int4.c File Reference
#include "postgres.h"
#include "btree_gist.h"
#include "btree_utils_num.h"
#include "common/int.h"
Include dependency graph for btree_int4.c:

Go to the source code of this file.

Data Structures

struct  int32key
 

Typedefs

typedef struct int32key int32KEY
 

Functions

 PG_FUNCTION_INFO_V1 (gbt_int4_compress)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_fetch)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_union)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_picksplit)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_consistent)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_distance)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_penalty)
 
 PG_FUNCTION_INFO_V1 (gbt_int4_same)
 
static bool gbt_int4gt (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int4ge (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int4eq (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int4le (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_int4lt (const void *a, const void *b, FmgrInfo *flinfo)
 
static int gbt_int4key_cmp (const void *a, const void *b, FmgrInfo *flinfo)
 
static float8 gbt_int4_dist (const void *a, const void *b, FmgrInfo *flinfo)
 
 PG_FUNCTION_INFO_V1 (int4_dist)
 
Datum int4_dist (PG_FUNCTION_ARGS)
 
Datum gbt_int4_compress (PG_FUNCTION_ARGS)
 
Datum gbt_int4_fetch (PG_FUNCTION_ARGS)
 
Datum gbt_int4_consistent (PG_FUNCTION_ARGS)
 
Datum gbt_int4_distance (PG_FUNCTION_ARGS)
 
Datum gbt_int4_union (PG_FUNCTION_ARGS)
 
Datum gbt_int4_penalty (PG_FUNCTION_ARGS)
 
Datum gbt_int4_picksplit (PG_FUNCTION_ARGS)
 
Datum gbt_int4_same (PG_FUNCTION_ARGS)
 

Variables

static const gbtree_ninfo tinfo
 

Typedef Documentation

◆ int32KEY

typedef struct int32key int32KEY

Function Documentation

◆ gbt_int4_compress()

Datum gbt_int4_compress ( PG_FUNCTION_ARGS  )

Definition at line 121 of file btree_int4.c.

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

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

◆ gbt_int4_consistent()

Datum gbt_int4_consistent ( PG_FUNCTION_ARGS  )

Definition at line 137 of file btree_int4.c.

138{
139 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140 int32 query = PG_GETARG_INT32(1);
142
143 /* Oid subtype = PG_GETARG_OID(3); */
144 bool *recheck = (bool *) PG_GETARG_POINTER(4);
145 int32KEY *kkk = (int32KEY *) 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}
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
int32_t int32
Definition: c.h:484
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define GIST_LEAF(entry)
Definition: gist.h:171
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:317
uint16 StrategyNumber
Definition: stratnum.h:22
Datum key
Definition: gist.h:161
int32 upper
Definition: btree_int4.c:13
int32 lower
Definition: btree_int4.c:12

References DatumGetPointer(), gbt_num_consistent(), GIST_LEAF, GISTENTRY::key, sort-test::key, int32key::lower, PG_GETARG_INT32, PG_GETARG_POINTER, PG_GETARG_UINT16, PG_RETURN_BOOL, tinfo, and int32key::upper.

◆ gbt_int4_dist()

static float8 gbt_int4_dist ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 73 of file btree_int4.c.

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

References a, b, and GET_FLOAT_DISTANCE.

◆ gbt_int4_distance()

Datum gbt_int4_distance ( PG_FUNCTION_ARGS  )

Definition at line 160 of file btree_int4.c.

161{
162 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
163 int32 query = PG_GETARG_INT32(1);
164
165 /* Oid subtype = PG_GETARG_OID(3); */
166 int32KEY *kkk = (int32KEY *) DatumGetPointer(entry->key);
168
169 key.lower = (GBT_NUMKEY *) &kkk->lower;
170 key.upper = (GBT_NUMKEY *) &kkk->upper;
171
173 &tinfo, fcinfo->flinfo));
174}
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:367

References DatumGetPointer(), gbt_num_distance(), GIST_LEAF, GISTENTRY::key, sort-test::key, int32key::lower, PG_GETARG_INT32, PG_GETARG_POINTER, PG_RETURN_FLOAT8, tinfo, and int32key::upper.

◆ gbt_int4_fetch()

Datum gbt_int4_fetch ( PG_FUNCTION_ARGS  )

Definition at line 129 of file btree_int4.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_int4_penalty()

Datum gbt_int4_penalty ( PG_FUNCTION_ARGS  )

Definition at line 189 of file btree_int4.c.

190{
191 int32KEY *origentry = (int32KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
193 float *result = (float *) PG_GETARG_POINTER(2);
194
195 penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
196
197 PG_RETURN_POINTER(result);
198}
#define penalty_num(result, olower, oupper, nlower, nupper)

References DatumGetPointer(), sort-test::key, int32key::lower, penalty_num, PG_GETARG_POINTER, PG_RETURN_POINTER, and int32key::upper.

◆ gbt_int4_picksplit()

Datum gbt_int4_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 201 of file btree_int4.c.

202{
205 &tinfo, fcinfo->flinfo));
206}
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_int4_same()

Datum gbt_int4_same ( PG_FUNCTION_ARGS  )

Definition at line 209 of file btree_int4.c.

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

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

◆ gbt_int4_union()

Datum gbt_int4_union ( PG_FUNCTION_ARGS  )

Definition at line 178 of file btree_int4.c.

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

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

◆ gbt_int4eq()

static bool gbt_int4eq ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 40 of file btree_int4.c.

41{
42 return (*((const int32 *) a) == *((const int32 *) b));
43}

References a, and b.

◆ gbt_int4ge()

static bool gbt_int4ge ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 35 of file btree_int4.c.

36{
37 return (*((const int32 *) a) >= *((const int32 *) b));
38}

References a, and b.

◆ gbt_int4gt()

static bool gbt_int4gt ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 30 of file btree_int4.c.

31{
32 return (*((const int32 *) a) > *((const int32 *) b));
33}

References a, and b.

◆ gbt_int4key_cmp()

static int gbt_int4key_cmp ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 56 of file btree_int4.c.

57{
58 int32KEY *ia = (int32KEY *) (((const Nsrt *) a)->t);
59 int32KEY *ib = (int32KEY *) (((const Nsrt *) b)->t);
60
61 if (ia->lower == ib->lower)
62 {
63 if (ia->upper == ib->upper)
64 return 0;
65
66 return (ia->upper > ib->upper) ? 1 : -1;
67 }
68
69 return (ia->lower > ib->lower) ? 1 : -1;
70}

References a, b, int32key::lower, and int32key::upper.

◆ gbt_int4le()

static bool gbt_int4le ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 45 of file btree_int4.c.

46{
47 return (*((const int32 *) a) <= *((const int32 *) b));
48}

References a, and b.

◆ gbt_int4lt()

static bool gbt_int4lt ( const void *  a,
const void *  b,
FmgrInfo flinfo 
)
static

Definition at line 50 of file btree_int4.c.

51{
52 return (*((const int32 *) a) < *((const int32 *) b));
53}

References a, and b.

◆ int4_dist()

Datum int4_dist ( PG_FUNCTION_ARGS  )

Definition at line 96 of file btree_int4.c.

97{
100 int32 r;
101 int32 ra;
102
103 if (pg_sub_s32_overflow(a, b, &r) ||
104 r == PG_INT32_MIN)
106 (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
107 errmsg("integer out of range")));
108
109 ra = abs(r);
110
111 PG_RETURN_INT32(ra);
112}
#define PG_INT32_MIN
Definition: c.h:545
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
#define PG_RETURN_INT32(x)
Definition: fmgr.h:354
static bool pg_sub_s32_overflow(int32 a, int32 b, int32 *result)
Definition: int.h:169

References a, b, ereport, errcode(), errmsg(), ERROR, PG_GETARG_INT32, PG_INT32_MIN, PG_RETURN_INT32, and pg_sub_s32_overflow().

◆ PG_FUNCTION_INFO_V1() [1/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_compress  )

◆ PG_FUNCTION_INFO_V1() [2/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_consistent  )

◆ PG_FUNCTION_INFO_V1() [3/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_distance  )

◆ PG_FUNCTION_INFO_V1() [4/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_fetch  )

◆ PG_FUNCTION_INFO_V1() [5/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_penalty  )

◆ PG_FUNCTION_INFO_V1() [6/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_picksplit  )

◆ PG_FUNCTION_INFO_V1() [7/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_same  )

◆ PG_FUNCTION_INFO_V1() [8/9]

PG_FUNCTION_INFO_V1 ( gbt_int4_union  )

◆ PG_FUNCTION_INFO_V1() [9/9]

PG_FUNCTION_INFO_V1 ( int4_dist  )

Variable Documentation

◆ tinfo

const gbtree_ninfo tinfo
static
Initial value:
=
{
sizeof(int32),
8,
}
@ gbt_t_int4
Definition: btree_gist.h:18
static bool gbt_int4lt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:50
static bool gbt_int4eq(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:40
static int gbt_int4key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:56
static bool gbt_int4ge(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:35
static bool gbt_int4gt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:30
static bool gbt_int4le(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:45
static float8 gbt_int4_dist(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_int4.c:73

Definition at line 79 of file btree_int4.c.

Referenced by gbt_int4_compress(), gbt_int4_consistent(), gbt_int4_distance(), gbt_int4_fetch(), gbt_int4_picksplit(), gbt_int4_same(), and gbt_int4_union().