Thread: pgsql: Fix estimate_num_groups() to assume that GROUP BY expressions

pgsql: Fix estimate_num_groups() to assume that GROUP BY expressions

From
tgl@postgresql.org (Tom Lane)
Date:
Log Message:
-----------
Fix estimate_num_groups() to assume that GROUP BY expressions yielding boolean
results always contribute two groups, regardless of the expression contents.
This is very substantially more accurate than the regular heuristic for
certain boolean tests like "col IS NULL".  Per gripe from Sam Mason.

Back-patch to all supported releases, since the behavior of
estimate_num_groups() hasn't changed all that much since 7.4.

Modified Files:
--------------
    pgsql/src/backend/utils/adt:
        selfuncs.c (r1.249 -> r1.250)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/selfuncs.c?r1=1.249&r2=1.250)