postgresql/src/include/optimizer
Tom Lane 959d00e9db Use Append rather than MergeAppend for scanning ordered partitions.
If we need ordered output from a scan of a partitioned table, but
the ordering matches the partition ordering, then we don't need to
use a MergeAppend to combine the pre-ordered per-partition scan
results: a plain Append will produce the same results.  This
both saves useless comparison work inside the MergeAppend proper,
and allows us to start returning tuples after istarting up just
the first child node not all of them.

However, all is not peaches and cream, because if some of the
child nodes have high startup costs then there will be big
discontinuities in the tuples-returned-versus-elapsed-time curve.
The planner's cost model cannot handle that (yet, anyway).
If we model the Append's startup cost as being just the first
child's startup cost, we may drastically underestimate the cost
of fetching slightly more tuples than are available from the first
child.  Since we've had bad experiences with over-optimistic choices
of "fast start" plans for ORDER BY LIMIT queries, that seems scary.
As a klugy workaround, set the startup cost estimate for an ordered
Append to be the sum of its children's startup costs (as MergeAppend
would).  This doesn't really describe reality, but it's less likely
to cause a bad plan choice than an underestimated startup cost would.
In practice, the cases where we really care about this optimization
will have child plans that are IndexScans with zero startup cost,
so that the overly conservative estimate is still just zero.

David Rowley, reviewed by Julien Rouhaud and Antonin Houska

Discussion: https://postgr.es/m/CAKJS1f-hAqhPLRk_RaSFTgYxd=Tz5hA7kQ2h4-DhJufQk8TGuw@mail.gmail.com
2019-04-05 19:20:43 -04:00
..
appendinfo.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
clauses.h Build out the planner support function infrastructure. 2019-02-09 18:32:23 -05:00
cost.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
geqo.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
geqo_copy.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_gene.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_misc.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_mutation.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_pool.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_random.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_recombination.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
geqo_selection.h Update copyright for 2019 2019-01-02 12:44:25 -05:00
inherit.h Speed up planning when partitions can be pruned at plan time. 2019-03-30 18:58:55 -04:00
joininfo.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
optimizer.h Add support for multivariate MCV lists 2019-03-27 18:32:18 +01:00
orclauses.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
paramassign.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
pathnode.h Use Append rather than MergeAppend for scanning ordered partitions. 2019-04-05 19:20:43 -04:00
paths.h Use Append rather than MergeAppend for scanning ordered partitions. 2019-04-05 19:20:43 -04:00
placeholder.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
plancat.h tableam: Move heap specific logic from estimate_rel_size below tableam. 2019-03-30 19:26:36 -07:00
planmain.h Avoid passing query tlist around separately from root->processed_tlist. 2019-03-27 12:57:49 -04:00
planner.h Fix handling of targetlist SRFs when scan/join relation is known empty. 2019-03-07 14:22:13 -05:00
prep.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
restrictinfo.h Refactor the representation of indexable clauses in IndexPaths. 2019-02-09 17:30:43 -05:00
subselect.h Rename nodes/relation.h to nodes/pathnodes.h. 2019-01-29 16:49:25 -05:00
tlist.h Collations with nondeterministic comparison 2019-03-22 12:12:43 +01:00