diff options
author | Peter Geoghegan | 2022-09-22 20:59:20 +0000 |
---|---|---|
committer | Peter Geoghegan | 2022-09-22 20:59:20 +0000 |
commit | 0faf7d933f625eb1668dcaa518b472f722b53a55 (patch) | |
tree | 5fce7103c75871bec2ec1636d8751245cb7374a0 /contrib/intarray/_int_selfuncs.c | |
parent | 8fb4e001e9c185250a95b2b13880a2a04d626b75 (diff) |
Harmonize parameter names in contrib code.
Make sure that function declarations use names that exactly match the
corresponding names from function definitions in contrib code.
Like other recent commits that cleaned up function parameter names, this
commit was written with help from clang-tidy.
Author: Peter Geoghegan <[email protected]>
Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
Diffstat (limited to 'contrib/intarray/_int_selfuncs.c')
-rw-r--r-- | contrib/intarray/_int_selfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/intarray/_int_selfuncs.c b/contrib/intarray/_int_selfuncs.c index 3d8ff6781bc..6d5f6cc70e8 100644 --- a/contrib/intarray/_int_selfuncs.c +++ b/contrib/intarray/_int_selfuncs.c @@ -34,8 +34,8 @@ PG_FUNCTION_INFO_V1(_int_contained_joinsel); PG_FUNCTION_INFO_V1(_int_matchsel); -static Selectivity int_query_opr_selec(ITEM *item, Datum *values, float4 *freqs, - int nmncelems, float4 minfreq); +static Selectivity int_query_opr_selec(ITEM *item, Datum *mcelems, float4 *mcefreqs, + int nmcelems, float4 minfreq); static int compare_val_int4(const void *a, const void *b); /* |