]> granicus.if.org Git - postgresql/commit
Drop cheap-startup-cost paths during add_path() if we don't need them.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 1 Sep 2012 22:16:24 +0000 (18:16 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 1 Sep 2012 22:16:24 +0000 (18:16 -0400)
commit6d2c8c0e2afa8cbaf99555a24336e93118fd181e
treee831b662e5518de84b9112d060dbb8c9d00e8bfe
parent4da6439bd8553059766011e2a42c6e39df08717f
Drop cheap-startup-cost paths during add_path() if we don't need them.

We can detect whether the planner top level is going to care at all about
cheap startup cost (it will only do so if query_planner's tuple_fraction
argument is greater than zero).  If it isn't, we might as well discard
paths immediately whose only advantage over others is cheap startup cost.
This turns out to get rid of quite a lot of paths in complex queries ---
I saw planner runtime reduction of more than a third on one large query.

Since add_path isn't currently passed the PlannerInfo "root", the easiest
way to tell it whether to do this was to add a bool flag to RelOptInfo.
That's a bit redundant, since all relations in a given query level will
have the same setting.  But in the future it's possible that we'd refine
the control decision to work on a per-relation basis, so this seems like
a good arrangement anyway.

Per my suggestion of a few months ago.
src/backend/nodes/outfuncs.c
src/backend/optimizer/util/pathnode.c
src/backend/optimizer/util/relnode.c
src/include/nodes/relation.h
src/test/regress/expected/join.out
src/test/regress/sql/join.sql