postgresql/src/include/optimizer
Tom Lane 2f17b57017 Improve performance of adjust_appendrel_attrs_multilevel.
The present implementations of adjust_appendrel_attrs_multilevel and
its sibling adjust_child_relids_multilevel are very messy, because
they work by reconstructing the relids of the child's immediate
parent and then seeing if that's bms_equal to the relids of the
target parent.  Aside from being quite inefficient, this will not
work with planned future changes to make joinrels' relid sets
contain outer-join relids in addition to baserels.

The whole thing can be solved at a stroke by adding explicit parent
and top_parent links to child RelOptInfos, and making these functions
work with RelOptInfo pointers instead of relids.  Doing that is
simpler for most callers, too.

In my original version of this patch, I got rid of
RelOptInfo.top_parent_relids on the grounds that it was now redundant.
However, that adds a lot of code churn in places that otherwise would
not need changing, and arguably the extra indirection needed to fetch
top_parent->relids in those places costs something.  So this version
leaves that field in place.

Discussion: https://postgr.es/m/553080.1657481916@sss.pgh.pa.us
2022-08-18 12:36:16 -04:00
..
appendinfo.h Improve performance of adjust_appendrel_attrs_multilevel. 2022-08-18 12:36:16 -04:00
clauses.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
cost.h Estimate cost of elided SubqueryScan, Append, MergeAppend nodes better. 2022-07-19 11:18:19 -04:00
geqo.h Apply PGDLLIMPORT markings broadly. 2022-04-08 08:16:38 -04:00
geqo_copy.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_gene.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_misc.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_mutation.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_pool.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_random.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_recombination.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
geqo_selection.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
inherit.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
joininfo.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
optimizer.h Fix incorrect tests for SRFs in relation_can_be_sorted_early(). 2022-08-03 17:33:42 -04:00
orclauses.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
paramassign.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
pathnode.h Estimate cost of elided SubqueryScan, Append, MergeAppend nodes better. 2022-07-19 11:18:19 -04:00
paths.h Improve performance of ORDER BY / DISTINCT aggregates 2022-08-02 23:11:45 +12:00
placeholder.h Use an explicit state flag to control PlaceHolderInfo creation. 2022-08-17 15:52:53 -04:00
plancat.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
planmain.h Use an explicit state flag to control PlaceHolderInfo creation. 2022-08-17 15:52:53 -04:00
planner.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
prep.h Add support for MERGE SQL command 2022-03-28 16:47:48 +02:00
restrictinfo.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
subselect.h Update copyright for 2022 2022-01-07 19:04:57 -05:00
tlist.h Update copyright for 2022 2022-01-07 19:04:57 -05:00