PostgreSQL Source Code git master
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)
107 (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
108 errmsg("money out of range")));
109
110 ra = i64abs(r);
111
112 PG_RETURN_CASH(ra);
113}
#define PG_INT64_MIN
Definition: c.h:599
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

References a, b, ereport, errcode(), errmsg(), ERROR, 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:276
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361

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
143 /* Oid subtype = PG_GETARG_OID(3); */
144 bool *recheck = (bool *) PG_GETARG_POINTER(4);
145 cashKEY *kkk = (cashKEY *) 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,
156 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
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#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:322
uint16 StrategyNumber
Definition: stratnum.h:22
Datum key
Definition: gist.h:161
Cash lower
Definition: btree_cash.c:15
Cash upper
Definition: btree_cash.c:16

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

◆ 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 160 of file btree_cash.c.

161{
162 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
163 Cash query = PG_GETARG_CASH(1);
164
165 /* Oid subtype = PG_GETARG_OID(3); */
166 cashKEY *kkk = (cashKEY *) 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, cashKEY::lower, PG_GETARG_CASH, PG_GETARG_POINTER, PG_RETURN_FLOAT8, tinfo, and cashKEY::upper.

◆ 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 187 of file btree_cash.c.

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

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

◆ gbt_cash_picksplit()

Datum gbt_cash_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 199 of file btree_cash.c.

200{
203 &tinfo, fcinfo->flinfo));
204}
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 207 of file btree_cash.c.

208{
209 cashKEY *b1 = (cashKEY *) PG_GETARG_POINTER(0);
210 cashKEY *b2 = (cashKEY *) PG_GETARG_POINTER(1);
211 bool *result = (bool *) PG_GETARG_POINTER(2);
212
213 *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
214 PG_RETURN_POINTER(result);
215}
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_cash_sortsupport()

Datum gbt_cash_sortsupport ( PG_FUNCTION_ARGS  )

Definition at line 233 of file btree_cash.c.

234{
236
238 ssup->ssup_extra = NULL;
239
241}
static int gbt_cash_ssup_cmp(Datum x, Datum y, SortSupport ssup)
Definition: btree_cash.c:218
#define PG_RETURN_VOID()
Definition: fmgr.h:349
struct SortSupportData * SortSupport
Definition: sortsupport.h:58
int(* comparator)(Datum x, Datum y, SortSupport ssup)
Definition: sortsupport.h:106
void * ssup_extra
Definition: sortsupport.h:87

References SortSupportData::comparator, 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 218 of file btree_cash.c.

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

References DatumGetPointer(), cashKEY::lower, x, and y.

Referenced by gbt_cash_sortsupport().

◆ gbt_cash_union()

Datum gbt_cash_union ( PG_FUNCTION_ARGS  )

Definition at line 177 of file btree_cash.c.

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

References 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, cashKEY::lower, and cashKEY::upper.

◆ 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.

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