diff options
author | Heikki Linnakangas | 2025-04-03 10:39:33 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2025-04-03 10:39:33 +0000 |
commit | 9370978da8ac8f0e31867859282b0f2be724fe48 (patch) | |
tree | 5da91f476e7ba9eee548ee67eeabea80f5f1ded9 /contrib/btree_gist/btree_interval.c | |
parent | 82a46cca99fa967cc3c6c2cf55254dd44eebbcfd (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_interval.c')
-rw-r--r-- | contrib/btree_gist/btree_interval.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/contrib/btree_gist/btree_interval.c b/contrib/btree_gist/btree_interval.c index 8f99a416965..ac0108e6280 100644 --- a/contrib/btree_gist/btree_interval.c +++ b/contrib/btree_gist/btree_interval.c @@ -14,10 +14,7 @@ typedef struct upper; } intvKEY; - -/* -** Interval ops -*/ +/* GiST support functions */ PG_FUNCTION_INFO_V1(gbt_intv_compress); PG_FUNCTION_INFO_V1(gbt_intv_fetch); PG_FUNCTION_INFO_V1(gbt_intv_decompress); @@ -137,10 +134,9 @@ interval_dist(PG_FUNCTION_ARGS) /************************************************** - * interval ops + * GiST support functions **************************************************/ - Datum gbt_intv_compress(PG_FUNCTION_ARGS) { |