summaryrefslogtreecommitdiff
path: root/contrib/btree_gist/btree_date.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2025-04-03 13:39:33 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2025-04-03 13:39:33 +0300
commit9370978da8ac8f0e31867859282b0f2be724fe48 (patch)
tree5da91f476e7ba9eee548ee67eeabea80f5f1ded9 /contrib/btree_gist/btree_date.c
parent82a46cca99fa967cc3c6c2cf55254dd44eebbcfd (diff)
Fix boilerplate comments in btree_gist
A few of these were copy-pasted wrong, like the comment "Bytea ops" in btree_numeric.c. Instead of fixing the incorrect ones, replace them all with generic comment "GiST support functions". Also tidy up the inconsistent newlines between various functions while we're at it.
Diffstat (limited to 'contrib/btree_gist/btree_date.c')
-rw-r--r--contrib/btree_gist/btree_date.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/contrib/btree_gist/btree_date.c b/contrib/btree_gist/btree_date.c
index 7a4a9d7a853..e87f8c03fc7 100644
--- a/contrib/btree_gist/btree_date.c
+++ b/contrib/btree_gist/btree_date.c
@@ -14,9 +14,7 @@ typedef struct
DateADT upper;
} dateKEY;
-/*
-** date ops
-*/
+/* GiST support functions */
PG_FUNCTION_INFO_V1(gbt_date_compress);
PG_FUNCTION_INFO_V1(gbt_date_fetch);
PG_FUNCTION_INFO_V1(gbt_date_union);
@@ -128,11 +126,9 @@ date_dist(PG_FUNCTION_ARGS)
/**************************************************
- * date ops
+ * GiST support functions
**************************************************/
-
-
Datum
gbt_date_compress(PG_FUNCTION_ARGS)
{
@@ -172,7 +168,6 @@ gbt_date_consistent(PG_FUNCTION_ARGS)
fcinfo->flinfo));
}
-
Datum
gbt_date_distance(PG_FUNCTION_ARGS)
{
@@ -190,7 +185,6 @@ gbt_date_distance(PG_FUNCTION_ARGS)
&tinfo, fcinfo->flinfo));
}
-
Datum
gbt_date_union(PG_FUNCTION_ARGS)
{
@@ -201,7 +195,6 @@ gbt_date_union(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
}
-
Datum
gbt_date_penalty(PG_FUNCTION_ARGS)
{
@@ -238,7 +231,6 @@ gbt_date_penalty(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(result);
}
-
Datum
gbt_date_picksplit(PG_FUNCTION_ARGS)
{