]> granicus.if.org Git - postgresql/blobdiff - src/backend/optimizer/util/relnode.c
Remove cvs keywords from all files.
[postgresql] / src / backend / optimizer / util / relnode.c
index 8080d43194f0086be08ee012895a14189419dd15..bffd705f183a7beb17c2081defc8676992455365 100644 (file)
  * relnode.c
  *       Relation-node lookup/construction routines
  *
- * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/optimizer/util/relnode.c,v 1.53 2003/11/29 19:51:51 pgsql Exp $
+ *       src/backend/optimizer/util/relnode.c
  *
  *-------------------------------------------------------------------------
  */
 #include "postgres.h"
 
 #include "optimizer/cost.h"
-#include "optimizer/joininfo.h"
 #include "optimizer/pathnode.h"
+#include "optimizer/paths.h"
+#include "optimizer/placeholder.h"
 #include "optimizer/plancat.h"
 #include "optimizer/restrictinfo.h"
-#include "optimizer/tlist.h"
 #include "parser/parsetree.h"
+#include "utils/hsearch.h"
 
 
-static RelOptInfo *make_base_rel(Query *root, int relid);
-static void build_joinrel_tlist(Query *root, RelOptInfo *joinrel);
-static List *build_joinrel_restrictlist(Query *root,
+typedef struct JoinHashEntry
+{
+       Relids          join_relids;    /* hash key --- MUST BE FIRST */
+       RelOptInfo *join_rel;
+} JoinHashEntry;
+
+static void build_joinrel_tlist(PlannerInfo *root, RelOptInfo *joinrel,
+                                       RelOptInfo *input_rel);
+static List *build_joinrel_restrictlist(PlannerInfo *root,
                                                   RelOptInfo *joinrel,
                                                   RelOptInfo *outer_rel,
-                                                  RelOptInfo *inner_rel,
-                                                  JoinType jointype);
+                                                  RelOptInfo *inner_rel);
 static void build_joinrel_joinlist(RelOptInfo *joinrel,
                                           RelOptInfo *outer_rel,
                                           RelOptInfo *inner_rel);
 static List *subbuild_joinrel_restrictlist(RelOptInfo *joinrel,
-                                                         List *joininfo_list);
-static void subbuild_joinrel_joinlist(RelOptInfo *joinrel,
-                                                 List *joininfo_list);
-
-
-/*
- * build_base_rel
- *       Construct a new base relation RelOptInfo, and put it in the query's
- *       base_rel_list.
- */
-void
-build_base_rel(Query *root, int relid)
-{
-       List       *rels;
-       RelOptInfo *rel;
-
-       /* Rel should not exist already */
-       foreach(rels, root->base_rel_list)
-       {
-               rel = (RelOptInfo *) lfirst(rels);
-               if (relid == rel->relid)
-                       elog(ERROR, "rel already exists");
-       }
-
-       /* It should not exist as an "other" rel, either */
-       foreach(rels, root->other_rel_list)
-       {
-               rel = (RelOptInfo *) lfirst(rels);
-               if (relid == rel->relid)
-                       elog(ERROR, "rel already exists as \"other\" rel");
-       }
-
-       /* No existing RelOptInfo for this base rel, so make a new one */
-       rel = make_base_rel(root, relid);
+                                                         List *joininfo_list,
+                                                         List *new_restrictlist);
+static List *subbuild_joinrel_joinlist(RelOptInfo *joinrel,
+                                                 List *joininfo_list,
+                                                 List *new_joininfo);
 
-       /* and add it to the list */
-       root->base_rel_list = lcons(rel, root->base_rel_list);
-}
 
 /*
- * build_other_rel
- *       Returns relation entry corresponding to 'relid', creating a new one
- *       if necessary.  This is for 'other' relations, which are much like
- *       base relations except that they live in a different list.
+ * build_simple_rel
+ *       Construct a new RelOptInfo for a base relation or 'other' relation.
  */
 RelOptInfo *
