2 * contrib/btree_gist/btree_int4.c
6 #include "btree_gist.h"
7 #include "btree_utils_num.h"
8 #include "common/int.h"
10 typedef struct int32key
19 PG_FUNCTION_INFO_V1(gbt_int4_compress
);
20 PG_FUNCTION_INFO_V1(gbt_int4_fetch
);
21 PG_FUNCTION_INFO_V1(gbt_int4_union
);
22 PG_FUNCTION_INFO_V1(gbt_int4_picksplit
);
23 PG_FUNCTION_INFO_V1(gbt_int4_consistent
);
24 PG_FUNCTION_INFO_V1(gbt_int4_distance
);
25 PG_FUNCTION_INFO_V1(gbt_int4_penalty
);
26 PG_FUNCTION_INFO_V1(gbt_int4_same
);
30 gbt_int4gt(const void *a
, const void *b
, FmgrInfo
*flinfo
)
32 return (*((const int32
*) a
) > *((const int32
*) b
));
35 gbt_int4ge(const void *a
, const void *b
, FmgrInfo
*flinfo
)
37 return (*((const int32
*) a
) >= *((const int32
*) b
));
40 gbt_int4eq(const void *a
, const void *b
, FmgrInfo
*flinfo
)
42 return (*((const int32
*) a
) == *((const int32
*) b
));
45 gbt_int4le(const void *a
, const void *b
, FmgrInfo
*flinfo
)
47 return (*((const int32
*) a
) <= *((const int32
*) b
));
50 gbt_int4lt(const void *a
, const void *b
, FmgrInfo
*flinfo
)
52 return (*((const int32
*) a
) < *((const int32
*) b
));
56 gbt_int4key_cmp(const void *a
, const void *b
, FmgrInfo
*flinfo
)
58 int32KEY
*ia
= (int32KEY
*) (((const Nsrt
*) a
)->t
);
59 int32KEY
*ib
= (int32KEY
*) (((const Nsrt
*) b
)->t
);
61 if (ia
->lower
== ib
->lower
)
63 if (ia
->upper
== ib
->upper
)
66 return (ia
->upper
> ib
->upper
) ? 1 : -1;
69 return (ia
->lower
> ib
->lower
) ? 1 : -1;
73 gbt_int4_dist(const void *a
, const void *b
, FmgrInfo
*flinfo
)
75 return GET_FLOAT_DISTANCE(int32
, a
, b
);
79 static const gbtree_ninfo tinfo
=
83 8, /* sizeof(gbtreekey8) */
94 PG_FUNCTION_INFO_V1(int4_dist
);
96 int4_dist(PG_FUNCTION_ARGS
)
98 int32 a
= PG_GETARG_INT32(0);
99 int32 b
= PG_GETARG_INT32(1);
103 if (pg_sub_s32_overflow(a
, b
, &r
) ||
106 (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE
),
107 errmsg("integer out of range")));
115 /**************************************************
117 **************************************************/
121 gbt_int4_compress(PG_FUNCTION_ARGS
)
123 GISTENTRY
*entry
= (GISTENTRY
*) PG_GETARG_POINTER(0);
125 PG_RETURN_POINTER(gbt_num_compress(entry
, &tinfo
));
129 gbt_int4_fetch(PG_FUNCTION_ARGS
)
131 GISTENTRY
*entry
= (GISTENTRY
*) PG_GETARG_POINTER(0);
133 PG_RETURN_POINTER(gbt_num_fetch(entry
, &tinfo
));
137 gbt_int4_consistent(PG_FUNCTION_ARGS
)
139 GISTENTRY
*entry
= (GISTENTRY
*) PG_GETARG_POINTER(0);
140 int32 query
= PG_GETARG_INT32(1);
141 StrategyNumber strategy
= (StrategyNumber
) PG_GETARG_UINT16(2);
143 /* Oid subtype = PG_GETARG_OID(3); */
144 bool *recheck
= (bool *) PG_GETARG_POINTER(4);
145 int32KEY
*kkk
= (int32KEY
*) DatumGetPointer(entry
->key
);
148 /* All cases served by this function are exact */
151 key
.lower
= (GBT_NUMKEY
*) &kkk
->lower
;
152 key
.upper
= (GBT_NUMKEY
*) &kkk
->upper
;
154 PG_RETURN_BOOL(gbt_num_consistent(&key
, (void *) &query
, &strategy
,
155 GIST_LEAF(entry
), &tinfo
, fcinfo
->flinfo
));
160 gbt_int4_distance(PG_FUNCTION_ARGS
)
162 GISTENTRY
*entry
= (GISTENTRY
*) PG_GETARG_POINTER(0);
163 int32 query
= PG_GETARG_INT32(1);
165 /* Oid subtype = PG_GETARG_OID(3); */
166 int32KEY
*kkk
= (int32KEY
*) DatumGetPointer(entry
->key
);
169 key
.lower
= (GBT_NUMKEY
*) &kkk
->lower
;
170 key
.upper
= (GBT_NUMKEY
*) &kkk
->upper
;
172 PG_RETURN_FLOAT8(gbt_num_distance(&key
, (void *) &query
, GIST_LEAF(entry
),
173 &tinfo
, fcinfo
->flinfo
));
178 gbt_int4_union(PG_FUNCTION_ARGS
)
180 GistEntryVector
*entryvec
= (GistEntryVector
*) PG_GETARG_POINTER(0);
181 void *out
= palloc(sizeof(int32KEY
));
183 *(int *) PG_GETARG_POINTER(1) = sizeof(int32KEY
);
184 PG_RETURN_POINTER(gbt_num_union((void *) out
, entryvec
, &tinfo
, fcinfo
->flinfo
));
189 gbt_int4_penalty(PG_FUNCTION_ARGS
)
191 int32KEY
*origentry
= (int32KEY
*) DatumGetPointer(((GISTENTRY
*) PG_GETARG_POINTER(0))->key
);
192 int32KEY
*newentry
= (int32KEY
*) DatumGetPointer(((GISTENTRY
*) PG_GETARG_POINTER(1))->key
);
193 float *result
= (float *) PG_GETARG_POINTER(2);
195 penalty_num(result
, origentry
->lower
, origentry
->upper
, newentry
->lower
, newentry
->upper
);
197 PG_RETURN_POINTER(result
);
201 gbt_int4_picksplit(PG_FUNCTION_ARGS
)
203 PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector
*) PG_GETARG_POINTER(0),
204 (GIST_SPLITVEC
*) PG_GETARG_POINTER(1),
205 &tinfo
, fcinfo
->flinfo
));
209 gbt_int4_same(PG_FUNCTION_ARGS
)
211 int32KEY
*b1
= (int32KEY
*) PG_GETARG_POINTER(0);
212 int32KEY
*b2
= (int32KEY
*) PG_GETARG_POINTER(1);
213 bool *result
= (bool *) PG_GETARG_POINTER(2);
215 *result
= gbt_num_same((void *) b1
, (void *) b2
, &tinfo
, fcinfo
->flinfo
);
216 PG_RETURN_POINTER(result
);