pgsql: Fix broken extract_actual_join_clauses call in 9.6 postgres_fdw.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix broken extract_actual_join_clauses call in 9.6 postgres_fdw.
Date: 2018-04-19 22:29:44
Message-ID: E1f9I3k-0007W0-JM@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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.

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/306d6e59f7511fef3e05457b15ecad0fc00b5e1e

Modified Files
--------------
contrib/postgres_fdw/postgres_fdw.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2018-04-19 22:30:09 Re: pgsql: Fix incorrect handling of join clauses pushed into parameterized
Previous Message Tom Lane 2018-04-19 21:14:15 pgsql: Improve consistency of comments in system catalog headers.