-build_other_rel(Query *root, int relid)
+build_simple_rel(PlannerInfo *root, int relid, RelOptKind reloptkind)
 {
-       List       *rels;
        RelOptInfo *rel;
+       RangeTblEntry *rte;
 
-       /* Already made? */
-       foreach(rels, root->other_rel_list)
-       {
-               rel = (RelOptInfo *) lfirst(rels);
-               if (relid == rel->relid)
-                       return rel;
-       }
-
-       /* It should not exist as a base rel */
-       foreach(rels, root->base_rel_list)
-       {
-               rel = (RelOptInfo *) lfirst(rels);
-               if (relid == rel->relid)
-                       elog(ERROR, "rel already exists as base rel");
-       }
-
-       /* No existing RelOptInfo for this other rel, so make a new one */
-       rel = make_base_rel(root, relid);
-
-       /* presently, must be an inheritance child rel */
-       Assert(rel->reloptkind == RELOPT_BASEREL);
-       rel->reloptkind = RELOPT_OTHER_CHILD_REL;
-
-       /* and add it to the list */
-       root->other_rel_list = lcons(rel, root->other_rel_list);
-
-       return rel;
-}
+       /* Rel should not exist already */
+       Assert(relid > 0 && relid < root->simple_rel_array_size);
+       if (root->simple_rel_array[relid] != NULL)
+               elog(ERROR, "rel %d already exists", relid);
 
-/*
- * make_base_rel
- *       Construct a base-relation RelOptInfo for the specified rangetable index.
- *
- * Common code for build_base_rel and build_other_rel.
- */
-static RelOptInfo *
-make_base_rel(Query *root, int relid)
-{
-       RelOptInfo *rel = makeNode(RelOptInfo);
-       RangeTblEntry *rte = rt_fetch(relid, root->rtable);
+       /* Fetch RTE for relation */
+       rte = root->simple_rte_array[relid];
+       Assert(rte != NULL);
 
-       rel->reloptkind = RELOPT_BASEREL;
+       rel = makeNode(RelOptInfo);
+       rel->reloptkind = reloptkind;
        rel->relids = bms_make_singleton(relid);
        rel->rows = 0;
        rel->width = 0;
-       FastListInit(&rel->reltargetlist);
+       rel->reltargetlist = NIL;
        rel->pathlist = NIL;
        rel->cheapest_startup_path = NULL;
        rel->cheapest_total_path = NULL;
        rel->cheapest_unique_path = NULL;
-       rel->pruneable = true;
        rel->relid = relid;
        rel->rtekind = rte->rtekind;
        /* min_attr, max_attr, attr_needed, attr_widths are set below */
@@ -143,11 +83,13 @@ make_base_rel(Query *root, int relid)
        rel->pages = 0;
        rel->tuples = 0;
        rel->subplan = NULL;
+       rel->subrtable = NIL;
+       rel->subrowmark = NIL;
        rel->baserestrictinfo = NIL;
        rel->baserestrictcost.startup = 0;
        rel->baserestrictcost.per_tuple = 0;
-       rel->outerjoinset = NULL;
        rel->joininfo = NIL;
+       rel->has_eclass_joins = false;
        rel->index_outer_relids = NULL;
        rel->index_inner_paths = NIL;
 
@@ -156,13 +98,25 @@ make_base_rel(Query *root, int relid)
        {
                case RTE_RELATION:
                        /* Table --- retrieve statistics from the system catalogs */
-                       get_relation_info(rte->relid, rel);
+                       get_relation_info(root, rte->relid, rte->inh, rel);
                        break;
                case RTE_SUBQUERY:
                case RTE_FUNCTION:
-                       /* Subquery or function --- need only set up attr range */
-                       rel->min_attr = 1;
-                       rel->max_attr = length(rte->eref->colnames);
+               case RTE_VALUES:
+               case RTE_CTE:
+
+                       /*
+                        * Subquery, function, or values list --- set up attr range and
+                        * arrays
+                        *
+                        * Note: 0 is included in range to support whole-row Vars
+                        */
+                       rel->min_attr = 0;
+                       rel->max_attr = list_length(rte->eref->colnames);
+                       rel->attr_needed = (Relids *)
+                               palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(Relids));
+                       rel->attr_widths = (int32 *)
+                               palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(int32));
                        break;
                default:
                        elog(ERROR, "unrecognized RTE kind: %d",
@@ -170,17 +124,30 @@ make_base_rel(Query *root, int relid)
                        break;
        }
 
