From 42d069886f38687839388c615af608706508b557 Mon Sep 17 00:00:00 2001 From: Teodor Sigaev Date: Fri, 28 May 2004 10:43:32 +0000 Subject: New version. Add support for int2, int8, float4, float8, timestamp with/without time zone, time with/without time zone, date, interval, oid, money and macaddr, char, varchar/text, bytea, numeric, bit, varbit, inet/cidr types for GiST --- contrib/btree_gist/btree_gist.c | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 contrib/btree_gist/btree_gist.c (limited to 'contrib/btree_gist/btree_gist.c') diff --git a/contrib/btree_gist/btree_gist.c b/contrib/btree_gist/btree_gist.c new file mode 100644 index 00000000000..5e5a6988bb9 --- /dev/null +++ b/contrib/btree_gist/btree_gist.c @@ -0,0 +1,45 @@ +#include "btree_gist.h" + +PG_FUNCTION_INFO_V1(gbt_decompress); +PG_FUNCTION_INFO_V1(gbtreekey_in); +PG_FUNCTION_INFO_V1(gbtreekey_out); + +Datum gbt_decompress(PG_FUNCTION_ARGS); + +/************************************************** + * In/Out for keys + **************************************************/ + + +Datum +gbtreekey_in(PG_FUNCTION_ARGS) +{ + ereport(ERROR, + (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), + errmsg("key_in() not implemented"))); + + PG_RETURN_POINTER(NULL); +} + +#include "btree_utils_var.h" +#include "utils/builtins.h" +Datum +gbtreekey_out(PG_FUNCTION_ARGS) +{ + ereport(ERROR, + (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), + errmsg("key_out() not implemented"))); + PG_RETURN_POINTER(NULL); +} + + +/* +** GiST DeCompress methods +** do not do anything. +*/ +Datum +gbt_decompress(PG_FUNCTION_ARGS) +{ + PG_RETURN_POINTER(PG_GETARG_POINTER(0)); +} + -- cgit v1.2.3