pgsql: Dig down into sub-selects to look for column statistics. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Dig down into sub-selects to look for column statistics.
Date
Msg-id E1R0IZx-0001Ql-Qv@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Dig down into sub-selects to look for column statistics.

If a sub-select's output column is a simple Var, recursively look for
statistics applying to that Var, and use them if available.  The need for
this was foreseen ages ago, but we didn't have enough infrastructure to do
it with reasonable speed until just now.

We punt and stick with default estimates if the subquery uses set
operations, GROUP BY, or DISTINCT, since those operations would change the
underlying column statistics (particularly, the relative frequencies of
different values) beyond recognition.  This means that the types of
sub-selects for which this improvement applies are fairly limited, since
most subqueries satisfying those restrictions would have gotten flattened
into the parent query anyway.  But it does help for some cases, such as
subqueries with ORDER BY or LIMIT.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/1cb108efb0e60d87e4adec38e7636b6e8efbeb57

Modified Files
--------------
src/backend/utils/adt/selfuncs.c |  141 +++++++++++++++++++++++++++++---------
1 files changed, 108 insertions(+), 33 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Can't print PlannerGlobal's subroots list in outfuncs.
Next
From: Tom Lane
Date:
Subject: pgsql: Fix #include problems in 9.1 branch.