pgsql: Fix join removal logic to clean up sub-RestrictInfos of OR claus

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix join removal logic to clean up sub-RestrictInfos of OR claus
Дата
Msg-id E1pQZRp-000Ra1-Sn@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix join removal logic to clean up sub-RestrictInfos of OR clauses.

analyzejoins.c took care to clean out removed relids from the
clause_relids and required_relids of RestrictInfos associated with
the doomed rel ... but it paid no attention to the fact that if such a
RestrictInfo contains an OR clause, there will be sub-RestrictInfos
containing similar fields.

I'm more than a bit surprised that this oversight hasn't caused
visible problems before.  In any case, it's certainly broken now,
so add logic to clean out the sub-RestrictInfos recursively.
We might need to back-patch this someday.

Per bug #17786 from Robins Tharakan.

Discussion: https://postgr.es/m/17786-f1ea7fbdab97daec@postgresql.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/44e56baa80ff5fba150897308c8f25aa2251b16c

Modified Files
--------------
src/backend/optimizer/plan/analyzejoins.c | 77 +++++++++++++++++++++++++------
src/test/regress/expected/join.out        | 20 ++++++++
src/test/regress/sql/join.sql             |  8 ++++
3 files changed, 90 insertions(+), 15 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Further fixes in qual nullingrel adjustment for outer join commu
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Un-revert "Disable STARTUP_PROGRESS_TIMEOUT in standby mode."