-       if (rel->max_attr >= rel->min_attr)
-       {
-               rel->attr_needed = (Relids *)
-                       palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(Relids));
-               rel->attr_widths = (int32 *)
-                       palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(int32));
-       }
-       else
+       /* Save the finished struct in the query's simple_rel_array */
+       root->simple_rel_array[relid] = rel;
+
+       /*
+        * If this rel is an appendrel parent, recurse to build "other rel"
+        * RelOptInfos for its children.  They are "other rels" because they are
+        * not in the main join tree, but we will need RelOptInfos to plan access
+        * to them.
+        */
+       if (rte->inh)
        {
-               rel->attr_needed = NULL;
-               rel->attr_widths = NULL;
+               ListCell   *l;
+
+               foreach(l, root->append_rel_list)
+               {
+                       AppendRelInfo *appinfo = (AppendRelInfo *) lfirst(l);
+
+                       /* append_rel_list contains all append rels; ignore others */
+                       if (appinfo->parent_relid != relid)
+                               continue;
+
+                       (void) build_simple_rel(root, appinfo->child_relid,
+                                                                       RELOPT_OTHER_MEMBER_REL);
+               }
        }
 
        return rel;
@@ -188,26 +155,19 @@ make_base_rel(Query *root, int relid)
 
 /*
  * find_base_rel
- *       Find a base or other relation entry, which must already exist
- *       (since we'd have no idea which list to add it to).
+ *       Find a base or other relation entry, which must already exist.
  */
 RelOptInfo *
-find_base_rel(Query *root, int relid)
+find_base_rel(PlannerInfo *root, int relid)
 {
-       List       *rels;
        RelOptInfo *rel;
 
-       foreach(rels, root->base_rel_list)
-       {
-               rel = (RelOptInfo *) lfirst(rels);
-               if (relid == rel->relid)
-                       return rel;
-       }
+       Assert(relid > 0);
 
-       foreach(rels, root->other_rel_list)
+       if (relid < root->simple_rel_array_size)
        {
-               rel = (RelOptInfo *) lfirst(rels);
-               if (relid == rel->relid)
+               rel = root->simple_rel_array[relid];
+               if (rel)
                        return rel;
        }
 
@@ -216,26 +176,93 @@ find_base_rel(Query *root, int relid)
        return NULL;                            /* keep compiler quiet */
 }
 
+/*
+ * build_join_rel_hash
+ *       Construct the auxiliary hash table for join relations.
+ */
+static void
+build_join_rel_hash(PlannerInfo *root)
+{
+       HTAB       *hashtab;
+       HASHCTL         hash_ctl;
+       ListCell   *l;
+
+       /* Create the hash table */
+       MemSet(&hash_ctl, 0, sizeof(hash_ctl));
+       hash_ctl.keysize = sizeof(Relids);
+       hash_ctl.entrysize = sizeof(JoinHashEntry);
+       hash_ctl.hash = bitmap_hash;
+       hash_ctl.match = bitmap_match;
+       hash_ctl.hcxt = CurrentMemoryContext;
+       hashtab = hash_create("JoinRelHashTable",
+                                                 256L,
+                                                 &hash_ctl,
+                                       HASH_ELEM | HASH_FUNCTION | HASH_COMPARE | HASH_CONTEXT);
+
+       /* Insert all the already-existing joinrels */
+       foreach(l, root->join_rel_list)
+       {
+               RelOptInfo *rel = (RelOptInfo *) lfirst(l);
+               JoinHashEntry *hentry;
+               bool            found;
+
+               hentry = (JoinHashEntry *) hash_search(hashtab,
+                                                                                          &(rel->relids),
+                                                                                          HASH_ENTER,
+                                                                                          &found);
+               Assert(!found);
+               hentry->join_rel = rel;
+       }
+
+       root->join_rel_hash = hashtab;
+}
+
 /*
  * find_join_rel
  *       Returns relation entry corresponding to 'relids' (a set of RT indexes),
  *       or NULL if none exists.  This is for join relations.
- *
- * Note: there is probably no good reason for this to be called from
- * anywhere except build_join_rel, but keep it as a separate routine
- * just in case.
  */
