mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Clean up cpluspluscheck violation.
"operator" is a reserved word in C++, so per project conventions,
don't use it as an identifier in header files.
My oversight in commit a80818605.
This commit is contained in:
@@ -151,7 +151,7 @@ extern double histogram_selectivity(VariableStatData *vardata, FmgrInfo *opproc,
|
||||
Datum constval, bool varonleft,
|
||||
int min_hist_size, int n_skip,
|
||||
int *hist_size);
|
||||
extern double generic_restriction_selectivity(PlannerInfo *root, Oid operator,
|
||||
extern double generic_restriction_selectivity(PlannerInfo *root, Oid oproid,
|
||||
List *args, int varRelid,
|
||||
double default_selectivity);
|
||||
extern double ineq_histogram_selectivity(PlannerInfo *root,
|
||||
|
||||
Reference in New Issue
Block a user