pgsql: Remove the "last ditch" code path in join_search_one_level(). - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Remove the "last ditch" code path in join_search_one_level().
Date
Msg-id E1SImmO-0001tx-E6@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Remove the "last ditch" code path in join_search_one_level().

So far as I can tell, it is no longer possible for this heuristic to do
anything useful, because the new weaker definition of
have_relevant_joinclause means that any relation with a joinclause must be
considered joinable to at least one other relation.  It would still be
possible for the code block to be entered, for example if there are join
order restrictions that prevent any join of the current level from being
formed; but in that case it's just a waste of cycles to attempt to form
cartesian joins, since the restrictions will still apply.

Furthermore, IMO the existence of this code path can mask bugs elsewhere;
we would have noticed the problem with cartesian joins a lot sooner if
this code hadn't compensated for it in the simplest case.

Accordingly, let's remove it and see what happens.  I'm committing this
separately from the prerequisite changes in have_relevant_joinclause,
just to make the question easier to revisit if there is some fault in
my logic.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/e54b10a62db2991235fe800c629baef4531a6d67

Modified Files
--------------
src/backend/optimizer/path/joinrels.c |   76 +++++++-------------------------
1 files changed, 17 insertions(+), 59 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Weaken the planner's tests for relevant joinclauses.
Next
From: Robert Haas
Date:
Subject: pgsql: Add Peter Geoghegan as additional author of pg_stat_statements.