PostgreSQL Source Code  git master
btree_bytea.c File Reference
#include "postgres.h"
#include "btree_gist.h"
#include "btree_utils_var.h"
#include "utils/builtins.h"
#include "utils/bytea.h"
Include dependency graph for btree_bytea.c:

Go to the source code of this file.

Functions

 PG_FUNCTION_INFO_V1 (gbt_bytea_compress)
 
 PG_FUNCTION_INFO_V1 (gbt_bytea_union)
 
 PG_FUNCTION_INFO_V1 (gbt_bytea_picksplit)
 
 PG_FUNCTION_INFO_V1 (gbt_bytea_consistent)
 
 PG_FUNCTION_INFO_V1 (gbt_bytea_penalty)
 
 PG_FUNCTION_INFO_V1 (gbt_bytea_same)
 
static bool gbt_byteagt (const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
 
static bool gbt_byteage (const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
 
static bool gbt_byteaeq (const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
 
static bool gbt_byteale (const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
 
static bool gbt_bytealt (const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
 
static int32 gbt_byteacmp (const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
 
Datum gbt_bytea_compress (PG_FUNCTION_ARGS)
 
Datum gbt_bytea_consistent (PG_FUNCTION_ARGS)
 
Datum gbt_bytea_union (PG_FUNCTION_ARGS)
 
Datum gbt_bytea_picksplit (PG_FUNCTION_ARGS)
 
Datum gbt_bytea_same (PG_FUNCTION_ARGS)
 
Datum gbt_bytea_penalty (PG_FUNCTION_ARGS)
 

Variables

static const gbtree_vinfo tinfo
 

Function Documentation

◆ gbt_bytea_compress()

Datum gbt_bytea_compress ( PG_FUNCTION_ARGS  )

Definition at line 95 of file btree_bytea.c.

96 {
97  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
98 
100 }
static const gbtree_vinfo tinfo
Definition: btree_bytea.c:74
GISTENTRY * gbt_var_compress(GISTENTRY *entry, const gbtree_vinfo *tinfo)
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361

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

◆ gbt_bytea_consistent()

Datum gbt_bytea_consistent ( PG_FUNCTION_ARGS  )

Definition at line 105 of file btree_bytea.c.

106 {
107  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
108  void *query = (void *) DatumGetByteaP(PG_GETARG_DATUM(1));
110 
111  /* Oid subtype = PG_GETARG_OID(3); */
112  bool *recheck = (bool *) PG_GETARG_POINTER(4);
113  bool retval;
116 
117  /* All cases served by this function are exact */
118  *recheck = false;
119 
120  retval = gbt_var_consistent(&r, query, strategy, PG_GET_COLLATION(),
121  GIST_LEAF(entry), &tinfo, fcinfo->flinfo);
122  PG_RETURN_BOOL(retval);
123 }
bool gbt_var_consistent(GBT_VARKEY_R *key, const void *query, StrategyNumber strategy, Oid collation, bool is_leaf, const gbtree_vinfo *tinfo, FmgrInfo *flinfo)
GBT_VARKEY_R gbt_var_key_readable(const GBT_VARKEY *k)
#define PG_GETARG_DATUM(n)
Definition: fmgr.h:268
#define PG_GETARG_UINT16(n)
Definition: fmgr.h:272
#define PG_GET_COLLATION()
Definition: fmgr.h:198
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
#define DatumGetByteaP(X)
Definition: fmgr.h:331
#define GIST_LEAF(entry)
Definition: gist.h:170
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
uint16 StrategyNumber
Definition: stratnum.h:22
Datum key
Definition: gist.h:160
Definition: c.h:687

References DatumGetByteaP, DatumGetPointer(), gbt_var_consistent(), gbt_var_key_readable(), GIST_LEAF, GISTENTRY::key, sort-test::key, PG_GET_COLLATION, PG_GETARG_DATUM, PG_GETARG_POINTER, PG_GETARG_UINT16, PG_RETURN_BOOL, and tinfo.

◆ gbt_bytea_penalty()

Datum gbt_bytea_penalty ( PG_FUNCTION_ARGS  )

Definition at line 162 of file btree_bytea.c.

163 {
166  float *result = (float *) PG_GETARG_POINTER(2);
167 
169  &tinfo, fcinfo->flinfo));
170 }
float * gbt_var_penalty(float *res, const GISTENTRY *o, const GISTENTRY *n, Oid collation, const gbtree_vinfo *tinfo, FmgrInfo *flinfo)

References gbt_var_penalty(), PG_GET_COLLATION, PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_bytea_picksplit()

Datum gbt_bytea_picksplit ( PG_FUNCTION_ARGS  )

Definition at line 139 of file btree_bytea.c.

140 {
143 
144  gbt_var_picksplit(entryvec, v, PG_GET_COLLATION(),
145  &tinfo, fcinfo->flinfo);
147 }
GIST_SPLITVEC * gbt_var_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v, Oid collation, const gbtree_vinfo *tinfo, FmgrInfo *flinfo)

References gbt_var_picksplit(), PG_GET_COLLATION, PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_bytea_same()

Datum gbt_bytea_same ( PG_FUNCTION_ARGS  )

Definition at line 150 of file btree_bytea.c.

151 {
152  Datum d1 = PG_GETARG_DATUM(0);
153  Datum d2 = PG_GETARG_DATUM(1);
154  bool *result = (bool *) PG_GETARG_POINTER(2);
155 
156  *result = gbt_var_same(d1, d2, PG_GET_COLLATION(), &tinfo, fcinfo->flinfo);
157  PG_RETURN_POINTER(result);
158 }
bool gbt_var_same(Datum d1, Datum d2, Oid collation, const gbtree_vinfo *tinfo, FmgrInfo *flinfo)
uintptr_t Datum
Definition: postgres.h:64

References gbt_var_same(), PG_GET_COLLATION, PG_GETARG_DATUM, PG_GETARG_POINTER, PG_RETURN_POINTER, and tinfo.

◆ gbt_bytea_union()

Datum gbt_bytea_union ( PG_FUNCTION_ARGS  )

Definition at line 128 of file btree_bytea.c.

129 {
131  int32 *size = (int *) PG_GETARG_POINTER(1);
132 
134  &tinfo, fcinfo->flinfo));
135 }
GBT_VARKEY * gbt_var_union(const GistEntryVector *entryvec, int32 *size, Oid collation, const gbtree_vinfo *tinfo, FmgrInfo *flinfo)
signed int int32
Definition: c.h:494
static pg_noinline void Size size
Definition: slab.c:607

References gbt_var_union(), PG_GET_COLLATION, PG_GETARG_POINTER, PG_RETURN_POINTER, size, and tinfo.

◆ gbt_byteacmp()

static int32 gbt_byteacmp ( const void *  a,
const void *  b,
Oid  collation,
FmgrInfo flinfo 
)
static

Definition at line 66 of file btree_bytea.c.

67 {
70  PointerGetDatum(b)));
71 }
#define DirectFunctionCall2(func, arg1, arg2)
Definition: fmgr.h:644
int b
Definition: isn.c:70
int a
Definition: isn.c:69
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
static int32 DatumGetInt32(Datum X)
Definition: postgres.h:202
Datum byteacmp(PG_FUNCTION_ARGS)
Definition: varlena.c:3938

