PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
joinrels.c File Reference
#include "postgres.h"
#include "miscadmin.h"
#include "optimizer/appendinfo.h"
#include "optimizer/joininfo.h"
#include "optimizer/pathnode.h"
#include "optimizer/paths.h"
#include "partitioning/partbounds.h"
#include "utils/memutils.h"
Include dependency graph for joinrels.c:

Go to the source code of this file.

Functions

static void make_rels_by_clause_joins (PlannerInfo *root, RelOptInfo *old_rel, List *other_rels, int first_rel_idx)
 
static void make_rels_by_clauseless_joins (PlannerInfo *root, RelOptInfo *old_rel, List *other_rels)
 
static bool has_join_restriction (PlannerInfo *root, RelOptInfo *rel)
 
static bool has_legal_joinclause (PlannerInfo *root, RelOptInfo *rel)
 
static bool restriction_is_constant_false (List *restrictlist, RelOptInfo *joinrel, bool only_pushed_down)
 
static void populate_joinrel_with_paths (PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, RelOptInfo *joinrel, SpecialJoinInfo *sjinfo, List *restrictlist)
 
static void try_partitionwise_join (PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, RelOptInfo *joinrel, SpecialJoinInfo *parent_sjinfo, List *parent_restrictlist)
 
static SpecialJoinInfobuild_child_join_sjinfo (PlannerInfo *root, SpecialJoinInfo *parent_sjinfo, Relids left_relids, Relids right_relids)
 
static void free_child_join_sjinfo (SpecialJoinInfo *child_sjinfo, SpecialJoinInfo *parent_sjinfo)
 
static void compute_partition_bounds (PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, RelOptInfo *joinrel, SpecialJoinInfo *parent_sjinfo, List **parts1, List **parts2)
 
static void get_matching_part_pairs (PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *rel1, RelOptInfo *rel2, List **parts1, List **parts2)
 
void join_search_one_level (PlannerInfo *root, int level)
 
static bool join_is_legal (PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, Relids joinrelids, SpecialJoinInfo **sjinfo_p, bool *reversed_p)
 
void init_dummy_sjinfo (SpecialJoinInfo *sjinfo, Relids left_relids, Relids right_relids)
 
