pgsql: Remove the "last ditch" code path in join_search_one_level().

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Remove the "last ditch" code path in join_search_one_level().
Дата
Msg-id E1SImmO-0001tx-E6@gemulon.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Weaken the planner's tests for relevant joinclauses.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Add Peter Geoghegan as additional author of pg_stat_statements.