PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
btree_enum.c File Reference
#include "postgres.h"
#include "btree_gist.h"
#include "btree_utils_num.h"
#include "fmgr.h"
#include "utils/fmgrprotos.h"
Include dependency graph for btree_enum.c:

Go to the source code of this file.

Data Structures

struct  oidKEY
 

Functions

 PG_FUNCTION_INFO_V1 (gbt_enum_compress)
 
 PG_FUNCTION_INFO_V1 (gbt_enum_fetch)
 
 PG_FUNCTION_INFO_V1 (gbt_enum_union)
 
 PG_FUNCTION_INFO_V1 (gbt_enum_picksplit)
 
 PG_FUNCTION_INFO_V1 (gbt_enum_consistent)
 
 PG_FUNCTION_INFO_V1 (gbt_enum_penalty)
 
 PG_FUNCTION_INFO_V1 (gbt_enum_same)
 
static bool gbt_enumgt (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_enumge (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_enumeq (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_enumle (const void *a, const void *b, FmgrInfo *flinfo)
 
static bool gbt_enumlt (const void *a, const void *b, FmgrInfo *flinfo)
 
static int gbt_enumkey_cmp (const void *a, const void *b, FmgrInfo *flinfo)
 
Datum gbt_enum_compress (PG_FUNCTION_ARGS)
 
Datum gbt_enum_fetch (PG_FUNCTION_ARGS)
 
Datum gbt_enum_consistent (PG_FUNCTION_ARGS)
 
Datum gbt_enum_union (PG_FUNCTION_ARGS)
 
Datum gbt_enum_penalty (PG_FUNCTION_ARGS)
 
Datum gbt_enum_picksplit (PG_FUNCTION_ARGS)
 
Datum gbt_enum_same (PG_FUNCTION_ARGS)
 

Variables

static const gbtree_ninfo tinfo
 

Function Documentation

◆ gbt_enum_compress()

Datum gbt_enum_compress ( PG_FUNCTION_ARGS  )

Definition at line 107 of file btree_enum.c.

108{
109 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
110
112}
static const gbtree_ninfo tinfo
Definition: btree_enum.c:86
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_enum_consistent()

Datum gbt_enum_consistent ( PG_FUNCTION_ARGS  )

Definition at line 123 of file btree_enum.c.

124{
125 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
126 Oid query = PG_GETARG_OID(1);
128
129 /* Oid subtype = PG_GETARG_OID(3); */
130 bool *recheck = (bool *) PG_GETARG_POINTER(4);
131 oidKEY *kkk = (oidKEY *) DatumGetPointer(entry->key);
133
134 /* All cases served by this function are exact */
135 *recheck = false;
136
137 key.lower = (GBT_NUMKEY *) &kkk->lower;
138 key.upper = (GBT_NUMKEY *) &kkk->upper;
139
140 PG_RETURN_BOOL(gbt_num_consistent(&key, &query, &strategy,
141 GIST_LEAF(entry), &tinfo,
142 fcinfo->flinfo));
143}
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:359
#define GIST_LEAF(entry)
Definition: gist.h:171
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:317
unsigned int Oid
Definition: postgres_ext.h:30
uint16 StrategyNumber
Definition: stratnum.h:22
Datum key
Definition: gist.h:161
Oid upper
Definition: btree_enum.c:16
Oid lower
Definition: btree_enum.c:15

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

◆ gbt_enum_fetch()

Datum gbt_enum_fetch ( PG_FUNCTION_ARGS  )

Definition at line 115 of file btree_enum.c.

116{
117 GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
118
120}
GISTENTRY * gbt_num_fetch(GISTENTRY *entry, const gbtree_ninfo *tinfo)

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

◆ gbt_enum_penalty()

Datum gbt_enum_penalty ( PG_FUNCTION_ARGS  )

Definition at line 157 of file btree_enum.c.

158{
159 oidKEY *origentry = (oidKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
160 oidKEY *newentry = (oidKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
161 float *result = (float *) PG_GETARG_POINTER(2);
162
163 penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
164
165 PG_RETURN_POINTER(result);
166}
#define penalty_num(result, olower, oupper, nlower, nupper)

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

◆ gbt_enum_picksplit()

Datum gbt_enum_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 169 of file btree_enum.c.

170{
173 &tinfo, fcinfo->flinfo));
174}
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_enum_same()

Datum gbt_enum_same ( PG_FUNCTION_ARGS  )

Definition at line 177 of file btree_enum.c.

178{
179 oidKEY *b1 = (oidKEY *) PG_GETARG_POINTER(0);
180 oidKEY *b2 = (oidKEY *) PG_GETARG_POINTER(1);
181 bool *result = (bool *) PG_GETARG_POINTER(2);
182
183 *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
184 PG_RETURN_POINTER(result);
185}
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_enum_union()

Datum gbt_enum_union ( PG_FUNCTION_ARGS  )

Definition at line 146 of file btree_enum.c.

147{
149 void *out = palloc(sizeof(oidKEY));
150
151 *(int *) PG_GETARG_POINTER(1) = sizeof(oidKEY);
152 PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
153}
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_enumeq()

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

Definition at line 46 of file btree_enum.c.

47{
48 return (*((const Oid *) a) == *((const Oid *) b));
49}
int b
Definition: isn.c:71
int a
Definition: isn.c:70

References a, and b.

◆ gbt_enumge()

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

Definition at line 39 of file btree_enum.c.

40{
42 ObjectIdGetDatum(*((const Oid *) a)),
43 ObjectIdGetDatum(*((const Oid *) b))));
44}
Datum enum_ge(PG_FUNCTION_ARGS)
Definition: enum.c:342
Datum CallerFInfoFunctionCall2(PGFunction func, FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2)
Definition: fmgr.c:1085
static bool DatumGetBool(Datum X)
Definition: postgres.h:95
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:257
#define InvalidOid
Definition: postgres_ext.h:35

References a, b, CallerFInfoFunctionCall2(), DatumGetBool(), enum_ge(), InvalidOid, and ObjectIdGetDatum().

◆ gbt_enumgt()

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

Definition at line 32 of file btree_enum.c.

33{
35 ObjectIdGetDatum(*((const Oid *) a)),
36 ObjectIdGetDatum(*((const Oid *) b))));
37}
Datum enum_gt(PG_FUNCTION_ARGS)
Definition: enum.c:351

