Improve eqjoinsel's ndistinct clamping to work for multiple levels of join.
authorTom Lane <[email protected]>
Wed, 31 Aug 2011 20:04:53 +0000 (16:04 -0400)
committerTom Lane <[email protected]>
Wed, 31 Aug 2011 20:06:00 +0000 (16:06 -0400)
commitca4f70ca779013599ec4c31c54944c2c7a584e92
tree63e84af20623924e64b32d3946a884aa2713c5ba
parentedf4edae5799e5f7b7d9822d2932170341ba5472
Improve eqjoinsel's ndistinct clamping to work for multiple levels of join.

This patch fixes an oversight in my commit
7f3eba30c9d622d1981b1368f2d79ba0999cdff2 of 2008-10-23.  That patch
accounted for baserel restriction clauses that reduced the number of rows
coming out of a table (and hence the number of possibly-distinct values of
a join variable), but not for join restriction clauses that might have been
applied at a lower level of join.  To account for the latter, look up the
sizes of the min_lefthand and min_righthand inputs of the current join,
and clamp with those in the same way as for the base relations.

Noted while investigating a complaint from Ben Chobot, although this in
itself doesn't seem to explain his report.

Back-patch to 8.4; previous versions used different estimation methods
for which this heuristic isn't relevant.
src/backend/utils/adt/selfuncs.c