diff options
author | David Rowley <drowley@postgresql.org> | 2022-07-15 15:26:34 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2022-07-15 15:26:34 +1200 |
commit | 80ad91ea8cfca6c817034423fc889876217c67af (patch) | |
tree | 933acabcaa47d30727cf6004da38d0c910e11563 | |
parent | 582c3e9e8b8d27bec2deb71025c8e85b6257c589 (diff) | |
download | postgresql-80ad91ea8cfca6c817034423fc889876217c67af.tar.gz postgresql-80ad91ea8cfca6c817034423fc889876217c67af.zip |
Fix inconsistent parameter names between prototype and declaration
Noticed while working in this area. This code was introduced in PG15,
which is still in beta, so backpatch to there for consistency.
Backpatch-through: 15
-rw-r--r-- | src/include/optimizer/paths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index b6e137cf83f..54ab709c67c 100644 --- a/src/include/optimizer/paths.h +++ b/src/include/optimizer/paths.h @@ -208,7 +208,7 @@ extern int group_keys_reorder_by_pathkeys(List *pathkeys, List **group_clauses); extern List *get_useful_group_keys_orderings(PlannerInfo *root, double nrows, List *path_pathkeys, - List *pathkeys, List *clauses); + List *group_pathkeys, List *group_clauses); extern Path *get_cheapest_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, CostSelector cost_criterion, |