References a, b, byteacmp(), DatumGetInt32(), DirectFunctionCall2, and PointerGetDatum().

◆ gbt_byteaeq()

static bool gbt_byteaeq ( const void *  a,
const void *  b,
Oid  collation,
FmgrInfo flinfo 
)
static

Definition at line 42 of file btree_bytea.c.

43 {
46  PointerGetDatum(b)));
47 }
static bool DatumGetBool(Datum X)
Definition: postgres.h:90
Datum byteaeq(PG_FUNCTION_ARGS)
Definition: varlena.c:3794

References a, b, byteaeq(), DatumGetBool(), DirectFunctionCall2, and PointerGetDatum().

◆ gbt_byteage()

static bool gbt_byteage ( const void *  a,
const void *  b,
Oid  collation,
FmgrInfo flinfo 
)
static

Definition at line 34 of file btree_bytea.c.

35 {
38  PointerGetDatum(b)));
39 }
Datum byteage(PG_FUNCTION_ARGS)
Definition: varlena.c:3918

References a, b, byteage(), DatumGetBool(), DirectFunctionCall2, and PointerGetDatum().

◆ gbt_byteagt()

static bool gbt_byteagt ( const void *  a,
const void *  b,
Oid  collation,
FmgrInfo flinfo 
)
static

