diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-11-29 18:00:49 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-11-29 18:00:56 -0500 |
commit | ca5f88502096a39f831da74eb02ec9eb3310616d (patch) | |
tree | e98bfee99087887dadc6bd243852ac6f42155db6 /src/backend/executor/nodeModifyTable.c | |
parent | 96fb4c90e3b227f3f1770fd2f7ea1e0478a4d37c (diff) | |
download | postgresql-ca5f88502096a39f831da74eb02ec9eb3310616d.tar.gz postgresql-ca5f88502096a39f831da74eb02ec9eb3310616d.zip |
Improve eqjoinsel_semi's behavior for small inner relations with no stats.
If we don't have any MCV statistics for the inner relation, and we don't
trust its numdistinct estimate either, eqjoinsel_semi falls back to a very
conservative estimate (that 50% of the outer rows have matches). This is
particularly problematic if the inner relation is completely empty, since
then even an explicit ANALYZE won't produce any pg_statistic entries,
so there's no way to budge the planner off the bad estimate.
We'd produce a better estimate in such cases if we used the nd2/nd1
selectivity heuristic, so an easy fix is to treat the nd2 estimate as
non-default if we derive it from clamping to the inner rel's rowcount
estimate. This won't fix every related case (mainly because the rowcount
estimate might be larger than DEFAULT_NUM_DISTINCT), but it seems like a
sane extension of the existing logic, so let's apply the change in HEAD
and see if anyone complains. Per bug #14438 from Nikolay Nikitin.
Report: https://postgr.es/m/20161128182113.6527.58926@wrigleys.postgresql.org
Discussion: https://postgr.es/m/31089.1480384713@sss.pgh.pa.us
Diffstat (limited to 'src/backend/executor/nodeModifyTable.c')
0 files changed, 0 insertions, 0 deletions