pgsql: Fix thinkos in have_unsafe_outer_join_ref; reduce to Assert chec - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix thinkos in have_unsafe_outer_join_ref; reduce to Assert chec
Date
Msg-id E1pRbxY-000xNu-B4@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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(-)


pgsql-committers by date:

Previous
From: Andrew Dunstan
Date:
Subject: pgsql: Remove obsolete pgindent options --code-base and --build
Next
From: Tom Lane
Date:
Subject: pgsql: Fix buggy recursion in flatten_rtes_walker().