]> granicus.if.org Git - postgresql/commit
Partially revert commit 3d3bf62f30200500637b24fdb7b992a99f9704c3.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 4 Apr 2016 20:48:13 +0000 (16:48 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 4 Apr 2016 20:48:13 +0000 (16:48 -0400)
commit391159e03a8b69dd04a1432ceb800c7c4c3d608c
tree5db27b427a4e4d366c768913f49eef451a3213de
parentc9ff752a854b687fc0a05fd4aba1066028ec5495
Partially revert commit 3d3bf62f30200500637b24fdb7b992a99f9704c3.

On reflection, the pre-existing logic in ANALYZE is specifically meant to
compare the frequency of a candidate MCV against the estimated frequency of
a random distinct value across the whole table.  The change to compare it
against the average frequency of values actually seen in the sample doesn't
seem very principled, and if anything it would make us less likely not more
likely to consider a value an MCV.  So revert that, but keep the aspect of
considering only nonnull values, which definitely is correct.

In passing, rename the local variables in these stanzas to
"ndistinct_table", to avoid confusion with the "ndistinct" that appears at
an outer scope in compute_scalar_stats.
src/backend/commands/analyze.c