summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/btree_float4.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/btree_gist/btree_float4.c')
-rw-r--r--contrib/btree_gist/btree_float4.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/contrib/btree_gist/btree_float4.c b/contrib/btree_gist/btree_float4.c
index d138aa94bf2..673c14a8f72 100644
--- a/contrib/btree_gist/btree_float4.c
+++ b/contrib/btree_gist/btree_float4.c
@@ -13,9 +13,7 @@ typedef struct float4key
float4 upper;
} float4KEY;
-/*
-** float4 ops
-*/
+/* GiST support functions */
PG_FUNCTION_INFO_V1(gbt_float4_compress);
PG_FUNCTION_INFO_V1(gbt_float4_fetch);
PG_FUNCTION_INFO_V1(gbt_float4_union);
@@ -107,10 +105,9 @@ float4_dist(PG_FUNCTION_ARGS)
/**************************************************
- * float4 ops
+ * GiST support functions
**************************************************/
-
Datum
gbt_float4_compress(PG_FUNCTION_ARGS)
{
@@ -150,7 +147,6 @@ gbt_float4_consistent(PG_FUNCTION_ARGS)
fcinfo->flinfo));
}
-
Datum
gbt_float4_distance(PG_FUNCTION_ARGS)
{
@@ -168,7 +164,6 @@ gbt_float4_distance(PG_FUNCTION_ARGS)
&tinfo, fcinfo->flinfo));
}
-
Datum
gbt_float4_union(PG_FUNCTION_ARGS)
{
@@ -179,7 +174,6 @@ gbt_float4_union(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
}
-
Datum
gbt_float4_penalty(PG_FUNCTION_ARGS)
{