1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +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:
Tom Lane
2020-04-21 11:21:15 -04:00
parent 2117c3cb3d
commit 9d25e1aa31
2 changed files with 3 additions and 3 deletions

View File

@ -848,7 +848,7 @@ histogram_selectivity(VariableStatData *vardata, FmgrInfo *opproc,
* Otherwise, fall back to the default selectivity provided by the caller.
*/
double
generic_restriction_selectivity(PlannerInfo *root, Oid operator,
generic_restriction_selectivity(PlannerInfo *root, Oid oproid,
List *args, int varRelid,
double default_selectivity)
{
@ -886,7 +886,7 @@ generic_restriction_selectivity(PlannerInfo *root, Oid operator,
double nullfrac;
int hist_size;
fmgr_info(get_opcode(operator), &opproc);
fmgr_info(get_opcode(oproid), &opproc);
/*
* Calculate the selectivity for the column's most common values.