pgsql: Fix improper interaction of FULL JOINs with lateral references. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix improper interaction of FULL JOINs with lateral references.
Date
Msg-id E1hDaaL-0007Lz-3p@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix improper interaction of FULL JOINs with lateral references.

join_is_legal() needs to reject forming certain outer joins in cases
where that would lead the planner down a blind alley.  However, it
mistakenly supposed that the way to handle full joins was to treat them
as applying the same constraints as for left joins, only to both sides.
That doesn't work, as shown in bug #15741 from Anthony Skorski: given
a lateral reference out of a join that's fully enclosed by a full join,
the code would fail to believe that any join ordering is legal, resulting
in errors like "failed to build any N-way joins".

However, we don't really need to consider full joins at all for this
purpose, because we effectively force them to be evaluated in syntactic
order, and that order is always legal for lateral references.  Hence,
get rid of this broken logic for full joins and just ignore them instead.

This seems to have been an oversight in commit 7e19db0c0.
Back-patch to all supported branches, as that was.

Discussion: https://postgr.es/m/15741-276f1f464b3f40eb@postgresql.org

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/051c71c6746309782d9bf1ebb257d3b5f88e6fb7

Modified Files
--------------
src/backend/optimizer/path/joinrels.c    | 13 ++++---------
src/test/regress/expected/rangefuncs.out | 25 +++++++++++++++++++++++++
src/test/regress/sql/rangefuncs.sql      | 15 +++++++++++++++
3 files changed, 44 insertions(+), 9 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Update serial explanation
Next
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Fix whitespace