postgresql/src
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
..
backend Improve performance of adjust_appendrel_attrs_multilevel. 2022-08-18 12:36:16 -04:00
bin Improve tab completion of ALTER TYPE in psql 2022-08-15 14:08:59 +09:00
common Remove configure probe for netinet/tcp.h. 2022-08-18 16:31:11 +12:00
fe_utils Remove configure probe for sys/select.h. 2022-08-14 00:09:47 +12:00
include Improve performance of adjust_appendrel_attrs_multilevel. 2022-08-18 12:36:16 -04:00
interfaces mstcpip.h is not missing on MinGW. 2022-08-18 16:31:11 +12:00
makefiles solaris: Remove unnecessary gcc / gnu ld vs sun studio differences 2022-08-07 09:36:01 -07:00
pl Add PGDLLEXPORTS to some plpgsql function declarations 2022-07-20 10:24:50 +02:00
port Remove replacement code for getaddrinfo. 2022-08-14 09:53:28 +12:00
template aix: Remove checks for very old OS versions 2022-08-07 09:36:01 -07:00
test Fix subtly-incorrect matching of parent and child partitioned indexes. 2022-08-18 12:12:03 -04:00
timezone Remove fallbacks for strtoll, strtoull. 2022-08-06 09:59:51 +12:00
tools Remove configure probe for netinet/tcp.h. 2022-08-18 16:31:11 +12:00
tutorial Update copyright for 2022 2022-01-07 19:04:57 -05:00
.gitignore
DEVELOPERS
Makefile Remove the option to build thread_test.c outside configure. 2020-10-21 12:08:48 -04:00
Makefile.global.in Remove unused configure variable. 2022-08-18 11:22:13 -04:00
Makefile.shlib solaris: Remove unnecessary gcc / gnu ld vs sun studio differences 2022-08-07 09:36:01 -07:00
nls-global.mk Fix for make unportability 2022-07-13 09:15:01 +02:00