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

Go to the source code of this file.

Data Structures

struct  cashKEY
 

Functions

 PG_FUNCTION_INFO_V1 (gbt_cash_compress)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_fetch)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_union)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_picksplit)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_consistent)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_distance)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_penalty)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_same)
 
 PG_FUNCTION_INFO_V1 (gbt_cash_sortsupport)
 
static bool gbt_cashgt (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_cashge (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_casheq (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_cashle (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_cashlt (const void *a, const void *b, FmgrInfo *flinfo)
 
static int gbt_cashkey_cmp (const void *a, const void *b, FmgrInfo *flinfo)
 
static float8 gbt_cash_dist (const void *a, const void *b, FmgrInfo *flinfo)
 
 PG_FUNCTION_INFO_V1 (cash_dist)
 
Datum cash_dist (PG_FUNCTION_ARGS)
 
Datum gbt_cash_compress (PG_FUNCTION_ARGS)
 
Datum gbt_cash_fetch (PG_FUNCTION_ARGS)
 
Datum gbt_cash_consistent (PG_FUNCTION_ARGS)
 
Datum gbt_cash_distance (PG_FUNCTION_ARGS)
 
Datum gbt_cash_union (PG_FUNCTION_ARGS)
 
Datum gbt_cash_penalty (PG_FUNCTION_ARGS)
 
Datum gbt_cash_picksplit (PG_FUNCTION_ARGS)
 
Datum gbt_cash_same (PG_FUNCTION_ARGS)
 
static int gbt_cash_ssup_cmp (Datum x, Datum y, SortSupport ssup)
 
Datum gbt_cash_sortsupport (PG_FUNCTION_ARGS)
 

Variables

static const gbtree_ninfo tinfo
 

Function Documentation

◆ cash_dist()

Datum cash_dist ( PG_FUNCTION_ARGS  )

Definition at line 97 of file btree_cash.c.

98{
100 Cash b = PG_GETARG_CASH(1);
101 Cash r;
102 Cash ra;
103
104 if (pg_sub_s64_overflow(a, b, &r) ||
105 r == PG_INT64_MIN)
108 errmsg("money out of range")));
109
110 ra = i64abs(r);
111
113}
#define PG_INT64_MIN
Definition c.h:605
int64 Cash
Definition cash.h:17
#define PG_RETURN_CASH(x)
Definition cash.h:33
#define PG_GETARG_CASH(n)
Definition cash.h:32
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
static bool pg_sub_s64_overflow(int64 a, int64 b, int64 *result)
Definition int.h:262
int b
Definition isn.c:74
int a
Definition isn.c:73
static int fb(int x)

References a, b, ereport, errcode(), errmsg(), ERROR, fb(), PG_GETARG_CASH, PG_INT64_MIN, PG_RETURN_CASH, and pg_sub_s64_overflow().

◆ gbt_cash_compress()

Datum gbt_cash_compress ( PG_FUNCTION_ARGS  )

Definition at line 121 of file btree_cash.c.

122{
123 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
124
126}
static const gbtree_ninfo tinfo
Definition btree_cash.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_cash_consistent()

Datum gbt_cash_consistent ( PG_FUNCTION_ARGS  )

Definition at line 137 of file btree_cash.c.

138{
139 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
140 Cash query = PG_GETARG_CASH(1);
142#ifdef NOT_USED
143 Oid subtype = PG_GETARG_OID(3);
144#endif
145 bool *recheck = (bool *) PG_GETARG_POINTER(4);
146 cashKEY *kkk = (cashKEY *) 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,
157 fcinfo->flinfo));
158}
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
#define PG_GETARG_OID(n)
Definition fmgr.h:275
#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
uint16 StrategyNumber
Definition stratnum.h:22
Datum key
Definition gist.h:161

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

◆ gbt_cash_dist()

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

Definition at line 74 of file btree_cash.c.

75{
76 return GET_FLOAT_DISTANCE(Cash, a, b);
77}
#define GET_FLOAT_DISTANCE(t, arg1, arg2)

References a, b, and GET_FLOAT_DISTANCE.

◆ gbt_cash_distance()

Datum gbt_cash_distance ( PG_FUNCTION_ARGS  )

Definition at line 161 of file btree_cash.c.

