]> granicus.if.org Git - postgresql/commit
Fix a bug in 8.2.x that was exposed while investigating Kevin Grittner's
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 9 Jan 2008 20:50:12 +0000 (20:50 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 9 Jan 2008 20:50:12 +0000 (20:50 +0000)
commit02b3f326b2fde426ece942c54b6b8976184f4c79
tree579cf6b42e4eb3569f05429e29d5086d069a3e1e
parent0a1e67bab37a7ad9099db5a7836ad64afbeb569d
Fix a bug in 8.2.x that was exposed while investigating Kevin Grittner's
report of poor planning in 8.3: it's unsafe to push a constant across an
outer join when the outer-join condition is delayed by lower outer joins,
unless we recheck the outer-join condition at the upper outer join.
8.2.x doesn't really have the ability to tell whether this is the case
or not, but fortunately it doesn't matter --- it seems most desirable to
keep the join condition whether it's entirely redundant or not.  However,
it's usually mostly redundant, so force its selectivity to 1.0.

It might be a good idea to back-patch this into 8.1 as well, but I'll
refrain until/unless there's evidence that 8.1 actually fails on any
cases that this would fix.
src/backend/optimizer/path/pathkeys.c
src/test/regress/expected/join.out
src/test/regress/expected/join_1.out
src/test/regress/sql/join.sql