diff options
Diffstat (limited to 'contrib/btree_gist/btree_enum.c')
-rw-r--r-- | contrib/btree_gist/btree_enum.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/contrib/btree_gist/btree_enum.c b/contrib/btree_gist/btree_enum.c index 05d02e704a0..642a19e6d46 100644 --- a/contrib/btree_gist/btree_enum.c +++ b/contrib/btree_gist/btree_enum.c @@ -16,9 +16,7 @@ typedef struct Oid upper; } oidKEY; -/* -** enum ops -*/ +/* GiST support functions */ PG_FUNCTION_INFO_V1(gbt_enum_compress); PG_FUNCTION_INFO_V1(gbt_enum_fetch); PG_FUNCTION_INFO_V1(gbt_enum_union); @@ -99,10 +97,9 @@ static const gbtree_ninfo tinfo = /************************************************** - * Enum ops + * GiST support functions **************************************************/ - Datum gbt_enum_compress(PG_FUNCTION_ARGS) { @@ -152,7 +149,6 @@ gbt_enum_union(PG_FUNCTION_ARGS) PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo)); } - Datum gbt_enum_penalty(PG_FUNCTION_ARGS) { |