162{
163 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
164 Cash query = PG_GETARG_CASH(1);
165#ifdef NOT_USED
166 Oid subtype = PG_GETARG_OID(3);
167#endif
168 cashKEY *kkk = (cashKEY *) DatumGetPointer(entry->key);
170
171 key.lower = (GBT_NUMKEY *) &kkk->lower;
172 key.upper = (GBT_NUMKEY *) &kkk->upper;
173
174 PG_RETURN_FLOAT8(gbt_num_distance(&key, &query, GIST_LEAF(entry),
175 &tinfo, fcinfo->flinfo));
176}
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_CASH, PG_GETARG_OID, PG_GETARG_POINTER, PG_RETURN_FLOAT8, and tinfo.

◆ gbt_cash_fetch()

Datum gbt_cash_fetch ( PG_FUNCTION_ARGS  )

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

Datum gbt_cash_penalty ( PG_FUNCTION_ARGS  )

Definition at line 189 of file btree_cash.c.

190{
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(), fb(), penalty_num, PG_GETARG_POINTER, and PG_RETURN_POINTER.

◆ gbt_cash_picksplit()

Datum gbt_cash_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 201 of file btree_cash.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_cash_same()

Datum gbt_cash_same ( PG_FUNCTION_ARGS  )

Definition at line 209 of file btree_cash.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 fb(), gbt_num_same(), PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_cash_sortsupport()

Datum gbt_cash_sortsupport ( PG_FUNCTION_ARGS  )

Definition at line 235 of file btree_cash.c.

236{
238
240 ssup->ssup_extra = NULL;
241
243}
static int gbt_cash_ssup_cmp(Datum x, Datum y, SortSupport ssup)
Definition btree_cash.c:220
#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, fb(), gbt_cash_ssup_cmp(), PG_GETARG_POINTER, PG_RETURN_VOID, and SortSupportData::ssup_extra.

◆ gbt_cash_ssup_cmp()

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

Definition at line 220 of file btree_cash.c.

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

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

Referenced by gbt_cash_sortsupport().

◆ gbt_cash_union()

Datum gbt_cash_union ( PG_FUNCTION_ARGS  )

Definition at line 179 of file btree_cash.c.

180{
182 void *out = palloc(sizeof(cashKEY));
183
184 *(int *) PG_GETARG_POINTER(1) = sizeof(cashKEY);
185 PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
186}
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_casheq()

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

Definition at line 41 of file btree_cash.c.

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

References a, and b.

◆ gbt_cashge()

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

Definition at line 36 of file btree_cash.c.

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

References a, and b.

◆ gbt_cashgt()

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

Definition at line 31 of file btree_cash.c.

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

References a, and b.

◆ gbt_cashkey_cmp()

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

Definition at line 57 of file btree_cash.c.

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

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

Definition at line 46 of file btree_cash.c.

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

References a, and b.

◆ gbt_cashlt()

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

Definition at line 51 of file btree_cash.c.

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

References a, and b.

◆ PG_FUNCTION_INFO_V1() [1/10]

PG_FUNCTION_INFO_V1 ( cash_dist  )

◆ PG_FUNCTION_INFO_V1() [2/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_compress  )

◆ PG_FUNCTION_INFO_V1() [3/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_consistent  )

◆ PG_FUNCTION_INFO_V1() [4/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_distance  )

◆ PG_FUNCTION_INFO_V1() [5/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_fetch  )

◆ PG_FUNCTION_INFO_V1() [6/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_penalty  )

◆ PG_FUNCTION_INFO_V1() [7/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_picksplit  )

◆ PG_FUNCTION_INFO_V1() [8/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_same  )

◆ PG_FUNCTION_INFO_V1() [9/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_sortsupport  )

◆ PG_FUNCTION_INFO_V1() [10/10]

PG_FUNCTION_INFO_V1 ( gbt_cash_union  )

Variable Documentation

◆ tinfo

const gbtree_ninfo tinfo
static
Initial value:
=
{
sizeof(Cash),
16,
}
static bool gbt_casheq(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:41
static bool gbt_cashgt(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:31
static int gbt_cashkey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:57
static bool gbt_cashlt(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:51
static float8 gbt_cash_dist(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:74
static bool gbt_cashle(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:46
static bool gbt_cashge(const void *a, const void *b, FmgrInfo *flinfo)
Definition btree_cash.c:36
@ gbt_t_cash
Definition btree_gist.h:24

Definition at line 80 of file btree_cash.c.

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

Referenced by gbt_cash_compress(), gbt_cash_consistent(), gbt_cash_distance(), gbt_cash_fetch(), gbt_cash_picksplit(), gbt_cash_same(), and gbt_cash_union().