RelOptInfomake_join_rel (PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
 
Relids add_outer_joins_to_relids (PlannerInfo *root, Relids input_relids, SpecialJoinInfo *sjinfo, List **pushed_down_joins)
 
bool have_join_order_restriction (PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
 
bool have_dangerous_phv (PlannerInfo *root, Relids outer_relids, Relids inner_params)
 
bool is_dummy_rel (RelOptInfo *rel)
 
void mark_dummy_rel (RelOptInfo *rel)
 

Function Documentation

◆ add_outer_joins_to_relids()

Relids add_outer_joins_to_relids ( PlannerInfo root,
Relids  input_relids,
SpecialJoinInfo sjinfo,
List **  pushed_down_joins 
)

Definition at line 802 of file joinrels.c.

805{
806 /* Nothing to do if this isn't an outer join with an assigned relid. */
807 if (sjinfo == NULL || sjinfo->ojrelid == 0)
808 return input_relids;
809
810 /*
811 * If it's not a left join, we have no rules that would permit executing
812 * it in non-syntactic order, so just form the syntactic relid set. (This
813 * is just a quick-exit test; we'd come to the same conclusion anyway,
814 * since its commute_below_l and commute_above_l sets must be empty.)
815 */
816 if (sjinfo->jointype != JOIN_LEFT)
817 return bms_add_member(input_relids, sjinfo->ojrelid);
818
819 /*
820 * We cannot add the OJ relid if this join has been pushed into the RHS of
821 * a syntactically-lower left join per OJ identity 3. (If it has, then we
822 * cannot claim that its outputs represent the final state of its RHS.)
823 * There will not be any other OJs that can be added either, so we're
824 * done.
825 */
826 if (!bms_is_subset(sjinfo->commute_below_l, input_relids))
827 return input_relids;
828
829 /* OK to add OJ's own relid */
830 input_relids = bms_add_member(input_relids, sjinfo->ojrelid);
831
832 /*
833 * Contrariwise, if we are now forming the final result of such a commuted
834 * pair of OJs, it's time to add the relid(s) of the pushed-down join(s).
835 * We can skip this if this join was never a candidate to be pushed up.
836 */
837 if (sjinfo->commute_above_l)
838 {
839 Relids commute_above_rels = bms_copy(sjinfo->commute_above_l);
840 ListCell *lc;
841
842 /*
843 * The current join could complete the nulling of more than one
844 * pushed-down join, so we have to examine all the SpecialJoinInfos.
845 * Because join_info_list was built in bottom-up order, it's
846 * sufficient to traverse it once: an ojrelid we add in one loop
847 * iteration would not have affected decisions of earlier iterations.
848 */
849 foreach(lc, root->join_info_list)
850 {
851 SpecialJoinInfo *othersj = (SpecialJoinInfo *) lfirst(lc);
852
853 if (othersj == sjinfo ||
854 othersj->ojrelid == 0 || othersj->jointype != JOIN_LEFT)
855 continue; /* definitely not interesting */
856
857 if (!bms_is_member(othersj->ojrelid, commute_above_rels))
858 continue;
859
860 /* Add it if not already present but conditions now satisfied */
861 if (!bms_is_member(othersj->ojrelid, input_relids) &&
862 bms_is_subset(othersj->min_lefthand, input_relids) &&
863 bms_is_subset(othersj->min_righthand, input_relids) &&
864 bms_is_subset(othersj->commute_below_l, input_relids))
865 {
866 input_relids = bms_add_member(input_relids, othersj->ojrelid);
867 /* report such pushed down outer joins, if asked */
868 if (pushed_down_joins != NULL)
869 *pushed_down_joins = lappend(*pushed_down_joins, othersj);
870
871 /*
872 * We must also check any joins that othersj potentially
873 * commutes with. They likewise must appear later in
874 * join_info_list than othersj itself, so we can visit them
875 * later in this loop.
876 */
877 commute_above_rels = bms_add_members(commute_above_rels,
878 othersj->commute_above_l);
879 }
880 }
881 }
882
883 return input_relids;
884}
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:412
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
Bitmapset * bms_add_members(Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:917
Bitmapset * bms_copy(const Bitmapset *a)
Definition: bitmapset.c:122
List * lappend(List *list, void *datum)
Definition: list.c:339
@ JOIN_LEFT
Definition: nodes.h:300
#define lfirst(lc)
Definition: pg_list.h:172
tree ctl root
Definition: radixtree.h:1857
Relids min_righthand
Definition: pathnodes.h:3031
Relids commute_above_l
Definition: pathnodes.h:3036
JoinType jointype
Definition: pathnodes.h:3034
Relids commute_below_l
Definition: pathnodes.h:3038
Relids min_lefthand
Definition: pathnodes.h:3030

References bms_add_member(), bms_add_members(), bms_copy(), bms_is_member(), bms_is_subset(), SpecialJoinInfo::commute_above_l, SpecialJoinInfo::commute_below_l, JOIN_LEFT, SpecialJoinInfo::jointype, lappend(), lfirst, SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, SpecialJoinInfo::ojrelid, and root.

Referenced by generate_join_implied_equalities(), and make_join_rel().

◆ build_child_join_sjinfo()

static SpecialJoinInfo * build_child_join_sjinfo ( PlannerInfo root,
SpecialJoinInfo parent_sjinfo,
Relids  left_relids,
Relids  right_relids 
)
static

Definition at line 1704 of file joinrels.c.

1706{
1708 AppendRelInfo **left_appinfos;
1709 int left_nappinfos;
1710 AppendRelInfo **right_appinfos;
1711 int right_nappinfos;
1712
1713 /* Dummy SpecialJoinInfos can be created without any translation. */
1714 if (parent_sjinfo->jointype == JOIN_INNER)
1715 {
1716 Assert(parent_sjinfo->ojrelid == 0);
1717 init_dummy_sjinfo(sjinfo, left_relids, right_relids);
1718 return sjinfo;
1719 }
1720
1721 memcpy(sjinfo, parent_sjinfo, sizeof(SpecialJoinInfo));
1722 left_appinfos = find_appinfos_by_relids(root, left_relids,
1723 &left_nappinfos);
1724 right_appinfos = find_appinfos_by_relids(root, right_relids,
1725 &right_nappinfos);
1726
1728 left_nappinfos, left_appinfos);
1730 right_nappinfos,
1731 right_appinfos);
1733 left_nappinfos, left_appinfos);
1735 right_nappinfos,
1736 right_appinfos);
1737 /* outer-join relids need no adjustment */
1739 (Node *) sjinfo->semi_rhs_exprs,
1740 right_nappinfos,
1741 right_appinfos);
1742
1743 pfree(left_appinfos);
1744 pfree(right_appinfos);
1745
1746 return sjinfo;
1747}
AppendRelInfo ** find_appinfos_by_relids(PlannerInfo *root, Relids relids, int *nappinfos)
Definition: appendinfo.c:753
Node * adjust_appendrel_attrs(PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
Definition: appendinfo.c:200
Relids adjust_child_relids(Relids relids, int nappinfos, AppendRelInfo **appinfos)
Definition: appendinfo.c:574
Assert(PointerIsAligned(start, uint64))
void init_dummy_sjinfo(SpecialJoinInfo *sjinfo, Relids left_relids, Relids right_relids)
Definition: joinrels.c:670
void pfree(void *pointer)
Definition: mcxt.c:2146
#define makeNode(_type_)
Definition: nodes.h:161
@ JOIN_INNER
Definition: nodes.h:299
Definition: pg_list.h:54
Definition: nodes.h:135
Relids syn_lefthand
Definition: pathnodes.h:3032
List * semi_rhs_exprs
Definition: pathnodes.h:3045
Relids syn_righthand
Definition: pathnodes.h:3033

References adjust_appendrel_attrs(), adjust_child_relids(), Assert(), find_appinfos_by_relids(), init_dummy_sjinfo(), JOIN_INNER, SpecialJoinInfo::jointype, makeNode, SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, SpecialJoinInfo::ojrelid, pfree(), root, SpecialJoinInfo::semi_rhs_exprs, SpecialJoinInfo::syn_lefthand, and SpecialJoinInfo::syn_righthand.

Referenced by try_partitionwise_join().

◆ compute_partition_bounds()

static void compute_partition_bounds ( PlannerInfo root,
RelOptInfo rel1,
RelOptInfo rel2,
RelOptInfo joinrel,
SpecialJoinInfo parent_sjinfo,
List **  parts1,
List **  parts2 
)
static

Definition at line 1800 of file joinrels.c.

1804{
1805 /*
1806 * If we don't have the partition bounds for the join rel yet, try to
1807 * compute those along with pairs of partitions to be joined.
1808 */
1809 if (joinrel->nparts == -1)
1810 {
1811 PartitionScheme part_scheme = joinrel->part_scheme;
1812 PartitionBoundInfo boundinfo = NULL;
1813 int nparts = 0;
1814
1815 Assert(joinrel->boundinfo == NULL);
1816 Assert(joinrel->part_rels == NULL);
1817
1818 /*
1819 * See if the partition bounds for inputs are exactly the same, in
1820 * which case we don't need to work hard: the join rel will have the
1821 * same partition bounds as inputs, and the partitions with the same
1822 * cardinal positions will form the pairs.
1823 *
1824 * Note: even in cases where one or both inputs have merged bounds, it
1825 * would be possible for both the bounds to be exactly the same, but
1826 * it seems unlikely to be worth the cycles to check.
1827 */
1828 if (!rel1->partbounds_merged &&
1829 !rel2->partbounds_merged &&
1830 rel1->nparts == rel2->nparts &&
1831 partition_bounds_equal(part_scheme->partnatts,
1832 part_scheme->parttyplen,
1833 part_scheme->parttypbyval,
1834 rel1->boundinfo, rel2->boundinfo))
1835 {
1836 boundinfo = rel1->boundinfo;
1837 nparts = rel1->nparts;
1838 }
1839 else
1840 {
1841 /* Try merging the partition bounds for inputs. */
1842 boundinfo = partition_bounds_merge(part_scheme->partnatts,
1843 part_scheme->partsupfunc,
1844 part_scheme->partcollation,
1845 rel1, rel2,
1846 parent_sjinfo->jointype,
1847 parts1, parts2);
1848 if (boundinfo == NULL)
1849 {
1850 joinrel->nparts = 0;
1851 return;
1852 }
1853 nparts = list_length(*parts1);
1854 joinrel->partbounds_merged = true;
1855 }
1856
1857 Assert(nparts > 0);
1858 joinrel->boundinfo = boundinfo;
1859 joinrel->nparts = nparts;
1860 joinrel->part_rels =
1861 (RelOptInfo **) palloc0(sizeof(RelOptInfo *) * nparts);
1862 }
1863 else
1864 {
1865 Assert(joinrel->nparts > 0);
1866 Assert(joinrel->boundinfo);
1867 Assert(joinrel->part_rels);
1868
1869 /*
1870 * If the join rel's partbounds_merged flag is true, it means inputs
1871 * are not guaranteed to have the same partition bounds, therefore we
1872 * can't assume that the partitions at the same cardinal positions
1873 * form the pairs; let get_matching_part_pairs() generate the pairs.
1874 * Otherwise, nothing to do since we can assume that.
1875 */
1876 if (joinrel->partbounds_merged)
1877 {
1878 get_matching_part_pairs(root, joinrel, rel1, rel2,
1879 parts1, parts2);
1880 Assert(list_length(*parts1) == joinrel->nparts);
1881 Assert(list_length(*parts2) == joinrel->nparts);
1882 }
1883 }
1884}
static void get_matching_part_pairs(PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *rel1, RelOptInfo *rel2, List **parts1, List **parts2)
Definition: joinrels.c:1891
void * palloc0(Size size)
Definition: mcxt.c:1969
bool partition_bounds_equal(int partnatts, int16 *parttyplen, bool *parttypbyval, PartitionBoundInfo b1, PartitionBoundInfo b2)
Definition: partbounds.c:896
PartitionBoundInfo partition_bounds_merge(int partnatts, FmgrInfo *partsupfunc, Oid *partcollation, RelOptInfo *outer_rel, RelOptInfo *inner_rel, JoinType jointype, List **outer_parts, List **inner_parts)
Definition: partbounds.c:1118
static int list_length(const List *l)
Definition: pg_list.h:152
struct FmgrInfo * partsupfunc
Definition: pathnodes.h:628
bool partbounds_merged
Definition: pathnodes.h:1052

References Assert(), get_matching_part_pairs(), SpecialJoinInfo::jointype, list_length(), RelOptInfo::nparts, palloc0(), RelOptInfo::partbounds_merged, PartitionSchemeData::partcollation, partition_bounds_equal(), partition_bounds_merge(), PartitionSchemeData::partnatts, PartitionSchemeData::partsupfunc, PartitionSchemeData::parttypbyval, PartitionSchemeData::parttyplen, and root.

Referenced by try_partitionwise_join().

◆ free_child_join_sjinfo()

static void free_child_join_sjinfo ( SpecialJoinInfo child_sjinfo,
SpecialJoinInfo parent_sjinfo 
)
static

Definition at line 1758 of file joinrels.c.

1760{
1761 /*
1762 * Dummy SpecialJoinInfos of inner joins do not have any translated fields
1763 * and hence no fields that to be freed.
1764 */
1765 if (child_sjinfo->jointype != JOIN_INNER)
1766 {
1767 if (child_sjinfo->min_lefthand != parent_sjinfo->min_lefthand)
1768 bms_free(child_sjinfo->min_lefthand);
1769
1770 if (child_sjinfo->min_righthand != parent_sjinfo->min_righthand)
1771 bms_free(child_sjinfo->min_righthand);
1772
1773 if (child_sjinfo->syn_lefthand != parent_sjinfo->syn_lefthand)
1774 bms_free(child_sjinfo->syn_lefthand);
1775
1776 if (child_sjinfo->syn_righthand != parent_sjinfo->syn_righthand)
1777 bms_free(child_sjinfo->syn_righthand);
1778
1779 Assert(child_sjinfo->commute_above_l == parent_sjinfo->commute_above_l);
1780 Assert(child_sjinfo->commute_above_r == parent_sjinfo->commute_above_r);
1781 Assert(child_sjinfo->commute_below_l == parent_sjinfo->commute_below_l);
1782 Assert(child_sjinfo->commute_below_r == parent_sjinfo->commute_below_r);
1783
1784 Assert(child_sjinfo->semi_operators == parent_sjinfo->semi_operators);
1785
1786 /*
1787 * semi_rhs_exprs may in principle be freed, but a simple pfree() does
1788 * not suffice, so we leave it alone.
1789 */
1790 }
1791
1792 pfree(child_sjinfo);
1793}
void bms_free(Bitmapset *a)
Definition: bitmapset.c:239
Relids commute_above_r
Definition: pathnodes.h:3037
Relids commute_below_r
Definition: pathnodes.h:3039
List * semi_operators
Definition: pathnodes.h:3044

References Assert(), bms_free(), SpecialJoinInfo::commute_above_l, SpecialJoinInfo::commute_above_r, SpecialJoinInfo::commute_below_l, SpecialJoinInfo::commute_below_r, JOIN_INNER, SpecialJoinInfo::jointype, SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, pfree(), SpecialJoinInfo::semi_operators, SpecialJoinInfo::syn_lefthand, and SpecialJoinInfo::syn_righthand.

Referenced by try_partitionwise_join().

◆ get_matching_part_pairs()

static void get_matching_part_pairs ( PlannerInfo root,
RelOptInfo joinrel,
RelOptInfo rel1,
RelOptInfo rel2,
List **  parts1,
List **  parts2 
)
static

Definition at line 1891 of file joinrels.c.

1894{
1895 bool rel1_is_simple = IS_SIMPLE_REL(rel1);
1896 bool rel2_is_simple = IS_SIMPLE_REL(rel2);
1897 int cnt_parts;
1898
1899 *parts1 = NIL;
1900 *parts2 = NIL;
1901
1902 for (cnt_parts = 0; cnt_parts < joinrel->nparts; cnt_parts++)
1903 {
1904 RelOptInfo *child_joinrel = joinrel->part_rels[cnt_parts];
1905 RelOptInfo *child_rel1;
1906 RelOptInfo *child_rel2;
1907 Relids child_relids1;
1908 Relids child_relids2;
1909
1910 /*
1911 * If this segment of the join is empty, it means that this segment
1912 * was ignored when previously creating child-join paths for it in
1913 * try_partitionwise_join() as it would not contribute to the join
1914 * result, due to one or both inputs being empty; add NULL to each of
1915 * the given lists so that this segment will be ignored again in that
1916 * function.
1917 */
1918 if (!child_joinrel)
1919 {
1920 *parts1 = lappend(*parts1, NULL);
1921 *parts2 = lappend(*parts2, NULL);
1922 continue;
1923 }
1924
1925 /*
1926 * Get a relids set of partition(s) involved in this join segment that
1927 * are from the rel1 side.
1928 */
1929 child_relids1 = bms_intersect(child_joinrel->relids,
1930 rel1->all_partrels);
1931 Assert(bms_num_members(child_relids1) == bms_num_members(rel1->relids));
1932
1933 /*
1934 * Get a child rel for rel1 with the relids. Note that we should have
1935 * the child rel even if rel1 is a join rel, because in that case the
1936 * partitions specified in the relids would have matching/overlapping
1937 * boundaries, so the specified partitions should be considered as
1938 * ones to be joined when planning partitionwise joins of rel1,
1939 * meaning that the child rel would have been built by the time we get
1940 * here.
1941 */
1942 if (rel1_is_simple)
1943 {
1944 int varno = bms_singleton_member(child_relids1);
1945
1946 child_rel1 = find_base_rel(root, varno);
1947 }
1948 else
1949 child_rel1 = find_join_rel(root, child_relids1);
1950 Assert(child_rel1);
1951
1952 /*
1953 * Get a relids set of partition(s) involved in this join segment that
1954 * are from the rel2 side.
1955 */
1956 child_relids2 = bms_intersect(child_joinrel->relids,
1957 rel2->all_partrels);
1958 Assert(bms_num_members(child_relids2) == bms_num_members(rel2->relids));
1959
1960 /*
1961 * Get a child rel for rel2 with the relids. See above comments.
1962 */
1963 if (rel2_is_simple)
1964 {
1965 int varno = bms_singleton_member(child_relids2);
1966
1967 child_rel2 = find_base_rel(root, varno);
1968 }
1969 else
1970 child_rel2 = find_join_rel(root, child_relids2);
1971 Assert(child_rel2);
1972
1973 /*
1974 * The join of rel1 and rel2 is legal, so is the join of the child
1975 * rels obtained above; add them to the given lists as a join pair
1976 * producing this join segment.
1977 */
1978 *parts1 = lappend(*parts1, child_rel1);
1979 *parts2 = lappend(*parts2, child_rel2);
1980 }
1981}
Bitmapset * bms_intersect(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:292
int bms_singleton_member(const Bitmapset *a)
Definition: bitmapset.c:672
int bms_num_members(const Bitmapset *a)
Definition: bitmapset.c:751
#define IS_SIMPLE_REL(rel)
Definition: pathnodes.h:866
#define NIL
Definition: pg_list.h:68
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
Definition: relnode.c:414
RelOptInfo * find_join_rel(PlannerInfo *root, Relids relids)
Definition: relnode.c:527
Relids relids
Definition: pathnodes.h:898
Relids all_partrels
Definition: pathnodes.h:1068

References RelOptInfo::all_partrels, Assert(), bms_intersect(), bms_num_members(), bms_singleton_member(), find_base_rel(), find_join_rel(), IS_SIMPLE_REL, lappend(), NIL, RelOptInfo::nparts, RelOptInfo::relids, and root.

Referenced by compute_partition_bounds().

◆ has_join_restriction()

static bool has_join_restriction ( PlannerInfo root,
RelOptInfo rel 
)
static

Definition at line 1188 of file joinrels.c.

1189{
1190 ListCell *l;
1191
1192 if (rel->lateral_relids != NULL || rel->lateral_referencers != NULL)
1193 return true;
1194
1195 foreach(l, root->placeholder_list)
1196 {
1197 PlaceHolderInfo *phinfo = (PlaceHolderInfo *) lfirst(l);
1198
1199 if (bms_is_subset(rel->relids, phinfo->ph_eval_at) &&
1200 !bms_equal(rel->relids, phinfo->ph_eval_at))
1201 return true;
1202 }
1203
1204 foreach(l, root->join_info_list)
1205 {
1206 SpecialJoinInfo *sjinfo = (SpecialJoinInfo *) lfirst(l);
1207
1208 /* ignore full joins --- other mechanisms preserve their ordering */
1209 if (sjinfo->jointype == JOIN_FULL)
1210 continue;
1211
1212 /* ignore if SJ is already contained in rel */
1213 if (bms_is_subset(sjinfo->min_lefthand, rel->relids) &&
1214 bms_is_subset(sjinfo->min_righthand, rel->relids))
1215 continue;
1216
1217 /* restricted if it overlaps LHS or RHS, but doesn't contain SJ */
1218 if (bms_overlap(sjinfo->min_lefthand, rel->relids) ||
1219 bms_overlap(sjinfo->min_righthand, rel->relids))
1220 return true;
1221 }
1222
1223 return false;
1224}
bool bms_equal(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:142
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582
@ JOIN_FULL
Definition: nodes.h:301
Relids ph_eval_at
Definition: pathnodes.h:3224
Relids lateral_relids
Definition: pathnodes.h:940
Relids lateral_referencers
Definition: pathnodes.h:969

References bms_equal(), bms_is_subset(), bms_overlap(), JOIN_FULL, SpecialJoinInfo::jointype, RelOptInfo::lateral_referencers, RelOptInfo::lateral_relids, lfirst, SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, PlaceHolderInfo::ph_eval_at, RelOptInfo::relids, and root.

Referenced by join_search_one_level().

◆ has_legal_joinclause()

static bool has_legal_joinclause ( PlannerInfo root,
RelOptInfo rel 
)
static

Definition at line 1244 of file joinrels.c.

1245{
1246 ListCell *lc;
1247
1248 foreach(lc, root->initial_rels)
1249 {
1250 RelOptInfo *rel2 = (RelOptInfo *) lfirst(lc);
1251
1252 /* ignore rels that are already in "rel" */
1253 if (bms_overlap(rel->relids, rel2->relids))
1254 continue;
1255
1256 if (have_relevant_joinclause(root, rel, rel2))
1257 {
1258 Relids joinrelids;
1259 SpecialJoinInfo *sjinfo;
1260 bool reversed;
1261
1262 /* join_is_legal needs relids of the union */
1263 joinrelids = bms_union(rel->relids, rel2->relids);
1264
1265 if (join_is_legal(root, rel, rel2, joinrelids,
1266 &sjinfo, &reversed))
1267 {
1268 /* Yes, this will work */
1269 bms_free(joinrelids);
1270 return true;
1271 }
1272
1273 bms_free(joinrelids);
1274 }
1275 }
1276
1277 return false;
1278}
Bitmapset * bms_union(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:251
bool have_relevant_joinclause(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
Definition: joininfo.c:39
static bool join_is_legal(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, Relids joinrelids, SpecialJoinInfo **sjinfo_p, bool *reversed_p)
Definition: joinrels.c:350

References bms_free(), bms_overlap(), bms_union(), have_relevant_joinclause(), join_is_legal(), lfirst, RelOptInfo::relids, and root.

Referenced by have_join_order_restriction().

◆ have_dangerous_phv()

bool have_dangerous_phv ( PlannerInfo root,
Relids  outer_relids,
Relids  inner_params 
)

Definition at line 1308 of file joinrels.c.

1310{
1311 ListCell *lc;
1312
1313 foreach(lc, root->placeholder_list)
1314 {
1315 PlaceHolderInfo *phinfo = (PlaceHolderInfo *) lfirst(lc);
1316
1317 if (!bms_is_subset(phinfo->ph_eval_at, inner_params))
1318 continue; /* ignore, could not be a nestloop param */
1319 if (!bms_overlap(phinfo->ph_eval_at, outer_relids))
1320 continue; /* ignore, not relevant to this join */
1321 if (bms_is_subset(phinfo->ph_eval_at, outer_relids))
1322 continue; /* safe, it can be eval'd within outerrel */
1323 /* Otherwise, it's potentially unsafe, so reject the join */
1324 return true;
1325 }
1326
1327 /* OK to perform the join */
1328 return false;
1329}

References bms_is_subset(), bms_overlap(), lfirst, PlaceHolderInfo::ph_eval_at, and root.

Referenced by join_is_legal(), and try_nestloop_path().

◆ have_join_order_restriction()

bool have_join_order_restriction ( PlannerInfo root,
RelOptInfo rel1,
RelOptInfo rel2 
)

Definition at line 1075 of file joinrels.c.

1077{
1078 bool result = false;
1079 ListCell *l;
1080
1081 /*
1082 * If either side has a direct lateral reference to the other, attempt the
1083 * join regardless of outer-join considerations.
1084 */
1085 if (bms_overlap(rel1->relids, rel2->direct_lateral_relids) ||
1087 return true;
1088
1089 /*
1090 * Likewise, if both rels are needed to compute some PlaceHolderVar,
1091 * attempt the join regardless of outer-join considerations. (This is not
1092 * very desirable, because a PHV with a large eval_at set will cause a lot
1093 * of probably-useless joins to be considered, but failing to do this can
1094 * cause us to fail to construct a plan at all.)
1095 */
1096 foreach(l, root->placeholder_list)
1097 {
1098 PlaceHolderInfo *phinfo = (PlaceHolderInfo *) lfirst(l);
1099
1100 if (bms_is_subset(rel1->relids, phinfo->ph_eval_at) &&
1101 bms_is_subset(rel2->relids, phinfo->ph_eval_at))
1102 return true;
1103 }
1104
1105 /*
1106 * It's possible that the rels correspond to the left and right sides of a
1107 * degenerate outer join, that is, one with no joinclause mentioning the
1108 * non-nullable side; in which case we should force the join to occur.
1109 *
1110 * Also, the two rels could represent a clauseless join that has to be
1111 * completed to build up the LHS or RHS of an outer join.
1112 */
1113 foreach(l, root->join_info_list)
1114 {
1115 SpecialJoinInfo *sjinfo = (SpecialJoinInfo *) lfirst(l);
1116
1117 /* ignore full joins --- other mechanisms handle them */
1118 if (sjinfo->jointype == JOIN_FULL)
1119 continue;
1120
1121 /* Can we perform the SJ with these rels? */
1122 if (bms_is_subset(sjinfo->min_lefthand, rel1->relids) &&
1123 bms_is_subset(sjinfo->min_righthand, rel2->relids))
1124 {
1125 result = true;
1126 break;
1127 }
1128 if (bms_is_subset(sjinfo->min_lefthand, rel2->relids) &&
1129 bms_is_subset(sjinfo->min_righthand, rel1->relids))
1130 {
1131 result = true;
1132 break;
1133 }
1134
1135 /*
1136 * Might we need to join these rels to complete the RHS? We have to
1137 * use "overlap" tests since either rel might include a lower SJ that
1138 * has been proven to commute with this one.
1139 */
1140 if (bms_overlap(sjinfo->min_righthand, rel1->relids) &&
1141 bms_overlap(sjinfo->min_righthand, rel2->relids))
1142 {
1143 result = true;
1144 break;
1145 }
1146
1147 /* Likewise for the LHS. */
1148 if (bms_overlap(sjinfo->min_lefthand, rel1->relids) &&
1149 bms_overlap(sjinfo->min_lefthand, rel2->relids))
1150 {
1151 result = true;
1152 break;
1153 }
1154 }
1155
1156 /*
1157 * We do not force the join to occur if either input rel can legally be
1158 * joined to anything else using joinclauses. This essentially means that
1159 * clauseless bushy joins are put off as long as possible. The reason is
1160 * that when there is a join order restriction high up in the join tree
1161 * (that is, with many rels inside the LHS or RHS), we would otherwise
1162 * expend lots of effort considering very stupid join combinations within
1163 * its LHS or RHS.
1164 */
1165 if (result)
1166 {
1167 if (has_legal_joinclause(root, rel1) ||
1169 result = false;
1170 }
1171
1172 return result;
1173}
static bool has_legal_joinclause(PlannerInfo *root, RelOptInfo *rel)
Definition: joinrels.c:1244
Relids direct_lateral_relids
Definition: pathnodes.h:938

References bms_is_subset(), bms_overlap(), RelOptInfo::direct_lateral_relids, has_legal_joinclause(), JOIN_FULL, SpecialJoinInfo::jointype, lfirst, SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, PlaceHolderInfo::ph_eval_at, RelOptInfo::relids, and root.

Referenced by desirable_join(), join_search_one_level(), and make_rels_by_clause_joins().

◆ init_dummy_sjinfo()

void init_dummy_sjinfo ( SpecialJoinInfo sjinfo,
Relids  left_relids,
Relids  right_relids 
)

Definition at line 670 of file joinrels.c.

672{
673 sjinfo->type = T_SpecialJoinInfo;
674 sjinfo->min_lefthand = left_relids;
675 sjinfo->min_righthand = right_relids;
676 sjinfo->syn_lefthand = left_relids;
677 sjinfo->syn_righthand = right_relids;
678 sjinfo->jointype = JOIN_INNER;
679 sjinfo->ojrelid = 0;
680 sjinfo->commute_above_l = NULL;
681 sjinfo->commute_above_r = NULL;
682 sjinfo->commute_below_l = NULL;
683 sjinfo->commute_below_r = NULL;
684 /* we don't bother trying to make the remaining fields valid */
685 sjinfo->lhs_strict = false;
686 sjinfo->semi_can_btree = false;
687 sjinfo->semi_can_hash = false;
688 sjinfo->semi_operators = NIL;
689 sjinfo->semi_rhs_exprs = NIL;
690}

References SpecialJoinInfo::commute_above_l, SpecialJoinInfo::commute_above_r, SpecialJoinInfo::commute_below_l, SpecialJoinInfo::commute_below_r, JOIN_INNER, SpecialJoinInfo::jointype, SpecialJoinInfo::lhs_strict, SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, NIL, SpecialJoinInfo::ojrelid, SpecialJoinInfo::semi_can_btree, SpecialJoinInfo::semi_can_hash, SpecialJoinInfo::semi_operators, SpecialJoinInfo::semi_rhs_exprs, SpecialJoinInfo::syn_lefthand, and SpecialJoinInfo::syn_righthand.

Referenced by approx_tuple_count(), build_child_join_sjinfo(), compute_semi_anti_join_factors(), consider_new_or_clause(), and make_join_rel().

◆ is_dummy_rel()

bool is_dummy_rel ( RelOptInfo rel)

Definition at line 1336 of file joinrels.c.

1337{
1338 Path *path;
1339
1340 /*
1341 * A rel that is known dummy will have just one path that is a childless
1342 * Append. (Even if somehow it has more paths, a childless Append will
1343 * have cost zero and hence should be at the front of the pathlist.)
1344 */
1345 if (rel->pathlist == NIL)
1346 return false;
1347 path = (Path *) linitial(rel->pathlist);
1348
1349 /*
1350 * Initially, a dummy path will just be a childless Append. But in later
1351 * planning stages we might stick a ProjectSetPath and/or ProjectionPath
1352 * on top, since Append can't project. Rather than make assumptions about
1353 * which combinations can occur, just descend through whatever we find.
1354 */
1355 for (;;)
1356 {
1357 if (IsA(path, ProjectionPath))
1358 path = ((ProjectionPath *) path)->subpath;
1359 else if (IsA(path, ProjectSetPath))
1360 path = ((ProjectSetPath *) path)->subpath;
1361 else
1362 break;
1363 }
1364 if (IS_DUMMY_APPEND(path))
1365 return true;
1366 return false;
1367}
Datum subpath(PG_FUNCTION_ARGS)
Definition: ltree_op.c:311
#define IsA(nodeptr, _type_)
Definition: nodes.h:164
#define IS_DUMMY_APPEND(p)
Definition: pathnodes.h:2075
#define linitial(l)
Definition: pg_list.h:178
List * pathlist
Definition: pathnodes.h:925

References IS_DUMMY_APPEND, IsA, linitial, NIL, RelOptInfo::pathlist, and subpath().

Referenced by make_join_rel(), mark_dummy_rel(), and populate_joinrel_with_paths().

◆ join_is_legal()

static bool join_is_legal ( PlannerInfo root,
RelOptInfo rel1,
RelOptInfo rel2,
Relids  joinrelids,
SpecialJoinInfo **  sjinfo_p,
bool *  reversed_p 
)
static

Definition at line 350 of file joinrels.c.

353{
354 SpecialJoinInfo *match_sjinfo;
355 bool reversed;
356 bool unique_ified;
357 bool must_be_leftjoin;
358 ListCell *l;
359
360 /*
361 * Ensure output params are set on failure return. This is just to
362 * suppress uninitialized-variable warnings from overly anal compilers.
363 */
364 *sjinfo_p = NULL;
365 *reversed_p = false;
366
367 /*
368 * If we have any special joins, the proposed join might be illegal; and
369 * in any case we have to determine its join type. Scan the join info
370 * list for matches and conflicts.
371 */
372 match_sjinfo = NULL;
373 reversed = false;
374 unique_ified = false;
375 must_be_leftjoin = false;
376
377 foreach(l, root->join_info_list)
378 {
379 SpecialJoinInfo *sjinfo = (SpecialJoinInfo *) lfirst(l);
380
381 /*
382 * This special join is not relevant unless its RHS overlaps the
383 * proposed join. (Check this first as a fast path for dismissing
384 * most irrelevant SJs quickly.)
385 */
386 if (!bms_overlap(sjinfo->min_righthand, joinrelids))
387 continue;
388
389 /*
390 * Also, not relevant if proposed join is fully contained within RHS
391 * (ie, we're still building up the RHS).
392 */
393 if (bms_is_subset(joinrelids, sjinfo->min_righthand))
394 continue;
395
396 /*
397 * Also, not relevant if SJ is already done within either input.
398 */
399 if (bms_is_subset(sjinfo->min_lefthand, rel1->relids) &&
400 bms_is_subset(sjinfo->min_righthand, rel1->relids))
401 continue;
402 if (bms_is_subset(sjinfo->min_lefthand, rel2->relids) &&
403 bms_is_subset(sjinfo->min_righthand, rel2->relids))
404 continue;
405
406 /*
407 * If it's a semijoin and we already joined the RHS to any other rels
408 * within either input, then we must have unique-ified the RHS at that
409 * point (see below). Therefore the semijoin is no longer relevant in
410 * this join path.
411 */
412 if (sjinfo->jointype == JOIN_SEMI)
413 {
414 if (bms_is_subset(sjinfo->syn_righthand, rel1->relids) &&
415 !bms_equal(sjinfo->syn_righthand, rel1->relids))
416 continue;
417 if (bms_is_subset(sjinfo->syn_righthand, rel2->relids) &&
418 !bms_equal(sjinfo->syn_righthand, rel2->relids))
419 continue;
420 }
421
422 /*
423 * If one input contains min_lefthand and the other contains
424 * min_righthand, then we can perform the SJ at this join.
425 *
426 * Reject if we get matches to more than one SJ; that implies we're
427 * considering something that's not really valid.
428 */
429 if (bms_is_subset(sjinfo->min_lefthand, rel1->relids) &&
430 bms_is_subset(sjinfo->min_righthand, rel2->relids))
431 {
432 if (match_sjinfo)
433 return false; /* invalid join path */
434 match_sjinfo = sjinfo;
435 reversed = false;
436 }
437 else if (bms_is_subset(sjinfo->min_lefthand, rel2->relids) &&
438 bms_is_subset(sjinfo->min_righthand, rel1->relids))
439 {
440 if (match_sjinfo)
441 return false; /* invalid join path */
442 match_sjinfo = sjinfo;
443 reversed = true;
444 }
445 else if (sjinfo->jointype == JOIN_SEMI &&
446 bms_equal(sjinfo->syn_righthand, rel2->relids) &&
448 sjinfo) != NULL)
449 {
450 /*----------
451 * For a semijoin, we can join the RHS to anything else by
452 * unique-ifying the RHS (if the RHS can be unique-ified).
453 * We will only get here if we have the full RHS but less
454 * than min_lefthand on the LHS.
455 *
456 * The reason to consider such a join path is exemplified by
457 * SELECT ... FROM a,b WHERE (a.x,b.y) IN (SELECT c1,c2 FROM c)
458 * If we insist on doing this as a semijoin we will first have
459 * to form the cartesian product of A*B. But if we unique-ify
460 * C then the semijoin becomes a plain innerjoin and we can join
461 * in any order, eg C to A and then to B. When C is much smaller
462 * than A and B this can be a huge win. So we allow C to be
463 * joined to just A or just B here, and then make_join_rel has
464 * to handle the case properly.
465 *
466 * Note that actually we'll allow unique-ified C to be joined to
467 * some other relation D here, too. That is legal, if usually not
468 * very sane, and this routine is only concerned with legality not
469 * with whether the join is good strategy.
470 *----------
471 */
472 if (match_sjinfo)
473 return false; /* invalid join path */
474 match_sjinfo = sjinfo;
475 reversed = false;
476 unique_ified = true;
477 }
478 else if (sjinfo->jointype == JOIN_SEMI &&
479 bms_equal(sjinfo->syn_righthand, rel1->relids) &&
481 sjinfo) != NULL)
482 {
483 /* Reversed semijoin case */
484 if (match_sjinfo)
485 return false; /* invalid join path */
486 match_sjinfo = sjinfo;
487 reversed = true;
488 unique_ified = true;
489 }
490 else
491 {
492 /*
493 * Otherwise, the proposed join overlaps the RHS but isn't a valid
494 * implementation of this SJ. But don't panic quite yet: the RHS
495 * violation might have occurred previously, in one or both input
496 * relations, in which case we must have previously decided that
497 * it was OK to commute some other SJ with this one. If we need
498 * to perform this join to finish building up the RHS, rejecting
499 * it could lead to not finding any plan at all. (This can occur
500 * because of the heuristics elsewhere in this file that postpone
501 * clauseless joins: we might not consider doing a clauseless join
502 * within the RHS until after we've performed other, validly
503 * commutable SJs with one or both sides of the clauseless join.)
504 * This consideration boils down to the rule that if both inputs
505 * overlap the RHS, we can allow the join --- they are either
506 * fully within the RHS, or represent previously-allowed joins to
507 * rels outside it.
508 */
509 if (bms_overlap(rel1->relids, sjinfo->min_righthand) &&
510 bms_overlap(rel2->relids, sjinfo->min_righthand))
511 continue; /* assume valid previous violation of RHS */
512
513 /*
514 * The proposed join could still be legal, but only if we're
515 * allowed to associate it into the RHS of this SJ. That means
516 * this SJ must be a LEFT join (not SEMI or ANTI, and certainly
517 * not FULL) and the proposed join must not overlap the LHS.
518 */
519 if (sjinfo->jointype != JOIN_LEFT ||
520 bms_overlap(joinrelids, sjinfo->min_lefthand))
521 return false; /* invalid join path */
522
523 /*
524 * To be valid, the proposed join must be a LEFT join; otherwise
525 * it can't associate into this SJ's RHS. But we may not yet have
526 * found the SpecialJoinInfo matching the proposed join, so we
527 * can't test that yet. Remember the requirement for later.
528 */
529 must_be_leftjoin = true;
530 }
531 }
532
533 /*
534 * Fail if violated any SJ's RHS and didn't match to a LEFT SJ: the
535 * proposed join can't associate into an SJ's RHS.
536 *
537 * Also, fail if the proposed join's predicate isn't strict; we're
538 * essentially checking to see if we can apply outer-join identity 3, and
539 * that's a requirement. (This check may be redundant with checks in
540 * make_outerjoininfo, but I'm not quite sure, and it's cheap to test.)
541 */
542 if (must_be_leftjoin &&
543 (match_sjinfo == NULL ||
544 match_sjinfo->jointype != JOIN_LEFT ||
545 !match_sjinfo->lhs_strict))
546 return false; /* invalid join path */
547
548 /*
549 * We also have to check for constraints imposed by LATERAL references.
550 */
551 if (root->hasLateralRTEs)
552 {
553 bool lateral_fwd;
554 bool lateral_rev;
555 Relids join_lateral_rels;
556
557 /*
558 * The proposed rels could each contain lateral references to the
559 * other, in which case the join is impossible. If there are lateral
560 * references in just one direction, then the join has to be done with
561 * a nestloop with the lateral referencer on the inside. If the join
562 * matches an SJ that cannot be implemented by such a nestloop, the
563 * join is impossible.
564 *
565 * Also, if the lateral reference is only indirect, we should reject
566 * the join; whatever rel(s) the reference chain goes through must be
567 * joined to first.
568 *
569 * Another case that might keep us from building a valid plan is the
570 * implementation restriction described by have_dangerous_phv().
571 */
572 lateral_fwd = bms_overlap(rel1->relids, rel2->lateral_relids);
573 lateral_rev = bms_overlap(rel2->relids, rel1->lateral_relids);
574 if (lateral_fwd && lateral_rev)
575 return false; /* have lateral refs in both directions */
576 if (lateral_fwd)
577 {
578 /* has to be implemented as nestloop with rel1 on left */
579 if (match_sjinfo &&
580 (reversed ||
581 unique_ified ||
582 match_sjinfo->jointype == JOIN_FULL))
583 return false; /* not implementable as nestloop */
584 /* check there is a direct reference from rel2 to rel1 */
585 if (!bms_overlap(rel1->relids, rel2->direct_lateral_relids))
586 return false; /* only indirect refs, so reject */
587 /* check we won't have a dangerous PHV */
588 if (have_dangerous_phv(root, rel1->relids, rel2->lateral_relids))
589 return false; /* might be unable to handle required PHV */
590 }
591 else if (lateral_rev)
592 {
593 /* has to be implemented as nestloop with rel2 on left */
594 if (match_sjinfo &&
595 (!reversed ||
596 unique_ified ||
597 match_sjinfo->jointype == JOIN_FULL))
598 return false; /* not implementable as nestloop */
599 /* check there is a direct reference from rel1 to rel2 */
600 if (!bms_overlap(rel2->relids, rel1->direct_lateral_relids))
601 return false; /* only indirect refs, so reject */
602 /* check we won't have a dangerous PHV */
603 if (have_dangerous_phv(root, rel2->relids, rel1->lateral_relids))
604 return false; /* might be unable to handle required PHV */
605 }
606
607 /*
608 * LATERAL references could also cause problems later on if we accept
609 * this join: if the join's minimum parameterization includes any rels
610 * that would have to be on the inside of an outer join with this join
611 * rel, then it's never going to be possible to build the complete
612 * query using this join. We should reject this join not only because
613 * it'll save work, but because if we don't, the clauseless-join
614 * heuristics might think that legality of this join means that some
615 * other join rel need not be formed, and that could lead to failure
616 * to find any plan at all. We have to consider not only rels that
617 * are directly on the inner side of an OJ with the joinrel, but also
618 * ones that are indirectly so, so search to find all such rels.
619 */
620 join_lateral_rels = min_join_parameterization(root, joinrelids,
621 rel1, rel2);
622 if (join_lateral_rels)
623 {
624 Relids join_plus_rhs = bms_copy(joinrelids);
625 bool more;
626
627 do
628 {
629 more = false;
630 foreach(l, root->join_info_list)
631 {
632 SpecialJoinInfo *sjinfo = (SpecialJoinInfo *) lfirst(l);
633
634 /* ignore full joins --- their ordering is predetermined */
635 if (sjinfo->jointype == JOIN_FULL)
636 continue;
637
638 if (bms_overlap(sjinfo->min_lefthand, join_plus_rhs) &&
639 !bms_is_subset(sjinfo->min_righthand, join_plus_rhs))
640 {
641 join_plus_rhs = bms_add_members(join_plus_rhs,
642 sjinfo->min_righthand);
643 more = true;
644 }
645 }
646 } while (more);
647 if (bms_overlap(join_plus_rhs, join_lateral_rels))
648 return false; /* will not be able to join to some RHS rel */
649 }
650 }
651
652 /* Otherwise, it's a valid join */
653 *sjinfo_p = match_sjinfo;
654 *reversed_p = reversed;
655 return true;
656}
bool have_dangerous_phv(PlannerInfo *root, Relids outer_relids, Relids inner_params)
Definition: joinrels.c:1308
@ JOIN_SEMI
Definition: nodes.h:313
UniquePath * create_unique_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, SpecialJoinInfo *sjinfo)
Definition: pathnode.c:1727
Relids min_join_parameterization(PlannerInfo *root, Relids joinrelids, RelOptInfo *outer_rel, RelOptInfo *inner_rel)
Definition: relnode.c:1022
struct Path * cheapest_total_path
Definition: pathnodes.h:929

References bms_add_members(), bms_copy(), bms_equal(), bms_is_subset(), bms_overlap(), RelOptInfo::cheapest_total_path, create_unique_path(), RelOptInfo::direct_lateral_relids, have_dangerous_phv(), JOIN_FULL, JOIN_LEFT, JOIN_SEMI, SpecialJoinInfo::jointype, RelOptInfo::lateral_relids, lfirst, SpecialJoinInfo::lhs_strict, min_join_parameterization(), SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, RelOptInfo::relids, root, and SpecialJoinInfo::syn_righthand.

Referenced by has_legal_joinclause(), and make_join_rel().

◆ join_search_one_level()

void join_search_one_level ( PlannerInfo root,
int  level 
)

Definition at line 73 of file joinrels.c.

74{
75 List **joinrels = root->join_rel_level;
76 ListCell *r;
77 int k;
78
79 Assert(joinrels[level] == NIL);
80
81 /* Set join_cur_level so that new joinrels are added to proper list */
82 root->join_cur_level = level;
83
84 /*
85 * First, consider left-sided and right-sided plans, in which rels of
86 * exactly level-1 member relations are joined against initial relations.
87 * We prefer to join using join clauses, but if we find a rel of level-1
88 * members that has no join clauses, we will generate Cartesian-product
89 * joins against all initial rels not already contained in it.
90 */
91 foreach(r, joinrels[level - 1])
92 {
93 RelOptInfo *old_rel = (RelOptInfo *) lfirst(r);
94
95 if (old_rel->joininfo != NIL || old_rel->has_eclass_joins ||
96 has_join_restriction(root, old_rel))
97 {
98 int first_rel;
99
100 /*
101 * There are join clauses or join order restrictions relevant to
102 * this rel, so consider joins between this rel and (only) those
103 * initial rels it is linked to by a clause or restriction.
104 *
105 * At level 2 this condition is symmetric, so there is no need to
106 * look at initial rels before this one in the list; we already
107 * considered such joins when we were at the earlier rel. (The
108 * mirror-image joins are handled automatically by make_join_rel.)
109 * In later passes (level > 2), we join rels of the previous level
110 * to each initial rel they don't already include but have a join
111 * clause or restriction with.
112 */
113 if (level == 2) /* consider remaining initial rels */
114 first_rel = foreach_current_index(r) + 1;
115 else
116 first_rel = 0;
117
118 make_rels_by_clause_joins(root, old_rel, joinrels[1], first_rel);
119 }
120 else
121 {
122 /*
123 * Oops, we have a relation that is not joined to any other
124 * relation, either directly or by join-order restrictions.
125 * Cartesian product time.
126 *
127 * We consider a cartesian product with each not-already-included
128 * initial rel, whether it has other join clauses or not. At
129 * level 2, if there are two or more clauseless initial rels, we
130 * will redundantly consider joining them in both directions; but
131 * such cases aren't common enough to justify adding complexity to
132 * avoid the duplicated effort.
133 */
135 old_rel,
136 joinrels[1]);
137 }
138 }
139
140 /*
141 * Now, consider "bushy plans" in which relations of k initial rels are
142 * joined to relations of level-k initial rels, for 2 <= k <= level-2.
143 *
144 * We only consider bushy-plan joins for pairs of rels where there is a
145 * suitable join clause (or join order restriction), in order to avoid
146 * unreasonable growth of planning time.
147 */
148 for (k = 2;; k++)
149 {
150 int other_level = level - k;
151
152 /*
153 * Since make_join_rel(x, y) handles both x,y and y,x cases, we only
154 * need to go as far as the halfway point.
155 */
156 if (k > other_level)
157 break;
158
159 foreach(r, joinrels[k])
160 {
161 RelOptInfo *old_rel = (RelOptInfo *) lfirst(r);
162 int first_rel;
163 ListCell *r2;
164
165 /*
166 * We can ignore relations without join clauses here, unless they
167 * participate in join-order restrictions --- then we might have
168 * to force a bushy join plan.
169 */
170 if (old_rel->joininfo == NIL && !old_rel->has_eclass_joins &&
171 !has_join_restriction(root, old_rel))
172 continue;
173
174 if (k == other_level) /* only consider remaining rels */
175 first_rel = foreach_current_index(r) + 1;
176 else
177 first_rel = 0;
178
179 for_each_from(r2, joinrels[other_level], first_rel)
180 {
181 RelOptInfo *new_rel = (RelOptInfo *) lfirst(r2);
182
183 if (!bms_overlap(old_rel->relids, new_rel->relids))
184 {
185 /*
186 * OK, we can build a rel of the right level from this
187 * pair of rels. Do so if there is at least one relevant
188 * join clause or join order restriction.
189 */
190 if (have_relevant_joinclause(root, old_rel, new_rel) ||
191 have_join_order_restriction(root, old_rel, new_rel))
192 {
193 (void) make_join_rel(root, old_rel, new_rel);
194 }
195 }
196 }
197 }
198 }
199
200 /*----------
201 * Last-ditch effort: if we failed to find any usable joins so far, force
202 * a set of cartesian-product joins to be generated. This handles the
203 * special case where all the available rels have join clauses but we
204 * cannot use any of those clauses yet. This can only happen when we are
205 * considering a join sub-problem (a sub-joinlist) and all the rels in the
206 * sub-problem have only join clauses with rels outside the sub-problem.
207 * An example is
208 *
209 * SELECT ... FROM a INNER JOIN b ON TRUE, c, d, ...
210 * WHERE a.w = c.x and b.y = d.z;
211 *
212 * If the "a INNER JOIN b" sub-problem does not get flattened into the
213 * upper level, we must be willing to make a cartesian join of a and b;
214 * but the code above will not have done so, because it thought that both
215 * a and b have joinclauses. We consider only left-sided and right-sided
216 * cartesian joins in this case (no bushy).
217 *----------
218 */
219 if (joinrels[level] == NIL)
220 {
221 /*
222 * This loop is just like the first one, except we always call
223 * make_rels_by_clauseless_joins().
224 */
225 foreach(r, joinrels[level - 1])
226 {
227 RelOptInfo *old_rel = (RelOptInfo *) lfirst(r);
228
230 old_rel,
231 joinrels[1]);
232 }
233
234 /*----------
235 * When special joins are involved, there may be no legal way
236 * to make an N-way join for some values of N. For example consider
237 *
238 * SELECT ... FROM t1 WHERE
239 * x IN (SELECT ... FROM t2,t3 WHERE ...) AND
240 * y IN (SELECT ... FROM t4,t5 WHERE ...)
241 *
242 * We will flatten this query to a 5-way join problem, but there are
243 * no 4-way joins that join_is_legal() will consider legal. We have
244 * to accept failure at level 4 and go on to discover a workable
245 * bushy plan at level 5.
246 *
247 * However, if there are no special joins and no lateral references
248 * then join_is_legal() should never fail, and so the following sanity
249 * check is useful.
250 *----------
251 */
252 if (joinrels[level] == NIL &&
253 root->join_info_list == NIL &&
254 !root->hasLateralRTEs)
255 elog(ERROR, "failed to build any %d-way joins", level);
256 }
257}
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:226
static void make_rels_by_clauseless_joins(PlannerInfo *root, RelOptInfo *old_rel, List *other_rels)
Definition: joinrels.c:314
RelOptInfo * make_join_rel(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
Definition: joinrels.c:705
bool have_join_order_restriction(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
Definition: joinrels.c:1075
static bool has_join_restriction(PlannerInfo *root, RelOptInfo *rel)
Definition: joinrels.c:1188
static void make_rels_by_clause_joins(PlannerInfo *root, RelOptInfo *old_rel, List *other_rels, int first_rel_idx)
Definition: joinrels.c:280
#define foreach_current_index(var_or_cell)
Definition: pg_list.h:403
#define for_each_from(cell, lst, N)
Definition: pg_list.h:414
List * joininfo
Definition: pathnodes.h:1018
bool has_eclass_joins
Definition: pathnodes.h:1020

References Assert(), bms_overlap(), elog, ERROR, for_each_from, foreach_current_index, RelOptInfo::has_eclass_joins, has_join_restriction(), have_join_order_restriction(), have_relevant_joinclause(), RelOptInfo::joininfo, lfirst, make_join_rel(), make_rels_by_clause_joins(), make_rels_by_clauseless_joins(), NIL, RelOptInfo::relids, and root.

Referenced by standard_join_search().

◆ make_join_rel()

RelOptInfo * make_join_rel ( PlannerInfo root,
RelOptInfo rel1,
RelOptInfo rel2 
)

Definition at line 705 of file joinrels.c.

706{
707 Relids joinrelids;
708 SpecialJoinInfo *sjinfo;
709 bool reversed;
710 List *pushed_down_joins = NIL;
711 SpecialJoinInfo sjinfo_data;
712 RelOptInfo *joinrel;
713 List *restrictlist;
714
715 /* We should never try to join two overlapping sets of rels. */
716 Assert(!bms_overlap(rel1->relids, rel2->relids));
717
718 /* Construct Relids set that identifies the joinrel (without OJ as yet). */
719 joinrelids = bms_union(rel1->relids, rel2->relids);
720
721 /* Check validity and determine join type. */
722 if (!join_is_legal(root, rel1, rel2, joinrelids,
723 &sjinfo, &reversed))
724 {
725 /* invalid join path */
726 bms_free(joinrelids);
727 return NULL;
728 }
729
730 /*
731 * Add outer join relid(s) to form the canonical relids. Any added outer
732 * joins besides sjinfo itself are appended to pushed_down_joins.
733 */
734 joinrelids = add_outer_joins_to_relids(root, joinrelids, sjinfo,
735 &pushed_down_joins);
736
737 /* Swap rels if needed to match the join info. */
738 if (reversed)
739 {
740 RelOptInfo *trel = rel1;
741
742 rel1 = rel2;
743 rel2 = trel;
744 }
745
746 /*
747 * If it's a plain inner join, then we won't have found anything in
748 * join_info_list. Make up a SpecialJoinInfo so that selectivity
749 * estimation functions will know what's being joined.
750 */
751 if (sjinfo == NULL)
752 {
753 sjinfo = &sjinfo_data;
754 init_dummy_sjinfo(sjinfo, rel1->relids, rel2->relids);
755 }
756
757 /*
758 * Find or build the join RelOptInfo, and compute the restrictlist that
759 * goes with this particular joining.
760 */
761 joinrel = build_join_rel(root, joinrelids, rel1, rel2,
762 sjinfo, pushed_down_joins,
763 &restrictlist);
764
765 /*
766 * If we've already proven this join is empty, we needn't consider any
767 * more paths for it.
768 */
769 if (is_dummy_rel(joinrel))
770 {
771 bms_free(joinrelids);
772 return joinrel;
773 }
774
775 /* Add paths to the join relation. */
776 populate_joinrel_with_paths(root, rel1, rel2, joinrel, sjinfo,
777 restrictlist);
778
779 bms_free(joinrelids);
780
781 return joinrel;
782}
static void populate_joinrel_with_paths(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, RelOptInfo *joinrel, SpecialJoinInfo *sjinfo, List *restrictlist)
Definition: joinrels.c:894
bool is_dummy_rel(RelOptInfo *rel)
Definition: joinrels.c:1336
Relids add_outer_joins_to_relids(PlannerInfo *root, Relids input_relids, SpecialJoinInfo *sjinfo, List **pushed_down_joins)
Definition: joinrels.c:802
RelOptInfo * build_join_rel(PlannerInfo *root, Relids joinrelids, RelOptInfo *outer_rel, RelOptInfo *inner_rel, SpecialJoinInfo *sjinfo, List *pushed_down_joins, List **restrictlist_ptr)
Definition: relnode.c:665

References add_outer_joins_to_relids(), Assert(), bms_free(), bms_overlap(), bms_union(), build_join_rel(), init_dummy_sjinfo(), is_dummy_rel(), join_is_legal(), NIL, populate_joinrel_with_paths(), RelOptInfo::relids, and root.

Referenced by join_search_one_level(), make_rels_by_clause_joins(), make_rels_by_clauseless_joins(), and merge_clump().

◆ make_rels_by_clause_joins()

static void make_rels_by_clause_joins ( PlannerInfo root,
RelOptInfo old_rel,
List other_rels,
int  first_rel_idx 
)
static

Definition at line 280 of file joinrels.c.

284{
285 ListCell *l;
286
287 for_each_from(l, other_rels, first_rel_idx)
288 {
289 RelOptInfo *other_rel = (RelOptInfo *) lfirst(l);
290
291 if (!bms_overlap(old_rel->relids, other_rel->relids) &&
292 (have_relevant_joinclause(root, old_rel, other_rel) ||
293 have_join_order_restriction(root, old_rel, other_rel)))
294 {
295 (void) make_join_rel(root, old_rel, other_rel);
296 }
297 }
298}

References bms_overlap(), for_each_from, have_join_order_restriction(), have_relevant_joinclause(), lfirst, make_join_rel(), RelOptInfo::relids, and root.

Referenced by join_search_one_level().

◆ make_rels_by_clauseless_joins()

static void make_rels_by_clauseless_joins ( PlannerInfo root,
RelOptInfo old_rel,
List other_rels 
)
static

Definition at line 314 of file joinrels.c.

317{
318 ListCell *l;
319
320 foreach(l, other_rels)
321 {
322 RelOptInfo *other_rel = (RelOptInfo *) lfirst(l);
323
324 if (!bms_overlap(other_rel->relids, old_rel->relids))
325 {
326 (void) make_join_rel(root, old_rel, other_rel);
327 }
328 }
329}

References bms_overlap(), lfirst, make_join_rel(), RelOptInfo::relids, and root.

Referenced by join_search_one_level().

◆ mark_dummy_rel()

void mark_dummy_rel ( RelOptInfo rel)

Definition at line 1385 of file joinrels.c.

1386{
1387 MemoryContext oldcontext;
1388
1389 /* Already marked? */
1390 if (is_dummy_rel(rel))
1391 return;
1392
1393 /* No, so choose correct context to make the dummy path in */
1395
1396 /* Set dummy size estimate */
1397 rel->rows = 0;
1398
1399 /* Evict any previously chosen paths */
1400 rel->pathlist = NIL;
1401 rel->partial_pathlist = NIL;
1402
1403 /* Set up the dummy path */
1404 add_path(rel, (Path *) create_append_path(NULL, rel, NIL, NIL,
1405 NIL, rel->lateral_relids,
1406 0, false, -1));
1407
1408 /* Set or update cheapest_total_path and related fields */
1409 set_cheapest(rel);
1410
1411 MemoryContextSwitchTo(oldcontext);
1412}
MemoryContext GetMemoryChunkContext(void *pointer)
Definition: mcxt.c:738
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
void set_cheapest(RelOptInfo *parent_rel)
Definition: pathnode.c:269
AppendPath * create_append_path(PlannerInfo *root, RelOptInfo *rel, List *subpaths, List *partial_subpaths, List *pathkeys, Relids required_outer, int parallel_workers, bool parallel_aware, double rows)
Definition: pathnode.c:1300
void add_path(RelOptInfo *parent_rel, Path *new_path)
Definition: pathnode.c:461
List * partial_pathlist
Definition: pathnodes.h:927
Cardinality rows
Definition: pathnodes.h:904

References add_path(), create_append_path(), GetMemoryChunkContext(), is_dummy_rel(), RelOptInfo::lateral_relids, MemoryContextSwitchTo(), NIL, RelOptInfo::partial_pathlist, RelOptInfo::pathlist, RelOptInfo::rows, and set_cheapest().

Referenced by build_simple_rel(), generate_partitionwise_join_paths(), and populate_joinrel_with_paths().

◆ populate_joinrel_with_paths()

static void populate_joinrel_with_paths ( PlannerInfo root,
RelOptInfo rel1,
RelOptInfo rel2,
RelOptInfo joinrel,
SpecialJoinInfo sjinfo,
List restrictlist 
)
static

Definition at line 894 of file joinrels.c.

897{
898 /*
899 * Consider paths using each rel as both outer and inner. Depending on
900 * the join type, a provably empty outer or inner rel might mean the join
901 * is provably empty too; in which case throw away any previously computed
902 * paths and mark the join as dummy. (We do it this way since it's
903 * conceivable that dummy-ness of a multi-element join might only be
904 * noticeable for certain construction paths.)
905 *
906 * Also, a provably constant-false join restriction typically means that
907 * we can skip evaluating one or both sides of the join. We do this by
908 * marking the appropriate rel as dummy. For outer joins, a
909 * constant-false restriction that is pushed down still means the whole
910 * join is dummy, while a non-pushed-down one means that no inner rows
911 * will join so we can treat the inner rel as dummy.
912 *
913 * We need only consider the jointypes that appear in join_info_list, plus
914 * JOIN_INNER.
915 */
916 switch (sjinfo->jointype)
917 {
918 case JOIN_INNER:
919 if (is_dummy_rel(rel1) || is_dummy_rel(rel2) ||
920 restriction_is_constant_false(restrictlist, joinrel, false))
921 {
922 mark_dummy_rel(joinrel);
923 break;
924 }
925 add_paths_to_joinrel(root, joinrel, rel1, rel2,
926 JOIN_INNER, sjinfo,
927 restrictlist);
928 add_paths_to_joinrel(root, joinrel, rel2, rel1,
929 JOIN_INNER, sjinfo,
930 restrictlist);
931 break;
932 case JOIN_LEFT:
933 if (is_dummy_rel(rel1) ||
934 restriction_is_constant_false(restrictlist, joinrel, true))
935 {
936 mark_dummy_rel(joinrel);
937 break;
938 }
939 if (restriction_is_constant_false(restrictlist, joinrel, false) &&
940 bms_is_subset(rel2->relids, sjinfo->syn_righthand))
941 mark_dummy_rel(rel2);
942 add_paths_to_joinrel(root, joinrel, rel1, rel2,
943 JOIN_LEFT, sjinfo,
944 restrictlist);
945 add_paths_to_joinrel(root, joinrel, rel2, rel1,
946 JOIN_RIGHT, sjinfo,
947 restrictlist);
948 break;
949 case JOIN_FULL:
950 if ((is_dummy_rel(rel1) && is_dummy_rel(rel2)) ||
951 restriction_is_constant_false(restrictlist, joinrel, true))
952 {
953 mark_dummy_rel(joinrel);
954 break;
955 }
956 add_paths_to_joinrel(root, joinrel, rel1, rel2,
957 JOIN_FULL, sjinfo,
958 restrictlist);
959 add_paths_to_joinrel(root, joinrel, rel2, rel1,
960 JOIN_FULL, sjinfo,
961 restrictlist);
962
963 /*
964 * If there are join quals that aren't mergeable or hashable, we
965 * may not be able to build any valid plan. Complain here so that
966 * we can give a somewhat-useful error message. (Since we have no
967 * flexibility of planning for a full join, there's no chance of
968 * succeeding later with another pair of input rels.)
969 */
970 if (joinrel->pathlist == NIL)
972 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
973 errmsg("FULL JOIN is only supported with merge-joinable or hash-joinable join conditions")));
974 break;
975 case JOIN_SEMI:
976
977 /*
978 * We might have a normal semijoin, or a case where we don't have
979 * enough rels to do the semijoin but can unique-ify the RHS and
980 * then do an innerjoin (see comments in join_is_legal). In the
981 * latter case we can't apply JOIN_SEMI joining.
982 */
983 if (bms_is_subset(sjinfo->min_lefthand, rel1->relids) &&
984 bms_is_subset(sjinfo->min_righthand, rel2->relids))
985 {
986 if (is_dummy_rel(rel1) || is_dummy_rel(rel2) ||
987 restriction_is_constant_false(restrictlist, joinrel, false))
988 {
989 mark_dummy_rel(joinrel);
990 break;
991 }
992 add_paths_to_joinrel(root, joinrel, rel1, rel2,
993 JOIN_SEMI, sjinfo,
994 restrictlist);
995 add_paths_to_joinrel(root, joinrel, rel2, rel1,
996 JOIN_RIGHT_SEMI, sjinfo,
997 restrictlist);
998 }
999
1000 /*
1001 * If we know how to unique-ify the RHS and one input rel is
1002 * exactly the RHS (not a superset) we can consider unique-ifying
1003 * it and then doing a regular join. (The create_unique_path
1004 * check here is probably redundant with what join_is_legal did,
1005 * but if so the check is cheap because it's cached. So test
1006 * anyway to be sure.)
1007 */
1008 if (bms_equal(sjinfo->syn_righthand, rel2->relids) &&
1010 sjinfo) != NULL)
1011 {
1012 if (is_dummy_rel(rel1) || is_dummy_rel(rel2) ||
1013 restriction_is_constant_false(restrictlist, joinrel, false))
1014 {
1015 mark_dummy_rel(joinrel);
1016 break;
1017 }
1018 add_paths_to_joinrel(root, joinrel, rel1, rel2,
1019 JOIN_UNIQUE_INNER, sjinfo,
1020 restrictlist);
1021 add_paths_to_joinrel(root, joinrel, rel2, rel1,
1022 JOIN_UNIQUE_OUTER, sjinfo,
1023 restrictlist);
1024 }
1025 break;
1026 case JOIN_ANTI:
1027 if (is_dummy_rel(rel1) ||
1028 restriction_is_constant_false(restrictlist, joinrel, true))
1029 {
1030 mark_dummy_rel(joinrel);
1031 break;
1032 }
1033 if (restriction_is_constant_false(restrictlist, joinrel, false) &&
1034 bms_is_subset(rel2->relids, sjinfo->syn_righthand))
1035 mark_dummy_rel(rel2);
1036 add_paths_to_joinrel(root, joinrel, rel1, rel2,
1037 JOIN_ANTI, sjinfo,
1038 restrictlist);
1039 add_paths_to_joinrel(root, joinrel, rel2, rel1,
1040 JOIN_RIGHT_ANTI, sjinfo,
1041 restrictlist);
1042 break;
1043 default:
1044 /* other values not expected here */
1045 elog(ERROR, "unrecognized join type: %d", (int) sjinfo->jointype);
1046 break;
1047 }
1048
1049 /* Apply partitionwise join technique, if possible. */
1050 try_partitionwise_join(root, rel1, rel2, joinrel, sjinfo, restrictlist);
1051}
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ereport(elevel,...)
Definition: elog.h:149
void add_paths_to_joinrel(PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *outerrel, RelOptInfo *innerrel, JoinType jointype, SpecialJoinInfo *sjinfo, List *restrictlist)
Definition: joinpath.c:124
static void try_partitionwise_join(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, RelOptInfo *joinrel, SpecialJoinInfo *parent_sjinfo, List *parent_restrictlist)
Definition: joinrels.c:1482
static bool restriction_is_constant_false(List *restrictlist, RelOptInfo *joinrel, bool only_pushed_down)
Definition: joinrels.c:1428
void mark_dummy_rel(RelOptInfo *rel)
Definition: joinrels.c:1385
@ JOIN_RIGHT
Definition: nodes.h:302
@ JOIN_RIGHT_SEMI
Definition: nodes.h:315
@ JOIN_UNIQUE_OUTER
Definition: nodes.h:322
@ JOIN_RIGHT_ANTI
Definition: nodes.h:316
@ JOIN_UNIQUE_INNER
Definition: nodes.h:323
@ JOIN_ANTI
Definition: nodes.h:314

References add_paths_to_joinrel(), bms_equal(), bms_is_subset(), RelOptInfo::cheapest_total_path, create_unique_path(), elog, ereport, errcode(), errmsg(), ERROR, is_dummy_rel(), JOIN_ANTI, JOIN_FULL, JOIN_INNER, JOIN_LEFT, JOIN_RIGHT, JOIN_RIGHT_ANTI, JOIN_RIGHT_SEMI, JOIN_SEMI, JOIN_UNIQUE_INNER, JOIN_UNIQUE_OUTER, SpecialJoinInfo::jointype, mark_dummy_rel(), SpecialJoinInfo::min_lefthand, SpecialJoinInfo::min_righthand, NIL, RelOptInfo::pathlist, RelOptInfo::relids, restriction_is_constant_false(), root, SpecialJoinInfo::syn_righthand, and try_partitionwise_join().

Referenced by make_join_rel(), and try_partitionwise_join().

◆ restriction_is_constant_false()

static bool restriction_is_constant_false ( List restrictlist,
RelOptInfo joinrel,
bool  only_pushed_down 
)
static

Definition at line 1428 of file joinrels.c.

1431{
1432 ListCell *lc;
1433
1434 /*
1435 * Despite the above comment, the restriction list we see here might
1436 * possibly have other members besides the FALSE constant, since other
1437 * quals could get "pushed down" to the outer join level. So we check
1438 * each member of the list.
1439 */
1440 foreach(lc, restrictlist)
1441 {
1443
1444 if (only_pushed_down && !RINFO_IS_PUSHED_DOWN(rinfo, joinrel->relids))
1445 continue;
1446
1447 if (rinfo->clause && IsA(rinfo->clause, Const))
1448 {
1449 Const *con = (Const *) rinfo->clause;
1450
1451 /* constant NULL is as good as constant FALSE for our purposes */
1452 if (con->constisnull)
1453 return true;
1454 if (!DatumGetBool(con->constvalue))
1455 return true;
1456 }
1457 }
1458 return false;
1459}
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:81
#define RINFO_IS_PUSHED_DOWN(rinfo, joinrelids)
Definition: pathnodes.h:2857
#define lfirst_node(type, lc)
Definition: pg_list.h:176
static bool DatumGetBool(Datum X)
Definition: postgres.h:95
Expr * clause
Definition: pathnodes.h:2700

References RestrictInfo::clause, DatumGetBool(), if(), IsA, lfirst_node, RelOptInfo::relids, and RINFO_IS_PUSHED_DOWN.

Referenced by populate_joinrel_with_paths().

◆ try_partitionwise_join()

static void try_partitionwise_join ( PlannerInfo root,
RelOptInfo rel1,
RelOptInfo rel2,
RelOptInfo joinrel,
SpecialJoinInfo parent_sjinfo,
List parent_restrictlist 
)
static

Definition at line 1482 of file joinrels.c.

1485{
1486 bool rel1_is_simple = IS_SIMPLE_REL(rel1);
1487 bool rel2_is_simple = IS_SIMPLE_REL(rel2);
1488 List *parts1 = NIL;
1489 List *parts2 = NIL;
1490 ListCell *lcr1 = NULL;
1491 ListCell *lcr2 = NULL;
1492 int cnt_parts;
1493
1494 /* Guard against stack overflow due to overly deep partition hierarchy. */
1496
1497 /* Nothing to do, if the join relation is not partitioned. */
1498 if (joinrel->part_scheme == NULL || joinrel->nparts == 0)
1499 return;
1500
1501 /* The join relation should have consider_partitionwise_join set. */
1503
1504 /*
1505 * We can not perform partitionwise join if either of the joining
1506 * relations is not partitioned.
1507 */
1508 if (!IS_PARTITIONED_REL(rel1) || !IS_PARTITIONED_REL(rel2))
1509 return;
1510
1512
1513 /* The joining relations should have consider_partitionwise_join set. */
1516
1517 /*
1518 * The partition scheme of the join relation should match that of the
1519 * joining relations.
1520 */
1521 Assert(joinrel->part_scheme == rel1->part_scheme &&
1522 joinrel->part_scheme == rel2->part_scheme);
1523
1524 Assert(!(joinrel->partbounds_merged && (joinrel->nparts <= 0)));
1525
1526 compute_partition_bounds(root, rel1, rel2, joinrel, parent_sjinfo,
1527 &parts1, &parts2);
1528
1529 if (joinrel->partbounds_merged)
1530 {
1531 lcr1 = list_head(parts1);
1532 lcr2 = list_head(parts2);
1533 }
1534
1535 /*
1536 * Create child-join relations for this partitioned join, if those don't
1537 * exist. Add paths to child-joins for a pair of child relations
1538 * corresponding to the given pair of parent relations.
1539 */
1540 for (cnt_parts = 0; cnt_parts < joinrel->nparts; cnt_parts++)
1541 {
1542 RelOptInfo *child_rel1;
1543 RelOptInfo *child_rel2;
1544 bool rel1_empty;
1545 bool rel2_empty;
1546 SpecialJoinInfo *child_sjinfo;
1547 List *child_restrictlist;
1548 RelOptInfo *child_joinrel;
1549 AppendRelInfo **appinfos;
1550 int nappinfos;
1551 Relids child_relids;
1552
1553 if (joinrel->partbounds_merged)
1554 {
1555 child_rel1 = lfirst_node(RelOptInfo, lcr1);
1556 child_rel2 = lfirst_node(RelOptInfo, lcr2);
1557 lcr1 = lnext(parts1, lcr1);
1558 lcr2 = lnext(parts2, lcr2);
1559 }
1560 else
1561 {
1562 child_rel1 = rel1->part_rels[cnt_parts];
1563 child_rel2 = rel2->part_rels[cnt_parts];
1564 }
1565
1566 rel1_empty = (child_rel1 == NULL || IS_DUMMY_REL(child_rel1));
1567 rel2_empty = (child_rel2 == NULL || IS_DUMMY_REL(child_rel2));
1568
1569 /*
1570 * Check for cases where we can prove that this segment of the join
1571 * returns no rows, due to one or both inputs being empty (including
1572 * inputs that have been pruned away entirely). If so just ignore it.
1573 * These rules are equivalent to populate_joinrel_with_paths's rules
1574 * for dummy input relations.
1575 */
1576 switch (parent_sjinfo->jointype)
1577 {
1578 case JOIN_INNER:
1579 case JOIN_SEMI:
1580 if (rel1_empty || rel2_empty)
1581 continue; /* ignore this join segment */
1582 break;
1583 case JOIN_LEFT:
1584 case JOIN_ANTI:
1585 if (rel1_empty)
1586 continue; /* ignore this join segment */
1587 break;
1588 case JOIN_FULL:
1589 if (rel1_empty && rel2_empty)
1590 continue; /* ignore this join segment */
1591 break;
1592 default:
1593 /* other values not expected here */
1594 elog(ERROR, "unrecognized join type: %d",
1595 (int) parent_sjinfo->jointype);
1596 break;
1597 }
1598
1599 /*
1600 * If a child has been pruned entirely then we can't generate paths
1601 * for it, so we have to reject partitionwise joining unless we were
1602 * able to eliminate this partition above.
1603 */
1604 if (child_rel1 == NULL || child_rel2 == NULL)
1605 {
1606 /*
1607 * Mark the joinrel as unpartitioned so that later functions treat
1608 * it correctly.
1609 */
1610 joinrel->nparts = 0;
1611 return;
1612 }
1613
1614 /*
1615 * If a leaf relation has consider_partitionwise_join=false, it means
1616 * that it's a dummy relation for which we skipped setting up tlist
1617 * expressions and adding EC members in set_append_rel_size(), so
1618 * again we have to fail here.
1619 */
1620 if (rel1_is_simple && !child_rel1->consider_partitionwise_join)
1621 {
1623 Assert(IS_DUMMY_REL(child_rel1));
1624 joinrel->nparts = 0;
1625 return;
1626 }
1627 if (rel2_is_simple && !child_rel2->consider_partitionwise_join)
1628 {
1630 Assert(IS_DUMMY_REL(child_rel2));
1631 joinrel->nparts = 0;
1632 return;
1633 }
1634
1635 /* We should never try to join two overlapping sets of rels. */
1636 Assert(!bms_overlap(child_rel1->relids, child_rel2->relids));
1637
1638 /*
1639 * Construct SpecialJoinInfo from parent join relations's
1640 * SpecialJoinInfo.
1641 */
1642 child_sjinfo = build_child_join_sjinfo(root, parent_sjinfo,
1643 child_rel1->relids,
1644 child_rel2->relids);
1645
1646 /* Find the AppendRelInfo structures */
1647 child_relids = bms_union(child_rel1->relids, child_rel2->relids);
1648 appinfos = find_appinfos_by_relids(root, child_relids,
1649 &nappinfos);
1650
1651 /*
1652 * Construct restrictions applicable to the child join from those
1653 * applicable to the parent join.
1654 */
1655 child_restrictlist =
1657 (Node *) parent_restrictlist,
1658 nappinfos, appinfos);
1659
1660 /* Find or construct the child join's RelOptInfo */
1661 child_joinrel = joinrel->part_rels[cnt_parts];
1662 if (!child_joinrel)
1663 {
1664 child_joinrel = build_child_join_rel(root, child_rel1, child_rel2,
1665 joinrel, child_restrictlist,
1666 child_sjinfo, nappinfos, appinfos);
1667 joinrel->part_rels[cnt_parts] = child_joinrel;
1668 joinrel->live_parts = bms_add_member(joinrel->live_parts, cnt_parts);
1669 joinrel->all_partrels = bms_add_members(joinrel->all_partrels,
1670 child_joinrel->relids);
1671 }
1672
1673 /* Assert we got the right one */
1674 Assert(bms_equal(child_joinrel->relids,
1675 adjust_child_relids(joinrel->relids,
1676 nappinfos, appinfos)));
1677
1678 /* And make paths for the child join */
1679 populate_joinrel_with_paths(root, child_rel1, child_rel2,
1680 child_joinrel, child_sjinfo,
1681 child_restrictlist);
1682
1683 /*
1684 * When there are thousands of partitions involved, this loop will
1685 * accumulate a significant amount of memory usage from objects that
1686 * are only needed within the loop. Free these local objects eagerly
1687 * at the end of each iteration.
1688 */
1689 pfree(appinfos);
1690 bms_free(child_relids);
1691 free_child_join_sjinfo(child_sjinfo, parent_sjinfo);
1692 }
1693}
static void compute_partition_bounds(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2, RelOptInfo *joinrel, SpecialJoinInfo *parent_sjinfo, List **parts1, List **parts2)
Definition: joinrels.c:1800
static SpecialJoinInfo * build_child_join_sjinfo(PlannerInfo *root, SpecialJoinInfo *parent_sjinfo, Relids left_relids, Relids right_relids)
Definition: joinrels.c:1704
static void free_child_join_sjinfo(SpecialJoinInfo *child_sjinfo, SpecialJoinInfo *parent_sjinfo)
Definition: joinrels.c:1758
#define IS_DUMMY_REL(r)
Definition: pathnodes.h:2083
#define IS_PARTITIONED_REL(rel)
Definition: pathnodes.h:1089
#define REL_HAS_ALL_PART_PROPS(rel)
Definition: pathnodes.h:1097
@ RELOPT_OTHER_MEMBER_REL
Definition: pathnodes.h:856
static ListCell * list_head(const List *l)
Definition: pg_list.h:128
static ListCell * lnext(const List *l, const ListCell *c)
Definition: pg_list.h:343
RelOptInfo * build_child_join_rel(PlannerInfo *root, RelOptInfo *outer_rel, RelOptInfo *inner_rel, RelOptInfo *parent_joinrel, List *restrictlist, SpecialJoinInfo *sjinfo, int nappinfos, AppendRelInfo **appinfos)
Definition: relnode.c:882
void check_stack_depth(void)
Definition: stack_depth.c:95
RelOptKind reloptkind
Definition: pathnodes.h:892
Bitmapset * live_parts
Definition: pathnodes.h:1066
bool consider_partitionwise_join
Definition: pathnodes.h:1026

References adjust_appendrel_attrs(), adjust_child_relids(), RelOptInfo::all_partrels, Assert(), bms_add_member(), bms_add_members(), bms_equal(), bms_free(), bms_overlap(), bms_union(), build_child_join_rel(), build_child_join_sjinfo(), check_stack_depth(), compute_partition_bounds(), RelOptInfo::consider_partitionwise_join, elog, ERROR, find_appinfos_by_relids(), free_child_join_sjinfo(), IS_DUMMY_REL, IS_PARTITIONED_REL, IS_SIMPLE_REL, JOIN_ANTI, JOIN_FULL, JOIN_INNER, JOIN_LEFT, JOIN_SEMI, SpecialJoinInfo::jointype, lfirst_node, list_head(), RelOptInfo::live_parts, lnext(), NIL, RelOptInfo::nparts, RelOptInfo::partbounds_merged, pfree(), populate_joinrel_with_paths(), REL_HAS_ALL_PART_PROPS, RelOptInfo::relids, RELOPT_OTHER_MEMBER_REL, RelOptInfo::reloptkind, and root.

Referenced by populate_joinrel_with_paths().