Fix broken extract_actual_join_clauses call in 9.6 postgres_fdw.

In commits e5d83995e et al, I changed the signature of
extract_actual_join_clauses, thinking that it was not called from
anywhere but createplan.c.  I missed that postgres_fdw uses it
in the 9.6 branch only.

This opens up the question of whether any third-party modules might
be calling it, and whether we need to take steps to avoid an API break
for them.  But for the moment, just get the buildfarm green again.
This commit is contained in:
Tom Lane 2018-04-19 18:29:39 -04:00
parent 0c141fcaa7
commit 306d6e59f7

View File

@ -3976,7 +3976,9 @@ foreign_join_ok(PlannerInfo *root, RelOptInfo *joinrel, JoinType jointype,
/* Separate restrict list into join quals and quals on join relation */
if (IS_OUTER_JOIN(jointype))
extract_actual_join_clauses(extra->restrictlist, &joinclauses, &otherclauses);
extract_actual_join_clauses(extra->restrictlist,
joinrel->relids,
&joinclauses, &otherclauses);
else
{
/*