References a, b, CallerFInfoFunctionCall2(), DatumGetBool(), enum_gt(), InvalidOid, and ObjectIdGetDatum().

◆ gbt_enumkey_cmp()

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

Definition at line 66 of file btree_enum.c.

67{
68 oidKEY *ia = (oidKEY *) (((const Nsrt *) a)->t);
69 oidKEY *ib = (oidKEY *) (((const Nsrt *) b)->t);
70
71 if (ia->lower == ib->lower)
72 {
73 if (ia->upper == ib->upper)
74 return 0;
75
79 }
80
84}
Datum enum_cmp(PG_FUNCTION_ARGS)
Definition: enum.c:378
static int32 DatumGetInt32(Datum X)
Definition: postgres.h:207

References a, b, CallerFInfoFunctionCall2(), DatumGetInt32(), enum_cmp(), InvalidOid, oidKEY::lower, ObjectIdGetDatum(), and oidKEY::upper.

◆ gbt_enumle()

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

Definition at line 51 of file btree_enum.c.

52{
54 ObjectIdGetDatum(*((const Oid *) a)),
55 ObjectIdGetDatum(*((const Oid *) b))));
56}
Datum enum_le(PG_FUNCTION_ARGS)
Definition: enum.c:315

References a, b, CallerFInfoFunctionCall2(), DatumGetBool(), enum_le(), InvalidOid, and ObjectIdGetDatum().

◆ gbt_enumlt()

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

Definition at line 58 of file btree_enum.c.

59{
61 ObjectIdGetDatum(*((const Oid *) a)),
62 ObjectIdGetDatum(*((const Oid *) b))));
63}
Datum enum_lt(PG_FUNCTION_ARGS)
Definition: enum.c:306

References a, b, CallerFInfoFunctionCall2(), DatumGetBool(), enum_lt(), InvalidOid, and ObjectIdGetDatum().

◆ PG_FUNCTION_INFO_V1() [1/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_compress  )

◆ PG_FUNCTION_INFO_V1() [2/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_consistent  )

◆ PG_FUNCTION_INFO_V1() [3/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_fetch  )

◆ PG_FUNCTION_INFO_V1() [4/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_penalty  )

◆ PG_FUNCTION_INFO_V1() [5/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_picksplit  )

◆ PG_FUNCTION_INFO_V1() [6/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_same  )

◆ PG_FUNCTION_INFO_V1() [7/7]

PG_FUNCTION_INFO_V1 ( gbt_enum_union  )

Variable Documentation

◆ tinfo

const gbtree_ninfo tinfo
static
Initial value:
=
{
sizeof(Oid),
8,
NULL
}
static bool gbt_enumeq(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_enum.c:46
static bool gbt_enumge(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_enum.c:39
static bool gbt_enumlt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_enum.c:58
static int gbt_enumkey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_enum.c:66
static bool gbt_enumgt(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_enum.c:32
static bool gbt_enumle(const void *a, const void *b, FmgrInfo *flinfo)
Definition: btree_enum.c:51
@ gbt_t_enum
Definition: btree_gist.h:38

Definition at line 86 of file btree_enum.c.

Referenced by gbt_enum_compress(), gbt_enum_consistent(), gbt_enum_fetch(), gbt_enum_picksplit(), gbt_enum_same(), and gbt_enum_union().