diff options
Diffstat (limited to 'contrib/btree_gist/btree_oid.c')
-rw-r--r-- | contrib/btree_gist/btree_oid.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/contrib/btree_gist/btree_oid.c b/contrib/btree_gist/btree_oid.c index d1976f4f091..d9afffe7827 100644 --- a/contrib/btree_gist/btree_oid.c +++ b/contrib/btree_gist/btree_oid.c @@ -12,9 +12,7 @@ typedef struct Oid upper; } oidKEY; -/* -** OID ops -*/ +/* GiST support functions */ PG_FUNCTION_INFO_V1(gbt_oid_compress); PG_FUNCTION_INFO_V1(gbt_oid_fetch); PG_FUNCTION_INFO_V1(gbt_oid_union); @@ -113,10 +111,9 @@ oid_dist(PG_FUNCTION_ARGS) /************************************************** - * Oid ops + * GiST support functions **************************************************/ - Datum gbt_oid_compress(PG_FUNCTION_ARGS) { @@ -155,7 +152,6 @@ gbt_oid_consistent(PG_FUNCTION_ARGS) GIST_LEAF(entry), &tinfo, fcinfo->flinfo)); } - Datum gbt_oid_distance(PG_FUNCTION_ARGS) { @@ -173,7 +169,6 @@ gbt_oid_distance(PG_FUNCTION_ARGS) &tinfo, fcinfo->flinfo)); } - Datum gbt_oid_union(PG_FUNCTION_ARGS) { @@ -184,7 +179,6 @@ gbt_oid_union(PG_FUNCTION_ARGS) PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo)); } - Datum gbt_oid_penalty(PG_FUNCTION_ARGS) { |