Fix the query used for \d against 8.2 and 8.3 servers.
[PostgreSQL.git] / contrib / btree_gist / btree_utils_var.h
blob9fc1bccfaf500cc888cd377865d1d8749dd5827e
1 /*
2 * $PostgreSQL:$
3 */
4 #ifndef __BTREE_UTILS_VAR_H__
5 #define __BTREE_UTILS_VAR_H__
7 #include "btree_gist.h"
9 #include "mb/pg_wchar.h"
11 /* Variable length key */
12 typedef bytea GBT_VARKEY;
14 /* Better readable key */
15 typedef struct
17 bytea *lower,
18 *upper;
19 } GBT_VARKEY_R;
21 /* used for key sorting */
22 typedef struct
24 int i;
25 GBT_VARKEY *t;
26 } Vsrt;
29 type description
33 typedef struct
36 /* Attribs */
38 enum gbtree_type t; /* data type */
39 int32 eml; /* cached pg_database_encoding_max_length (0:
40 * undefined) */
41 bool trnc; /* truncate (=compress) key */
43 /* Methods */
45 bool (*f_gt) (const void *, const void *); /* greater then */
46 bool (*f_ge) (const void *, const void *); /* greater equal */
47 bool (*f_eq) (const void *, const void *); /* equal */
48 bool (*f_le) (const void *, const void *); /* less equal */
49 bool (*f_lt) (const void *, const void *); /* less then */
50 int32 (*f_cmp) (const bytea *, const bytea *); /* node compare */
51 GBT_VARKEY *(*f_l2n) (GBT_VARKEY *); /* convert leaf to node */
52 } gbtree_vinfo;
56 extern GBT_VARKEY_R gbt_var_key_readable(const GBT_VARKEY * k);
58 extern GBT_VARKEY *gbt_var_key_copy(const GBT_VARKEY_R * u, bool force_node);
60 extern GISTENTRY *gbt_var_compress(GISTENTRY *entry, const gbtree_vinfo * tinfo);
62 extern GBT_VARKEY *gbt_var_union(const GistEntryVector *entryvec, int32 *size,
63 const gbtree_vinfo * tinfo);
65 extern bool gbt_var_same(bool *result, const Datum d1, const Datum d2,
66 const gbtree_vinfo * tinfo);
68 extern float *gbt_var_penalty(float *res, const GISTENTRY *o, const GISTENTRY *n,
69 const gbtree_vinfo * tinfo);
71 extern bool gbt_var_consistent(GBT_VARKEY_R * key, const void *query,
72 const StrategyNumber *strategy, bool is_leaf,
73 const gbtree_vinfo * tinfo);
75 extern GIST_SPLITVEC *gbt_var_picksplit(const GistEntryVector *entryvec, GIST_SPLITVEC *v,
76 const gbtree_vinfo * tinfo);
77 extern void gbt_var_bin_union(Datum *u, GBT_VARKEY * e,
78 const gbtree_vinfo * tinfo);
80 #endif