Обсуждение: pgsql: Fix thinkos in have_unsafe_outer_join_ref; reduce to Assert chec

Поиск
Список
Период
Сортировка

pgsql: Fix thinkos in have_unsafe_outer_join_ref; reduce to Assert chec

От
Tom Lane
Дата:
Fix thinkos in have_unsafe_outer_join_ref; reduce to Assert check.

Late in the development of commit 2489d76c4, I (tgl) incorrectly
concluded that the new function have_unsafe_outer_join_ref couldn't
ever reach its inner loop.  That should be the case if the inner
rel's parameterization is based on just one Var, but it could be
based on Vars from several relations, and then not only is the
inner loop reachable but it's wrongly coded.

Despite those errors, it still appears that the whole thing is
redundant given previous join_is_legal checks, so let's arrange
to only run it in assert-enabled builds.

Diagnosis and patch by Richard Guo, per fuzz testing by Justin Pryzby.

Discussion: https://postgr.es/m/20230212235823.GW1653@telsasoft.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f50f029c497da35927491f16964f7aa993ecbae5

Modified Files
--------------
src/backend/optimizer/path/joinpath.c | 29 ++++++++++++++---------------
src/test/regress/expected/join.out    | 26 ++++++++++++++++++++++++++
src/test/regress/sql/join.sql         | 17 +++++++++++++++++
3 files changed, 57 insertions(+), 15 deletions(-)