]> granicus.if.org Git - postgresql/commit
Consider a clause to be outerjoin_delayed if it references the nullable side
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 27 Jun 2008 20:54:37 +0000 (20:54 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 27 Jun 2008 20:54:37 +0000 (20:54 +0000)
commitdcc23347365d1958898445ffdcf34c09689b8d55
treed3cea62426ddc7eb477422baaa3cf5b3c30ee01a
parentf6c1dece9aa86fabe47fec9e778cee05c6fc6407
Consider a clause to be outerjoin_delayed if it references the nullable side
of any lower outer join, even if it also references the non-nullable side and
so could not get pushed below the outer join anyway.  We need this in case
the clause is an OR clause: if it doesn't get marked outerjoin_delayed,
create_or_index_quals() could pull an indexable restriction for the nullable
side out of it, leading to wrong results as demonstrated by today's bug
report from toruvinn.  (See added regression test case for an example.)

In principle this has been wrong for quite a while.  In practice I don't
think any branch before 8.3 can really show the failure, because
create_or_index_quals() will only pull out indexable conditions, and before
8.3 those were always strict.  So though we might have improperly generated
null-extended rows in the outer join, they'd get discarded from the result
anyway.  The gating factor that makes the failure visible is that 8.3
considers "col IS NULL" to be indexable.  Hence I'm not going to risk
back-patching further than 8.3.
src/backend/optimizer/plan/initsplan.c
src/test/regress/expected/join.out
src/test/regress/expected/join_1.out
src/test/regress/sql/join.sql