mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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 <pg@bowt.ie> Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
This commit is contained in:
@ -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);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user