summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/btree_int8.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/btree_gist/btree_int8.c')
-rw-r--r--contrib/btree_gist/btree_int8.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/contrib/btree_gist/btree_int8.c b/contrib/btree_gist/btree_int8.c
index 661cf8189fc..6e7af9a1833 100644
--- a/contrib/btree_gist/btree_int8.c
+++ b/contrib/btree_gist/btree_int8.c
@@ -13,9 +13,7 @@ typedef struct int64key
int64 upper;
} int64KEY;
-/*
-** int64 ops
-*/
+/* GiST support functions */
PG_FUNCTION_INFO_V1(gbt_int8_compress);
PG_FUNCTION_INFO_V1(gbt_int8_fetch);
PG_FUNCTION_INFO_V1(gbt_int8_union);
@@ -113,10 +111,9 @@ int8_dist(PG_FUNCTION_ARGS)
/**************************************************
- * int64 ops
+ * GiST support functions
**************************************************/
-
Datum
gbt_int8_compress(PG_FUNCTION_ARGS)
{
@@ -155,7 +152,6 @@ gbt_int8_consistent(PG_FUNCTION_ARGS)
GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
}
-
Datum
gbt_int8_distance(PG_FUNCTION_ARGS)
{
@@ -173,7 +169,6 @@ gbt_int8_distance(PG_FUNCTION_ARGS)
&tinfo, fcinfo->flinfo));
}
-
Datum
gbt_int8_union(PG_FUNCTION_ARGS)
{
@@ -184,7 +179,6 @@ gbt_int8_union(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
}
-
Datum
gbt_int8_penalty(PG_FUNCTION_ARGS)
{