Definition at line 26 of file btree_bytea.c.

27 {
30  PointerGetDatum(b)));
31 }
Datum byteagt(PG_FUNCTION_ARGS)
Definition: varlena.c:3898

References a, b, byteagt(), DatumGetBool(), DirectFunctionCall2, and PointerGetDatum().

◆ gbt_byteale()

static bool gbt_byteale ( const void *  a,
const void *  b,
Oid  collation,
FmgrInfo flinfo 
)
static

Definition at line 50 of file btree_bytea.c.

51 {
54  PointerGetDatum(b)));
55 }
Datum byteale(PG_FUNCTION_ARGS)
Definition: varlena.c:3878

References a, b, byteale(), DatumGetBool(), DirectFunctionCall2, and PointerGetDatum().

◆ gbt_bytealt()

static bool gbt_bytealt ( const void *  a,
const void *  b,
Oid  collation,
FmgrInfo flinfo 
)
static

Definition at line 58 of file btree_bytea.c.

59 {
62  PointerGetDatum(b)));
63 }
Datum bytealt(PG_FUNCTION_ARGS)
Definition: varlena.c:3858

References a, b, bytealt(), DatumGetBool(), DirectFunctionCall2, and PointerGetDatum().

◆ PG_FUNCTION_INFO_V1() [1/6]

PG_FUNCTION_INFO_V1 ( gbt_bytea_compress  )

◆ PG_FUNCTION_INFO_V1() [2/6]

PG_FUNCTION_INFO_V1 ( gbt_bytea_consistent  )

◆ PG_FUNCTION_INFO_V1() [3/6]

PG_FUNCTION_INFO_V1 ( gbt_bytea_penalty  )

◆ PG_FUNCTION_INFO_V1() [4/6]

PG_FUNCTION_INFO_V1 ( gbt_bytea_picksplit  )

◆ PG_FUNCTION_INFO_V1() [5/6]

PG_FUNCTION_INFO_V1 ( gbt_bytea_same  )

◆ PG_FUNCTION_INFO_V1() [6/6]

PG_FUNCTION_INFO_V1 ( gbt_bytea_union  )

Variable Documentation

◆ tinfo

const gbtree_vinfo tinfo
static
Initial value:
=
{
0,
true,
NULL
}
static bool gbt_byteagt(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
Definition: btree_bytea.c:26
static bool gbt_byteage(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
Definition: btree_bytea.c:34
static bool gbt_byteaeq(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
Definition: btree_bytea.c:42
static int32 gbt_byteacmp(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
Definition: btree_bytea.c:66
static bool gbt_byteale(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
Definition: btree_bytea.c:50
static bool gbt_bytealt(const void *a, const void *b, Oid collation, FmgrInfo *flinfo)
Definition: btree_bytea.c:58
@ gbt_t_bytea
Definition: btree_gist.h:33

Definition at line 74 of file btree_bytea.c.

Referenced by gbt_bytea_compress(), gbt_bytea_consistent(), gbt_bytea_penalty(), gbt_bytea_picksplit(), gbt_bytea_same(), and gbt_bytea_union().