9 #include "access/skey.h"
10 #include "utils/builtins.h"
11 #include "utils/cash.h"
12 #include "utils/date.h"
13 #include "utils/inet.h"
14 #include "utils/numeric.h"
15 #include "utils/timestamp.h"
16 #include "utils/varbit.h"
20 typedef struct TypeInfo
23 Datum (*leftmostvalue
) (void);
24 Datum (*typecmp
) (FunctionCallInfo
);
27 typedef struct QueryInfo
29 StrategyNumber strategy
;
33 #define GIN_EXTRACT_VALUE(type) \
34 PG_FUNCTION_INFO_V1(gin_extract_value_##type); \
35 Datum gin_extract_value_##type(PG_FUNCTION_ARGS); \
37 gin_extract_value_##type(PG_FUNCTION_ARGS) \
39 Datum datum = PG_GETARG_DATUM(0); \
40 int32 *nentries = (int32 *) PG_GETARG_POINTER(1); \
41 Datum *entries = (Datum *) palloc(sizeof(Datum)); \
43 if ( TypeInfo_##type.is_varlena ) \
44 datum = PointerGetDatum(PG_DETOAST_DATUM(datum)); \
48 PG_RETURN_POINTER(entries); \
52 * For BTGreaterEqualStrategyNumber, BTGreaterStrategyNumber, and
53 * BTEqualStrategyNumber we want to start the index scan at the
54 * supplied query datum, and work forward. For BTLessStrategyNumber
55 * and BTLessEqualStrategyNumber, we need to start at the leftmost
56 * key, and work forward until the supplied query datum (which must be
57 * sent along inside the QueryInfo structure).
60 #define GIN_EXTRACT_QUERY(type) \
61 PG_FUNCTION_INFO_V1(gin_extract_query_##type); \
62 Datum gin_extract_query_##type(PG_FUNCTION_ARGS); \
64 gin_extract_query_##type(PG_FUNCTION_ARGS) \
66 Datum datum = PG_GETARG_DATUM(0); \
67 int32 *nentries = (int32 *) PG_GETARG_POINTER(1); \
68 StrategyNumber strategy = PG_GETARG_UINT16(2); \
69 bool **partialmatch = (bool **) PG_GETARG_POINTER(3); \
70 Pointer **extra_data = (Pointer **) PG_GETARG_POINTER(4); \
71 Datum *entries = (Datum *) palloc(sizeof(Datum)); \
72 QueryInfo *data = (QueryInfo *) palloc(sizeof(QueryInfo)); \
73 bool *ptr_partialmatch; \
76 ptr_partialmatch = *partialmatch = (bool *) palloc(sizeof(bool)); \
77 *ptr_partialmatch = false; \
78 if ( TypeInfo_##type.is_varlena ) \
79 datum = PointerGetDatum(PG_DETOAST_DATUM(datum)); \
80 data->strategy = strategy; \
81 data->datum = datum; \
82 *extra_data = (Pointer *) palloc(sizeof(Pointer)); \
83 **extra_data = (Pointer) data; \
87 case BTLessStrategyNumber: \
88 case BTLessEqualStrategyNumber: \
89 entries[0] = TypeInfo_##type.leftmostvalue(); \
90 *ptr_partialmatch = true; \
92 case BTGreaterEqualStrategyNumber: \
93 case BTGreaterStrategyNumber: \
94 *ptr_partialmatch = true; \
95 case BTEqualStrategyNumber: \
99 elog(ERROR, "unrecognized strategy number: %d", strategy); \
102 PG_RETURN_POINTER(entries); \
106 * Datum a is a value from extract_query method and for BTLess*
107 * strategy it is a left-most value. So, use original datum from QueryInfo
108 * to decide to stop scanning or not. Datum b is always from index.
110 #define GIN_COMPARE_PREFIX(type) \
111 PG_FUNCTION_INFO_V1(gin_compare_prefix_##type); \
112 Datum gin_compare_prefix_##type(PG_FUNCTION_ARGS); \
114 gin_compare_prefix_##type(PG_FUNCTION_ARGS) \
116 Datum a = PG_GETARG_DATUM(0); \
117 Datum b = PG_GETARG_DATUM(1); \
118 QueryInfo *data = (QueryInfo *) PG_GETARG_POINTER(3); \
122 cmp = DatumGetInt32(DirectFunctionCall2( \
123 TypeInfo_##type.typecmp, \
124 (data->strategy == BTLessStrategyNumber || \
125 data->strategy == BTLessEqualStrategyNumber) \
129 switch (data->strategy) \
131 case BTLessStrategyNumber: \
132 /* If original datum > indexed one then return match */ \
138 case BTLessEqualStrategyNumber: \
139 /* The same except equality */ \
145 case BTEqualStrategyNumber: \
151 case BTGreaterEqualStrategyNumber: \
152 /* If original datum <= indexed one then return match */ \
158 case BTGreaterStrategyNumber: \
159 /* If original datum <= indexed one then return match */ \
160 /* If original datum == indexed one then continue scan */ \
169 elog(ERROR, "unrecognized strategy number: %d", \
174 PG_RETURN_INT32(res); \
177 #define GIN_SUPPORT(type) \
178 GIN_EXTRACT_VALUE(type) \
179 GIN_EXTRACT_QUERY(type) \
180 GIN_COMPARE_PREFIX(type)
183 PG_FUNCTION_INFO_V1(gin_btree_consistent
);
184 Datum
gin_btree_consistent(PG_FUNCTION_ARGS
);
186 gin_btree_consistent(PG_FUNCTION_ARGS
)
188 bool *recheck
= (bool *) PG_GETARG_POINTER(5);
191 PG_RETURN_BOOL(true);
195 leftmostvalue_int2(void)
197 return Int16GetDatum(SHRT_MIN
);
199 static TypeInfo TypeInfo_int2
= {false, leftmostvalue_int2
, btint2cmp
};
204 leftmostvalue_int4(void)
206 return Int32GetDatum(INT_MIN
);
208 static TypeInfo TypeInfo_int4
= {false, leftmostvalue_int4
, btint4cmp
};
213 leftmostvalue_int8(void)
216 * Use sequence's definition to keep compatibility. Another way may make a
217 * problem with INT64_IS_BUSTED
219 return Int64GetDatum(SEQ_MINVALUE
);
221 static TypeInfo TypeInfo_int8
= {false, leftmostvalue_int8
, btint8cmp
};
226 leftmostvalue_float4(void)
228 return Float4GetDatum(-get_float4_infinity());
230 static TypeInfo TypeInfo_float4
= {false, leftmostvalue_float4
, btfloat4cmp
};
235 leftmostvalue_float8(void)
237 return Float8GetDatum(-get_float8_infinity());
239 static TypeInfo TypeInfo_float8
= {false, leftmostvalue_float8
, btfloat8cmp
};
244 leftmostvalue_money(void)
247 * Use sequence's definition to keep compatibility. Another way may make a
248 * problem with INT64_IS_BUSTED
250 return Int64GetDatum(SEQ_MINVALUE
);
252 static TypeInfo TypeInfo_money
= {false, leftmostvalue_money
, cash_cmp
};
257 leftmostvalue_oid(void)
259 return ObjectIdGetDatum(0);
261 static TypeInfo TypeInfo_oid
= {false, leftmostvalue_oid
, btoidcmp
};
266 leftmostvalue_timestamp(void)
268 return TimestampGetDatum(DT_NOBEGIN
);
270 static TypeInfo TypeInfo_timestamp
= {false, leftmostvalue_timestamp
, timestamp_cmp
};
272 GIN_SUPPORT(timestamp
)
274 static TypeInfo TypeInfo_timestamptz
= {false, leftmostvalue_timestamp
, timestamp_cmp
};
276 GIN_SUPPORT(timestamptz
)
279 leftmostvalue_time(void)
281 return TimeADTGetDatum(0);
283 static TypeInfo TypeInfo_time
= {false, leftmostvalue_time
, time_cmp
};
288 leftmostvalue_timetz(void)
290 TimeTzADT
*v
= palloc(sizeof(TimeTzADT
));
293 v
->zone
= -24 * 3600; /* XXX is that true? */
295 return TimeTzADTPGetDatum(v
);
297 static TypeInfo TypeInfo_timetz
= {false, leftmostvalue_timetz
, timetz_cmp
};
302 leftmostvalue_date(void)
304 return DateADTGetDatum(DATEVAL_NOBEGIN
);
306 static TypeInfo TypeInfo_date
= {false, leftmostvalue_date
, date_cmp
};
311 leftmostvalue_interval(void)
313 Interval
*v
= palloc(sizeof(Interval
));
315 v
->time
= DT_NOBEGIN
;
318 return IntervalPGetDatum(v
);
320 static TypeInfo TypeInfo_interval
= {false, leftmostvalue_interval
, interval_cmp
};
322 GIN_SUPPORT(interval
)
325 leftmostvalue_macaddr(void)
327 macaddr
*v
= palloc0(sizeof(macaddr
));
329 return MacaddrPGetDatum(v
);
331 static TypeInfo TypeInfo_macaddr
= {false, leftmostvalue_macaddr
, macaddr_cmp
};
336 leftmostvalue_inet(void)
338 return DirectFunctionCall3(inet_in
,
339 CStringGetDatum("0.0.0.0/0"),
343 static TypeInfo TypeInfo_inet
= {true, leftmostvalue_inet
, network_cmp
};
347 static TypeInfo TypeInfo_cidr
= {true, leftmostvalue_inet
, network_cmp
};
352 leftmostvalue_text(void)
354 return PointerGetDatum(cstring_to_text_with_len("", 0));
356 static TypeInfo TypeInfo_text
= {true, leftmostvalue_text
, bttextcmp
};
361 leftmostvalue_char(void)
363 return CharGetDatum(SCHAR_MIN
);
365 static TypeInfo TypeInfo_char
= {false, leftmostvalue_char
, btcharcmp
};
369 static TypeInfo TypeInfo_bytea
= {true, leftmostvalue_text
, byteacmp
};
374 leftmostvalue_bit(void)
376 return DirectFunctionCall3(bit_in
,
381 static TypeInfo TypeInfo_bit
= {true, leftmostvalue_bit
, bitcmp
};
386 leftmostvalue_varbit(void)
388 return DirectFunctionCall3(varbit_in
,
393 static TypeInfo TypeInfo_varbit
= {true, leftmostvalue_varbit
, bitcmp
};
398 * Numeric type hasn't applicable left-most value, so NULL
399 * is used for that. NULL will never be an argument for a C-level
400 * numeric function except gin_numeric_cmp and it will not be stored
401 * somewhere and it could not be returned in any user SQL query.
404 #define NUMERIC_IS_LEFTMOST(x) ((x) == NULL)
406 PG_FUNCTION_INFO_V1(gin_numeric_cmp
);
407 Datum
gin_numeric_cmp(PG_FUNCTION_ARGS
);
410 gin_numeric_cmp(PG_FUNCTION_ARGS
)
412 Numeric a
= (Numeric
) PG_GETARG_POINTER(0);
413 Numeric b
= (Numeric
) PG_GETARG_POINTER(1);
416 if (NUMERIC_IS_LEFTMOST(a
))
418 res
= (NUMERIC_IS_LEFTMOST(b
)) ? 0 : -1;
420 else if (NUMERIC_IS_LEFTMOST(b
))
426 res
= DatumGetInt32(DirectFunctionCall2(numeric_cmp
,
428 NumericGetDatum(b
)));
431 PG_RETURN_INT32(res
);
435 leftmostvalue_numeric(void)
437 return PointerGetDatum(NULL
);
440 static TypeInfo TypeInfo_numeric
= {true, leftmostvalue_numeric
, gin_numeric_cmp
};