diff options
| author | Simon Riggs | 2017-04-06 23:10:51 +0000 |
|---|---|---|
| committer | Simon Riggs | 2017-04-06 23:10:51 +0000 |
| commit | ac2b09508834c9d6b7ec9467e876213b0304c792 (patch) | |
| tree | 7105e1721f18f74a0fc974a708d36096cd2c99fe /src/include/optimizer | |
| parent | 255efa241f460ee4f4c4c98c8cdd7457807f3af9 (diff) | |
Reset API of clause_selectivity()
Discussion: https://postgr.es/m/CAKJS1f9yurJQW9pdnzL+rmOtsp2vOytkpXKGnMFJEO-qz5O5eA@mail.gmail.com
Diffstat (limited to 'src/include/optimizer')
| -rw-r--r-- | src/include/optimizer/cost.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/optimizer/cost.h b/src/include/optimizer/cost.h index 81a84b54942..6909359bcff 100644 --- a/src/include/optimizer/cost.h +++ b/src/include/optimizer/cost.h @@ -203,14 +203,12 @@ extern Selectivity clauselist_selectivity(PlannerInfo *root, List *clauses, int varRelid, JoinType jointype, - SpecialJoinInfo *sjinfo, - RelOptInfo *rel); + SpecialJoinInfo *sjinfo); extern Selectivity clause_selectivity(PlannerInfo *root, Node *clause, int varRelid, JoinType jointype, - SpecialJoinInfo *sjinfo, - RelOptInfo *rel); + SpecialJoinInfo *sjinfo); extern void cost_gather_merge(GatherMergePath *path, PlannerInfo *root, RelOptInfo *rel, ParamPathInfo *param_info, Cost input_startup_cost, Cost input_total_cost, |
