1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

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.
This commit is contained in:
Heikki Linnakangas
2025-04-03 13:39:33 +03:00
parent 82a46cca99
commit 9370978da8
21 changed files with 49 additions and 187 deletions

View File

@ -8,10 +8,7 @@
#include "utils/fmgrprotos.h"
#include "utils/varbit.h"
/*
** Bit ops
*/
/* GiST support functions */
PG_FUNCTION_INFO_V1(gbt_bit_compress);
PG_FUNCTION_INFO_V1(gbt_bit_union);
PG_FUNCTION_INFO_V1(gbt_bit_picksplit);
@ -121,7 +118,7 @@ static const gbtree_vinfo tinfo =
/**************************************************
* Bit ops
* GiST support functions
**************************************************/
Datum
@ -161,8 +158,6 @@ gbt_bit_consistent(PG_FUNCTION_ARGS)
PG_RETURN_BOOL(retval);
}
Datum
gbt_bit_union(PG_FUNCTION_ARGS)
{
@ -173,7 +168,6 @@ gbt_bit_union(PG_FUNCTION_ARGS)
&tinfo, fcinfo->flinfo));
}
Datum
gbt_bit_picksplit(PG_FUNCTION_ARGS)
{
@ -196,7 +190,6 @@ gbt_bit_same(PG_FUNCTION_ARGS)
PG_RETURN_POINTER(result);
}
Datum
gbt_bit_penalty(PG_FUNCTION_ARGS)
{