-static RelOptInfo *
-find_join_rel(Query *root, Relids relids)
+RelOptInfo *
+find_join_rel(PlannerInfo *root, Relids relids)
 {
-       List       *joinrels;
+       /*
+        * Switch to using hash lookup when list grows "too long".      The threshold
+        * is arbitrary and is known only here.
+        */
+       if (!root->join_rel_hash && list_length(root->join_rel_list) > 32)
+               build_join_rel_hash(root);
 
-       foreach(joinrels, root->join_rel_list)
+       /*
+        * Use either hashtable lookup or linear search, as appropriate.
+        *
+        * Note: the seemingly redundant hashkey variable is used to avoid taking
+        * the address of relids; unless the compiler is exceedingly smart, doing
+        * so would force relids out of a register and thus probably slow down the
+        * list-search case.
+        */
+       if (root->join_rel_hash)
+       {
+               Relids          hashkey = relids;
+               JoinHashEntry *hentry;
+
+               hentry = (JoinHashEntry *) hash_search(root->join_rel_hash,
+                                                                                          &hashkey,
+                                                                                          HASH_FIND,
+                                                                                          NULL);
+               if (hentry)
+                       return hentry->join_rel;
+       }
+       else
        {
-               RelOptInfo *rel = (RelOptInfo *) lfirst(joinrels);
+               ListCell   *l;
 
-               if (bms_equal(rel->relids, relids))
-                       return rel;
+               foreach(l, root->join_rel_list)
+               {
+                       RelOptInfo *rel = (RelOptInfo *) lfirst(l);
+
+                       if (bms_equal(rel->relids, relids))
+                               return rel;
+               }
        }
 
        return NULL;
@@ -249,7 +276,7 @@ find_join_rel(Query *root, Relids relids)
  * 'joinrelids' is the Relids set that uniquely identifies the join
  * 'outer_rel' and 'inner_rel' are relation nodes for the relations to be
  *             joined
- * 'jointype': type of join (inner/outer)
+ * 'sjinfo': join context info
  * 'restrictlist_ptr': result variable.  If not NULL, *restrictlist_ptr
  *             receives the list of RestrictInfo nodes that apply to this
  *             particular pair of joinable relations.
@@ -258,11 +285,11 @@ find_join_rel(Query *root, Relids relids)
  * duplicated calculation of the restrictlist...
  */
 RelOptInfo *
-build_join_rel(Query *root,
+build_join_rel(PlannerInfo *root,
                           Relids joinrelids,
                           RelOptInfo *outer_rel,
                           RelOptInfo *inner_rel,
-                          JoinType jointype,
+                          SpecialJoinInfo *sjinfo,
                           List **restrictlist_ptr)
 {
        RelOptInfo *joinrel;
@@ -276,15 +303,14 @@ build_join_rel(Query *root,
        if (joinrel)
        {
                /*
-                * Yes, so we only need to figure the restrictlist for this
-                * particular pair of component relations.
+                * Yes, so we only need to figure the restrictlist for this particular
+                * pair of component relations.
                 */
                if (restrictlist_ptr)
                        *restrictlist_ptr = build_joinrel_restrictlist(root,
                                                                                                                   joinrel,
                                                                                                                   outer_rel,
-                                                                                                                  inner_rel,
-                                                                                                                  jointype);
+                                                                                                                  inner_rel);
                return joinrel;
        }
 
@@ -296,12 +322,11 @@ build_join_rel(Query *root,
        joinrel->relids = bms_copy(joinrelids);
        joinrel->rows = 0;
        joinrel->width = 0;
-       FastListInit(&joinrel->reltargetlist);
+       joinrel->reltargetlist = NIL;
        joinrel->pathlist = NIL;
        joinrel->cheapest_startup_path = NULL;
        joinrel->cheapest_total_path = NULL;
        joinrel->cheapest_unique_path = NULL;
-       joinrel->pruneable = true;
        joinrel->relid = 0;                     /* indicates not a baserel */
        joinrel->rtekind = RTE_JOIN;
        joinrel->min_attr = 0;
@@ -312,93 +337,145 @@ build_join_rel(Query *root,
        joinrel->pages = 0;
        joinrel->tuples = 0;
        joinrel->subplan = NULL;
+       joinrel->subrtable = NIL;
+       joinrel->subrowmark = NIL;
        joinrel->baserestrictinfo = NIL;
        joinrel->baserestrictcost.startup = 0;
        joinrel->baserestrictcost.per_tuple = 0;
-       joinrel->outerjoinset = NULL;
        joinrel->joininfo = NIL;
+       joinrel->has_eclass_joins = false;
        joinrel->index_outer_relids = NULL;
        joinrel->index_inner_paths = NIL;
 
        /*
-        * Create a new tlist containing just the vars that need to be output
-        * from this join (ie, are needed for higher joinclauses or final
-        * output).
+        * Create a new tlist containing just the vars that need to be output from
+        * this join (ie, are needed for higher joinclauses or final output).
+        *
+        * NOTE: the tlist order for a join rel will depend on which pair of outer
+        * and inner rels we first try to build it from.  But the contents should
+        * be the same regardless.
         */
-       build_joinrel_tlist(root, joinrel);
+       build_joinrel_tlist(root, joinrel, outer_rel);
+       build_joinrel_tlist(root, joinrel, inner_rel);
+       add_placeholders_to_joinrel(root, joinrel);
 
        /*
         * Construct restrict and join clause lists for the new joinrel. (The
-        * caller might or might not need the restrictlist, but I need it
-        * anyway for set_joinrel_size_estimates().)
+        * caller might or might not need the restrictlist, but I need it anyway
+        * for set_joinrel_size_estimates().)
         */
-       restrictlist = build_joinrel_restrictlist(root,
-                                                                                         joinrel,
-                                                                                         outer_rel,
-                                                                                         inner_rel,
-                                                                                         jointype);
+       restrictlist = build_joinrel_restrictlist(root, joinrel,
+                                                                                         outer_rel, inner_rel);
        if (restrictlist_ptr)
                *restrictlist_ptr = restrictlist;
        build_joinrel_joinlist(joinrel, outer_rel, inner_rel);
 
+       /*
+        * This is also the right place to check whether the joinrel has any
+        * pending EquivalenceClass joins.
+        */
+       joinrel->has_eclass_joins = has_relevant_eclass_joinclause(root, joinrel);
+
        /*
         * Set estimates of the joinrel's size.
         */
        set_joinrel_size_estimates(root, joinrel, outer_rel, inner_rel,
-                                                          jointype, restrictlist);
+                                                          sjinfo, restrictlist);
 
        /*
-        * Add the joinrel to the query's joinrel list.
+        * Add the joinrel to the query's joinrel list, and store it into the
+        * auxiliary hashtable if there is one.  NB: GEQO requires us to append
+        * the new joinrel to the end of the list!
         */
-       root->join_rel_list = lcons(joinrel, root->join_rel_list);
+       root->join_rel_list = lappend(root->join_rel_list, joinrel);
+
+       if (root->join_rel_hash)
+       {
+               JoinHashEntry *hentry;
+               bool            found;
+
+               hentry = (JoinHashEntry *) hash_search(root->join_rel_hash,
+                                                                                          &(joinrel->relids),
+                                                                                          HASH_ENTER,
+                                                                                          &found);
+               Assert(!found);
+               hentry->join_rel = joinrel;
+       }
+
+       /*
+        * Also, if dynamic-programming join search is active, add the new joinrel
+        * to the appropriate sublist.  Note: you might think the Assert on number
+        * of members should be for equality, but some of the level 1 rels might
+        * have been joinrels already, so we can only assert <=.
+        */
+       if (root->join_rel_level)
+       {
+               Assert(root->join_cur_level > 0);
+               Assert(root->join_cur_level <= bms_num_members(joinrel->relids));
+               root->join_rel_level[root->join_cur_level] =
+                       lappend(root->join_rel_level[root->join_cur_level], joinrel);
+       }
 
        return joinrel;
 }
 
 /*
  * build_joinrel_tlist
- *       Builds a join relation's target list.
+ *       Builds a join relation's target list from an input relation.
+ *       (This is invoked twice to handle the two input relations.)
  *
  * The join's targetlist includes all Vars of its member relations that
- * will still be needed above the join.
- *
- * In a former lifetime, this just merged the tlists of the two member
- * relations first presented.  While we could still do that, working from
- * lists of Vars would mean doing a find_base_rel lookup for each Var.
- * It seems more efficient to scan the list of base rels and collect the
- * needed vars directly from there.
+ * will still be needed above the join.  This subroutine adds all such
+ * Vars from the specified input rel's tlist to the join rel's tlist.
  *
  * We also compute the expected width of the join's output, making use
  * of data that was cached at the baserel level by set_rel_width().
  */
 static void
-build_joinrel_tlist(Query *root, RelOptInfo *joinrel)
+build_joinrel_tlist(PlannerInfo *root, RelOptInfo *joinrel,
+                                       RelOptInfo *input_rel)
 {
        Relids          relids = joinrel->relids;
-       List       *rels;
-       List       *vars;
-
-       FastListInit(&joinrel->reltargetlist);
-       joinrel->width = 0;
+       ListCell   *vars;
 
-       foreach(rels, root->base_rel_list)
+       foreach(vars, input_rel->reltargetlist)
        {
-               RelOptInfo *baserel = (RelOptInfo *) lfirst(rels);
+               Node       *origvar = (Node *) lfirst(vars);
+               Var                *var;
+               RelOptInfo *baserel;
+               int                     ndx;
 
-               if (!bms_is_member(baserel->relid, relids))
+               /*
+                * Ignore PlaceHolderVars in the input tlists; we'll make our own
+                * decisions about whether to copy them.
+                */
+               if (IsA(origvar, PlaceHolderVar))
                        continue;
 
-               foreach(vars, FastListValue(&baserel->reltargetlist))
+               /*
+                * We can't run into any child RowExprs here, but we could find a
+                * whole-row Var with a ConvertRowtypeExpr atop it.
+                */
+               var = (Var *) origvar;
+               while (!IsA(var, Var))
                {
-                       Var                *var = (Var *) lfirst(vars);
-                       int                     ndx = var->varattno - baserel->min_attr;
-
-                       if (bms_nonempty_difference(baserel->attr_needed[ndx], relids))
-                       {
-                               FastAppend(&joinrel->reltargetlist, var);
-                               Assert(baserel->attr_widths[ndx] > 0);
-                               joinrel->width += baserel->attr_widths[ndx];
-                       }
+                       if (IsA(var, ConvertRowtypeExpr))
+                               var = (Var *) ((ConvertRowtypeExpr *) var)->arg;
+                       else
+                               elog(ERROR, "unexpected node type in reltargetlist: %d",
+                                        (int) nodeTag(var));
+               }
+
+               /* Get the Var's original base rel */
+               baserel = find_base_rel(root, var->varno);
+
+               /* Is it still needed above this joinrel? */
+               ndx = var->varattno - baserel->min_attr;
+               if (bms_nonempty_difference(baserel->attr_needed[ndx], relids))
+               {
+                       /* Yup, add it to the output */
+                       joinrel->reltargetlist = lappend(joinrel->reltargetlist, origvar);
+                       joinrel->width += baserel->attr_widths[ndx];
                }
        }
 }
@@ -411,8 +488,8 @@ build_joinrel_tlist(Query *root, RelOptInfo *joinrel)
  *
  *       These routines are separate because the restriction list must be
  *       built afresh for each pair of input sub-relations we consider, whereas
- *       the join lists need only be computed once for any join RelOptInfo.
- *       The join lists are fully determined by the set of rels making up the
+ *       the join list need only be computed once for any join RelOptInfo.
+ *       The join list is fully determined by the set of rels making up the
  *       joinrel, so we should get the same results (up to ordering) from any
  *       candidate pair of sub-relations.      But the restriction list is whatever
  *       is not handled in the sub-relations, so it depends on which
@@ -420,25 +497,25 @@ build_joinrel_tlist(Query *root, RelOptInfo *joinrel)
  *
  *       If a join clause from an input relation refers to base rels still not
  *       present in the joinrel, then it is still a join clause for the joinrel;
- *       we put it into an appropriate JoinInfo list for the joinrel.  Otherwise,
+ *       we put it into the joininfo list for the joinrel.  Otherwise,
  *       the clause is now a restrict clause for the joined relation, and we
  *       return it to the caller of build_joinrel_restrictlist() to be stored in
  *       join paths made from this pair of sub-relations.      (It will not need to
  *       be considered further up the join tree.)
  *
- *       When building a restriction list, we eliminate redundant clauses.
- *       We don't try to do that for join clause lists, since the join clauses
- *       aren't really doing anything, just waiting to become part of higher
- *       levels' restriction lists.
+ *       In many case we will find the same RestrictInfos in both input
+ *       relations' joinlists, so be careful to eliminate duplicates.
+ *       Pointer equality should be a sufficient test for dups, since all
+ *       the various joinlist entries ultimately refer to RestrictInfos
+ *       pushed into them by distribute_restrictinfo_to_rels().
  *
  * 'joinrel' is a join relation node
  * 'outer_rel' and 'inner_rel' are a pair of relations that can be joined
  *             to form joinrel.
- * 'jointype' is the type of join used.
  *
  * build_joinrel_restrictlist() returns a list of relevant restrictinfos,
  * whereas build_joinrel_joinlist() stores its results in the joinrel's
- * joininfo lists.     One or the other must accept each given clause!
+ * joininfo list.  One or the other must accept each given clause!
  *
  * NB: Formerly, we made deep(!) copies of each input RestrictInfo to pass
  * up to the join relation.  I believe this is no longer necessary, because
@@ -446,35 +523,31 @@ build_joinrel_tlist(Query *root, RelOptInfo *joinrel)
  * the original nodes in the lists made for the join relation.
  */
 static List *
-build_joinrel_restrictlist(Query *root,
+build_joinrel_restrictlist(PlannerInfo *root,
                                                   RelOptInfo *joinrel,
                                                   RelOptInfo *outer_rel,
-                                                  RelOptInfo *inner_rel,
-                                                  JoinType jointype)
+                                                  RelOptInfo *inner_rel)
 {
        List       *result;
-       List       *rlist;
 
        /*
-        * Collect all the clauses that syntactically belong at this level.
+        * Collect all the clauses that syntactically belong at this level,
+        * eliminating any duplicates (important since we will see many of the
+        * same clauses arriving from both input relations).
         */
-       rlist = nconc(subbuild_joinrel_restrictlist(joinrel,
-                                                                                               outer_rel->joininfo),
-                                 subbuild_joinrel_restrictlist(joinrel,
-                                                                                               inner_rel->joininfo));
+       result = subbuild_joinrel_restrictlist(joinrel, outer_rel->joininfo, NIL);
+       result = subbuild_joinrel_restrictlist(joinrel, inner_rel->joininfo, result);
 
        /*
-        * Eliminate duplicate and redundant clauses.
-        *
-        * We must eliminate duplicates, since we will see many of the same
-        * clauses arriving from both input relations.  Also, if a clause is a
-        * mergejoinable clause, it's possible that it is redundant with
-        * previous clauses (see optimizer/README for discussion).      We detect
-        * that case and omit the redundant clause from the result list.
+        * Add on any clauses derived from EquivalenceClasses.  These cannot be
+        * redundant with the clauses in the joininfo lists, so don't bother
+        * checking.
         */
-       result = remove_redundant_join_clauses(root, rlist, jointype);
-
-       freeList(rlist);
+       result = list_concat(result,
+                                                generate_join_implied_equalities(root,
+                                                                                                                 joinrel,
+                                                                                                                 outer_rel,
+                                                                                                                 inner_rel));
 
        return result;
 }
@@ -484,85 +557,84 @@ build_joinrel_joinlist(RelOptInfo *joinrel,
                                           RelOptInfo *outer_rel,
                                           RelOptInfo *inner_rel)
 {
-       subbuild_joinrel_joinlist(joinrel, outer_rel->joininfo);
-       subbuild_joinrel_joinlist(joinrel, inner_rel->joininfo);
+       List       *result;
+
+       /*
+        * Collect all the clauses that syntactically belong above this level,
+        * eliminating any duplicates (important since we will see many of the
+        * same clauses arriving from both input relations).
+        */
+       result = subbuild_joinrel_joinlist(joinrel, outer_rel->joininfo, NIL);
+       result = subbuild_joinrel_joinlist(joinrel, inner_rel->joininfo, result);
+
+       joinrel->joininfo = result;
 }
 
 static List *
 subbuild_joinrel_restrictlist(RelOptInfo *joinrel,
-                                                         List *joininfo_list)
+                                                         List *joininfo_list,
+                                                         List *new_restrictlist)
 {
-       List       *restrictlist = NIL;
-       List       *xjoininfo;
+       ListCell   *l;
 
-       foreach(xjoininfo, joininfo_list)
+       foreach(l, joininfo_list)
        {
-               JoinInfo   *joininfo = (JoinInfo *) lfirst(xjoininfo);
+               RestrictInfo *rinfo = (RestrictInfo *) lfirst(l);
 
-               if (bms_is_subset(joininfo->unjoined_relids, joinrel->relids))
+               if (bms_is_subset(rinfo->required_relids, joinrel->relids))
                {
                        /*
-                        * Clauses in this JoinInfo list become restriction clauses
-                        * for the joinrel, since they refer to no outside rels.
-                        *
-                        * We must copy the list to avoid disturbing the input relation,
-                        * but we can use a shallow copy.
+                        * This clause becomes a restriction clause for the joinrel, since
+                        * it refers to no outside rels.  Add it to the list, being
+                        * careful to eliminate duplicates. (Since RestrictInfo nodes in
+                        * different joinlists will have been multiply-linked rather than
+                        * copied, pointer equality should be a sufficient test.)
                         */
-                       restrictlist = nconc(restrictlist,
-                                                                listCopy(joininfo->jinfo_restrictinfo));
+                       new_restrictlist = list_append_unique_ptr(new_restrictlist, rinfo);
                }
                else
                {
                        /*
-                        * These clauses are still join clauses at this level, so we
-                        * ignore them in this routine.
+                        * This clause is still a join clause at this level, so we ignore
+                        * it in this routine.
                         */
                }
        }
 
-       return restrictlist;
+       return new_restrictlist;
 }
 
-static void
+static List *
 subbuild_joinrel_joinlist(RelOptInfo *joinrel,
-                                                 List *joininfo_list)
+                                                 List *joininfo_list,
+                                                 List *new_joininfo)
 {
-       List       *xjoininfo;
+       ListCell   *l;
 
-       foreach(xjoininfo, joininfo_list)
+       foreach(l, joininfo_list)
        {
-               JoinInfo   *joininfo = (JoinInfo *) lfirst(xjoininfo);
-               Relids          new_unjoined_relids;
+               RestrictInfo *rinfo = (RestrictInfo *) lfirst(l);
 
-               new_unjoined_relids = bms_difference(joininfo->unjoined_relids,
-                                                                                        joinrel->relids);
-               if (bms_is_empty(new_unjoined_relids))
+               if (bms_is_subset(rinfo->required_relids, joinrel->relids))
                {
                        /*
-                        * Clauses in this JoinInfo list become restriction clauses
-                        * for the joinrel, since they refer to no outside rels. So we
-                        * can ignore them in this routine.
+                        * This clause becomes a restriction clause for the joinrel, since
+                        * it refers to no outside rels.  So we can ignore it in this
+                        * routine.
                         */
-                       bms_free(new_unjoined_relids);
                }
                else
                {
                        /*
-                        * These clauses are still join clauses at this level, so find
-                        * or make the appropriate JoinInfo item for the joinrel, and
-                        * add the clauses to it, eliminating duplicates.  (Since
-                        * RestrictInfo nodes are normally multiply-linked rather than
-                        * copied, pointer equality should be a sufficient test.  If
-                        * two equal() nodes should happen to sneak in, no great harm
-                        * is done --- they'll be detected by redundant-clause testing
-                        * when they reach a restriction list.)
+                        * This clause is still a join clause at this level, so add it to
+                        * the new joininfo list, being careful to eliminate duplicates.
+                        * (Since RestrictInfo nodes in different joinlists will have been
+                        * multiply-linked rather than copied, pointer equality should be
+                        * a sufficient test.)
                         */
-                       JoinInfo   *new_joininfo;
-
-                       new_joininfo = make_joininfo_node(joinrel, new_unjoined_relids);
-                       new_joininfo->jinfo_restrictinfo =
-                               set_ptrUnion(new_joininfo->jinfo_restrictinfo,
-                                                        joininfo->jinfo_restrictinfo);
+                       new_joininfo = list_append_unique_ptr(new_joininfo, rinfo);
                }
        }
+
+       return new_joininfo;
 }