diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2017-04-06 19:10:51 -0400 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2017-04-06 19:10:51 -0400 |
commit | ac2b09508834c9d6b7ec9467e876213b0304c792 (patch) | |
tree | 7105e1721f18f74a0fc974a708d36096cd2c99fe /contrib/postgres_fdw/postgres_fdw.c | |
parent | 255efa241f460ee4f4c4c98c8cdd7457807f3af9 (diff) | |
download | postgresql-ac2b09508834c9d6b7ec9467e876213b0304c792.tar.gz postgresql-ac2b09508834c9d6b7ec9467e876213b0304c792.zip |
Reset API of clause_selectivity()
Discussion: https://postgr.es/m/CAKJS1f9yurJQW9pdnzL+rmOtsp2vOytkpXKGnMFJEO-qz5O5eA@mail.gmail.com
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index a73d1a0bed9..2851869932d 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -591,7 +591,6 @@ postgresGetForeignRelSize(PlannerInfo *root, fpinfo->local_conds, baserel->relid, JOIN_INNER, - NULL, NULL); cost_qual_eval(&fpinfo->local_conds_cost, fpinfo->local_conds, root); @@ -2573,7 +2572,6 @@ estimate_path_cost_size(PlannerInfo *root, local_param_join_conds, foreignrel->relid, JOIN_INNER, - NULL, NULL); local_sel *= fpinfo->local_conds_sel; @@ -4457,7 +4455,6 @@ postgresGetForeignJoinPaths(PlannerInfo *root, fpinfo->local_conds, 0, JOIN_INNER, - NULL, NULL); cost_qual_eval(&fpinfo->local_conds_cost, fpinfo->local_conds, root); @@ -4468,7 +4465,7 @@ postgresGetForeignJoinPaths(PlannerInfo *root, if (!fpinfo->use_remote_estimate) fpinfo->joinclause_sel = clauselist_selectivity(root, fpinfo->joinclauses, 0, fpinfo->jointype, - extra->sjinfo, NULL); + extra->sjinfo); /* Estimate costs for bare join relation */ estimate_path_cost_size(root, joinrel, NIL, NIL, &rows, |