|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* prepunion.c
|
|
|
|
* Routines to plan inheritance, union, and version queries
|
|
|
|
*
|
|
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* IDENTIFICATION
|
|
|
|
* $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.53 2000/09/29 18:21:34 tgl Exp $
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "postgres.h"
|
|
|
|
|
|
|
|
#include "optimizer/clauses.h"
|
|
|
|
#include "optimizer/plancat.h"
|
|
|
|
#include "optimizer/planner.h"
|
|
|
|
#include "optimizer/prep.h"
|
|
|
|
#include "optimizer/tlist.h"
|
|
|
|
#include "parser/parse_clause.h"
|
|
|
|
#include "parser/parsetree.h"
|
|
|
|
#include "utils/lsyscache.h"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
Index rt_index;
|
|
|
|
int sublevels_up;
|
|
|
|
Oid old_relid;
|
|
|
|
Oid new_relid;
|
|
|
|
} fix_parsetree_attnums_context;
|
|
|
|
|
|
|
|
static void fix_parsetree_attnums(Index rt_index, Oid old_relid,
|
|
|
|
Oid new_relid, Query *parsetree);
|
|
|
|
static bool fix_parsetree_attnums_walker(Node *node,
|
|
|
|
fix_parsetree_attnums_context *context);
|
|
|
|
static RangeTblEntry *new_rangetable_entry(Oid new_relid,
|
|
|
|
RangeTblEntry *old_entry);
|
|
|
|
static Append *make_append(List *appendplans, List *unionrtables,
|
|
|
|
Index rt_index,
|
|
|
|
List *inheritrtable, List *tlist);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* plan_union_queries
|
|
|
|
*
|
|
|
|
* Plans the queries for a given UNION.
|
|
|
|
*
|
|
|
|
* Returns an Append plan that combines the results of the unioned queries.
|
|
|
|
* Note that Append output is correct for UNION ALL, but caller still needs
|
|
|
|
* to take care of sort/unique processing if it's a plain UNION. We set or
|
|
|
|
* clear the Query's fields so that the right things will happen back in
|
|
|
|
* union_planner. (This control structure is an unholy mess...)
|
|
|
|
*/
|
|
|
|
Plan *
|
|
|
|
plan_union_queries(Query *parse)
|
|
|
|
{
|
|
|
|
List *union_plans = NIL,
|
|
|
|
*ulist,
|
|
|
|
*union_all_queries,
|
|
|
|
*union_rts,
|
|
|
|
*last_union = NIL,
|
|
|
|
*hold_sortClause = parse->sortClause;
|
|
|
|
bool union_all_found = false,
|
|
|
|
union_found = false,
|
|
|
|
last_union_all_flag = false;
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Do we need to split up our unions because we have UNION and UNION
|
|
|
|
* ALL?
|
|
|
|
*
|
|
|
|
* We are checking for the case of: SELECT 1 UNION SELECT 2 UNION SELECT
|
|
|
|
* 3 UNION ALL SELECT 4 UNION ALL SELECT 5
|
|
|
|
*
|
|
|
|
* where we have to do a DISTINCT on the output of the first three
|
|
|
|
* queries, then add the rest. If they have used UNION and UNION ALL,
|
|
|
|
* we grab all queries up to the last UNION query, make them their own
|
|
|
|
* UNION with the owner as the first query in the list. Then, we take
|
|
|
|
* the remaining queries, which is UNION ALL, and add them to the list
|
|
|
|
* of union queries.
|
|
|
|
*
|
|
|
|
* So the above query becomes:
|
|
|
|
*
|
|
|
|
* Append Node
|
|
|
|
* {
|
|
|
|
* Sort and Unique
|
|
|
|
* {
|
|
|
|
* Append Node
|
|
|
|
* {
|
|
|
|
* SELECT 1 This is really a sub-UNION.
|
|
|
|
* unionClause We run a DISTINCT on these.
|
|
|
|
* {
|
|
|
|
* SELECT 2
|
|
|
|
* SELECT 3
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* SELECT 4
|
|
|
|
* SELECT 5
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
foreach(ulist, parse->unionClause)
|
|
|
|
{
|
|
|
|
Query *union_query = lfirst(ulist);
|
|
|
|
|
|
|
|
if (union_query->unionall)
|
|
|
|
union_all_found = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
union_found = true;
|
|
|
|
last_union = ulist;
|
|
|
|
}
|
|
|
|
last_union_all_flag = union_query->unionall;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Is this a simple one */
|
|
|
|
if (!union_all_found ||
|
|
|
|
!union_found ||
|
|
|
|
/* A trailing UNION negates the effect of earlier UNION ALLs */
|
|
|
|
!last_union_all_flag)
|
|
|
|
{
|
|
|
|
List *hold_unionClause = parse->unionClause;
|
|
|
|
double tuple_fraction = -1.0; /* default processing */
|
|
|
|
|
|
|
|
/* we will do sorting later, so don't do it now */
|
|
|
|
if (!union_all_found ||
|
|
|
|
!last_union_all_flag)
|
|
|
|
{
|
|
|
|
parse->sortClause = NIL;
|
|
|
|
parse->distinctClause = NIL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* force lower-level planning to assume that all tuples will
|
|
|
|
* be retrieved, even if it sees a LIMIT in the query node.
|
|
|
|
*/
|
|
|
|
tuple_fraction = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
parse->unionClause = NIL; /* prevent recursion */
|
|
|
|
union_plans = lcons(union_planner(parse, tuple_fraction), NIL);
|
|
|
|
union_rts = lcons(parse->rtable, NIL);
|
|
|
|
|
|
|
|
foreach(ulist, hold_unionClause)
|
|
|
|
{
|
|
|
|
Query *union_query = lfirst(ulist);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* use subquery_planner here because the union'd queries have
|
|
|
|
* not been preprocessed yet. My goodness this is messy...
|
|
|
|
*/
|
|
|
|
union_plans = lappend(union_plans,
|
|
|
|
subquery_planner(union_query,
|
|
|
|
tuple_fraction));
|
|
|
|
union_rts = lappend(union_rts, union_query->rtable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have mixed unions and non-unions
|
|
|
|
*
|
|
|
|
* We need to restructure this to put the UNIONs on their own so we
|
|
|
|
* can do a DISTINCT.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* save off everthing past the last UNION */
|
|
|
|
union_all_queries = lnext(last_union);
|
|
|
|
|
|
|
|
/* clip off the list to remove the trailing UNION ALLs */
|
|
|
|
lnext(last_union) = NIL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Recursion, but UNION only. The last one is a UNION, so it will
|
|
|
|
* not come here in recursion.
|
|
|
|
*
|
|
|
|
* XXX is it OK to pass default -1 to union_planner in this path, or
|
|
|
|
* should we force a tuple_fraction value?
|
|
|
|
*/
|
|
|
|
union_plans = lcons(union_planner(parse, -1.0), NIL);
|
|
|
|
union_rts = lcons(parse->rtable, NIL);
|
|
|
|
|
|
|
|
/* Append the remaining UNION ALLs */
|
|
|
|
foreach(ulist, union_all_queries)
|
|
|
|
{
|
|
|
|
Query *union_all_query = lfirst(ulist);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* use subquery_planner here because the union'd queries have
|
|
|
|
* not been preprocessed yet. My goodness this is messy...
|
|
|
|
*/
|
|
|
|
union_plans = lappend(union_plans,
|
|
|
|
subquery_planner(union_all_query, -1.0));
|
|
|
|
union_rts = lappend(union_rts, union_all_query->rtable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have already split UNION and UNION ALL and we made it consistent */
|
|
|
|
if (!last_union_all_flag)
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Need SELECT DISTINCT behavior to implement UNION. Put back the
|
|
|
|
* held sortClause, add any missing columns to the sort clause,
|
|
|
|
* and set distinctClause properly.
|
|
|
|
*/
|
|
|
|
List *slitem;
|
|
|
|
|
|
|
|
parse->sortClause = addAllTargetsToSortList(hold_sortClause,
|
|
|
|
parse->targetList);
|
|
|
|
parse->distinctClause = NIL;
|
|
|
|
foreach(slitem, parse->sortClause)
|
|
|
|
{
|
|
|
|
SortClause *scl = (SortClause *) lfirst(slitem);
|
|
|
|
TargetEntry *tle = get_sortgroupclause_tle(scl, parse->targetList);
|
|
|
|
|
|
|
|
if (!tle->resdom->resjunk)
|
|
|
|
parse->distinctClause = lappend(parse->distinctClause,
|
|
|
|
copyObject(scl));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* needed so we don't take SELECT DISTINCT from the first query */
|
|
|
|
parse->distinctClause = NIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure we don't try to apply the first query's grouping stuff to
|
|
|
|
* the Append node, either. Basically we don't want union_planner to
|
|
|
|
* do anything when we return control, except add the top sort/unique
|
|
|
|
* nodes for DISTINCT processing if this wasn't UNION ALL, or the top
|
|
|
|
* sort node if it was UNION ALL with a user-provided sort clause.
|
|
|
|
*/
|
|
|
|
parse->groupClause = NULL;
|
|
|
|
parse->havingQual = NULL;
|
|
|
|
parse->hasAggs = false;
|
|
|
|
|
|
|
|
return (Plan *) make_append(union_plans,
|
|
|
|
union_rts,
|
|
|
|
0,
|
|
|
|
NIL,
|
|
|
|
parse->targetList);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* plan_inherit_queries
|
|
|
|
* Plans the queries for an inheritance tree rooted at a parent relation.
|
|
|
|
*
|
|
|
|
* Inputs:
|
|
|
|
* root = parent parse tree
|
|
|
|
* tlist = target list for inheritance subqueries (not same as parent's!)
|
|
|
|
* rt_index = rangetable index for current inheritance item
|
|
|
|
* inheritors = list of OIDs of the target rel plus all its descendants
|
|
|
|
*
|
|
|
|
* Returns an APPEND node that forms the result of performing the given
|
|
|
|
* query for each member relation of the inheritance group.
|
|
|
|
*
|
|
|
|
* If grouping, aggregation, or sorting is specified in the parent plan,
|
|
|
|
* the subplans should not do any of those steps --- we must do those
|
|
|
|
* operations just once above the APPEND node. The given tlist has been
|
|
|
|
* modified appropriately to remove group/aggregate expressions, but the
|
|
|
|
* Query node still has the relevant fields set. We remove them in the
|
|
|
|
* copies used for subplans.
|
|
|
|
*
|
|
|
|
* NOTE: this can be invoked recursively if more than one inheritance wildcard
|
|
|
|
* is present. At each level of recursion, the first wildcard remaining in
|
|
|
|
* the rangetable is expanded.
|
|
|
|
*
|
|
|
|
* NOTE: don't bother optimizing this routine for the case that the target
|
|
|
|
* rel has no children. We won't get here unless find_inheritable_rt_entry
|
|
|
|
* found at least two members in the inheritance group, so an APPEND is
|
|
|
|
* certainly necessary.
|
|
|
|
*/
|
|
|
|
Plan *
|
|
|
|
plan_inherit_queries(Query *root, List *tlist,
|
|
|
|
Index rt_index, List *inheritors)
|
|
|
|
{
|
|
|
|
RangeTblEntry *rt_entry = rt_fetch(rt_index, root->rtable);
|
|
|
|
List *union_plans = NIL;
|
|
|
|
List *union_rtentries = NIL;
|
|
|
|
List *save_tlist = root->targetList;
|
|
|
|
double tuple_fraction;
|
|
|
|
List *i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Avoid making copies of the root's tlist, which we aren't going to
|
|
|
|
* use anyway (we are going to make copies of the passed tlist,
|
|
|
|
* instead). This is purely a space-saving hack. Note we restore
|
|
|
|
* the root's tlist before exiting.
|
|
|
|
*/
|
|
|
|
root->targetList = NIL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are going to need sorting or grouping at the top level, force
|
|
|
|
* lower-level planners to assume that all tuples will be retrieved.
|
|
|
|
*/
|
|
|
|
if (root->distinctClause || root->sortClause ||
|
|
|
|
root->groupClause || root->hasAggs)
|
|
|
|
tuple_fraction = 0.0; /* will need all tuples from each subplan */
|
|
|
|
else
|
|
|
|
tuple_fraction = -1.0; /* default behavior is OK (I think) */
|
|
|
|
|
|
|
|
foreach(i, inheritors)
|
|
|
|
{
|
|
|
|
Oid relid = lfirsti(i);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make a modifiable copy of the original query, and replace the
|
|
|
|
* target rangetable entry in it with a new one identifying this
|
|
|
|
* child table. The new rtentry is marked inh = false --- this
|
|
|
|
* is essential to prevent infinite recursion when the subquery
|
|
|
|
* is rescanned by find_inheritable_rt_entry!
|
|
|
|
*/
|
|
|
|
Query *new_root = copyObject(root);
|
|
|
|
RangeTblEntry *new_rt_entry = new_rangetable_entry(relid,
|
|
|
|
rt_entry);
|
|
|
|
|
|
|
|
new_rt_entry->inh = false;
|
|
|
|
rt_store(rt_index, new_root->rtable, new_rt_entry);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert (a modifiable copy of) the desired simplified tlist into
|
|
|
|
* the subquery
|
|
|
|
*/
|
|
|
|
new_root->targetList = copyObject(tlist);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear the sorting and grouping qualifications in the subquery,
|
|
|
|
* so that sorting will only be done once after append
|
|
|
|
*/
|
|
|
|
new_root->distinctClause = NIL;
|
|
|
|
new_root->sortClause = NIL;
|
|
|
|
new_root->groupClause = NIL;
|
|
|
|
new_root->havingQual = NULL;
|
|
|
|
new_root->limitOffset = NULL; /* LIMIT's probably unsafe too */
|
|
|
|
new_root->limitCount = NULL;
|
|
|
|
new_root->hasAggs = false; /* shouldn't be any left ... */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update attribute numbers in case child has different ordering
|
|
|
|
* of columns than parent (as can happen after ALTER TABLE).
|
|
|
|
*
|
|
|
|
* XXX This is a crock, and it doesn't really work. It'd be better
|
|
|
|
* to fix ALTER TABLE to preserve consistency of attribute
|
|
|
|
* numbering.
|
|
|
|
*/
|
|
|
|
fix_parsetree_attnums(rt_index,
|
|
|
|
rt_entry->relid,
|
|
|
|
relid,
|
|
|
|
new_root);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Plan the subquery by recursively calling union_planner().
|
|
|
|
* Add plan and child rtentry to lists for APPEND.
|
|
|
|
*/
|
|
|
|
union_plans = lappend(union_plans,
|
|
|
|
union_planner(new_root, tuple_fraction));
|
|
|
|
union_rtentries = lappend(union_rtentries, new_rt_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore root's tlist */
|
|
|
|
root->targetList = save_tlist;
|
|
|
|
|
|
|
|
/* Construct the finished Append plan. */
|
|
|
|
return (Plan *) make_append(union_plans,
|
|
|
|
NIL,
|
|
|
|
rt_index,
|
|
|
|
union_rtentries,
|
|
|
|
((Plan *) lfirst(union_plans))->targetlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find_all_inheritors -
|
|
|
|
* Returns an integer list of relids including the given rel plus
|
|
|
|
* all relations that inherit from it, directly or indirectly.
|
|
|
|
*/
|
|
|
|
List *
|
|
|
|
find_all_inheritors(Oid parentrel)
|
|
|
|
{
|
|
|
|
List *examined_relids = NIL;
|
|
|
|
List *unexamined_relids = lconsi(parentrel, NIL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* While the queue of unexamined relids is nonempty, remove the first
|
|
|
|
* element, mark it examined, and find its direct descendants. NB:
|
|
|
|
* cannot use foreach(), since we modify the queue inside loop.
|
|
|
|
*/
|
|
|
|
while (unexamined_relids != NIL)
|
|
|
|
{
|
|
|
|
Oid currentrel = lfirsti(unexamined_relids);
|
|
|
|
List *currentchildren;
|
|
|
|
|
|
|
|
unexamined_relids = lnext(unexamined_relids);
|
|
|
|
examined_relids = lappendi(examined_relids, currentrel);
|
|
|
|
currentchildren = find_inheritance_children(currentrel);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add to the queue only those children not already seen.
|
|
|
|
* This avoids making duplicate entries in case of multiple
|
|
|
|
* inheritance paths from the same parent. (It'll also keep
|
|
|
|
* us from getting into an infinite loop, though theoretically
|
|
|
|
* there can't be any cycles in the inheritance graph anyway.)
|
|
|
|
*/
|
|
|
|
currentchildren = set_differencei(currentchildren, examined_relids);
|
|
|
|
unexamined_relids = set_unioni(unexamined_relids, currentchildren);
|
|
|
|
}
|
|
|
|
|
|
|
|
return examined_relids;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find_inheritable_rt_entry -
|
|
|
|
* Given a rangetable, find the first rangetable entry that represents
|
|
|
|
* an inheritance set.
|
|
|
|
*
|
|
|
|
* If successful, set *rt_index to the index (1..n) of the entry,
|
|
|
|
* set *inheritors to a list of the relation OIDs of the set,
|
|
|
|
* and return TRUE.
|
|
|
|
*
|
|
|
|
* If there is no entry that requires inheritance processing,
|
|
|
|
* return FALSE.
|
|
|
|
*
|
|
|
|
* NOTE: We return the inheritors list so that plan_inherit_queries doesn't
|
|
|
|
* have to compute it again.
|
|
|
|
*
|
|
|
|
* NOTE: We clear the inh flag in any entries that have it set but turn
|
|
|
|
* out not to have any actual inheritance children. This is an efficiency
|
|
|
|
* hack to avoid having to repeat the inheritance checks if the list is
|
|
|
|
* scanned again (as will happen during expansion of any subsequent entry
|
|
|
|
* that does have inheritance children). Although modifying the input
|
|
|
|
* rangetable in-place may seem uncool, there's no reason not to do it,
|
|
|
|
* since any re-examination of the entry would just come to the same
|
|
|
|
* conclusion that the table has no children.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
find_inheritable_rt_entry(List *rangetable,
|
|
|
|
Index *rt_index,
|
|
|
|
List **inheritors)
|
|
|
|
{
|
|
|
|
Index count = 0;
|
|
|
|
List *temp;
|
|
|
|
|
|
|
|
foreach(temp, rangetable)
|
|
|
|
{
|
|
|
|
RangeTblEntry *rt_entry = (RangeTblEntry *) lfirst(temp);
|
|
|
|
List *inhs;
|
|
|
|
|
|
|
|
count++;
|
|
|
|
/* Ignore non-inheritable RT entries */
|
|
|
|
if (! rt_entry->inh)
|
|
|
|
continue;
|
|
|
|
/* Fast path for common case of childless table */
|
|
|
|
if (! has_subclass(rt_entry->relid))
|
|
|
|
{
|
|
|
|
rt_entry->inh = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Scan for all members of inheritance set */
|
|
|
|
inhs = find_all_inheritors(rt_entry->relid);
|
|
|
|
/*
|
|
|
|
* Check that there's at least one descendant, else treat as
|
|
|
|
* no-child case. This could happen despite above has_subclass()
|
|
|
|
* check, if table once had a child but no longer does.
|
|
|
|
*/
|
|
|
|
if (lnext(inhs) == NIL)
|
|
|
|
{
|
|
|
|
rt_entry->inh = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* OK, found our boy */
|
|
|
|
*rt_index = count;
|
|
|
|
*inheritors = inhs;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* new_rangetable_entry -
|
|
|
|
* Replaces the name and relid of 'old_entry' with the values for
|
|
|
|
* 'new_relid'.
|
|
|
|
*
|
|
|
|
* Returns a copy of 'old_entry' with the parameters substituted.
|
|
|
|
*/
|
|
|
|
static RangeTblEntry *
|
|
|
|
new_rangetable_entry(Oid new_relid, RangeTblEntry *old_entry)
|
|
|
|
{
|
|
|
|
RangeTblEntry *new_entry = copyObject(old_entry);
|
|
|
|
|
|
|
|
/* Replace relation real name and OID, but not the reference name */
|
|
|
|
new_entry->relname = get_rel_name(new_relid);
|
|
|
|
new_entry->relid = new_relid;
|
|
|
|
return new_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fix_parsetree_attnums
|
|
|
|
* Replaces attribute numbers from the relation represented by
|
|
|
|
* 'old_relid' in 'parsetree' with the attribute numbers from
|
|
|
|
* 'new_relid'.
|
|
|
|
*
|
|
|
|
* The parsetree is MODIFIED IN PLACE. This is OK only because
|
|
|
|
* plan_inherit_queries made a copy of the tree for us to hack upon.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
fix_parsetree_attnums(Index rt_index,
|
|
|
|
Oid old_relid,
|
|
|
|
Oid new_relid,
|
|
|
|
Query *parsetree)
|
|
|
|
{
|
|
|
|
fix_parsetree_attnums_context context;
|
|
|
|
|
|
|
|
if (old_relid == new_relid)
|
|
|
|
return; /* no work needed for parent rel itself */
|
|
|
|
|
|
|
|
context.rt_index = rt_index;
|
|
|
|
context.old_relid = old_relid;
|
|
|
|
context.new_relid = new_relid;
|
|
|
|
context.sublevels_up = 0;
|
|
|
|
|
|
|
|
query_tree_walker(parsetree,
|
|
|
|
fix_parsetree_attnums_walker,
|
|
|
|
(void *) &context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust varnos for child tables. This routine makes it possible for
|
|
|
|
* child tables to have different column positions for the "same" attribute
|
|
|
|
* as a parent, which helps ALTER TABLE ADD COLUMN. Unfortunately this isn't
|
|
|
|
* nearly enough to make it work transparently; there are other places where
|
|
|
|
* things fall down if children and parents don't have the same column numbers
|
|
|
|
* for inherited attributes. It'd be better to rip this code out and fix
|
|
|
|
* ALTER TABLE...
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
fix_parsetree_attnums_walker(Node *node,
|
|
|
|
fix_parsetree_attnums_context *context)
|
|
|
|
{
|
|
|
|
if (node == NULL)
|
|
|
|
return false;
|
|
|
|
if (IsA(node, Var))
|
|
|
|
{
|
|
|
|
Var *var = (Var *) node;
|
|
|
|
|
|
|
|
if (var->varlevelsup == context->sublevels_up &&
|
|
|
|
var->varno == context->rt_index &&
|
|
|
|
var->varattno > 0)
|
|
|
|
{
|
|
|
|
var->varattno = get_attnum(context->new_relid,
|
|
|
|
get_attname(context->old_relid,
|
|
|
|
var->varattno));
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (IsA(node, Query))
|
|
|
|
{
|
|
|
|
/* Recurse into subselects */
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
context->sublevels_up++;
|
|
|
|
result = query_tree_walker((Query *) node,
|
|
|
|
fix_parsetree_attnums_walker,
|
|
|
|
(void *) context);
|
|
|
|
context->sublevels_up--;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return expression_tree_walker(node, fix_parsetree_attnums_walker,
|
|
|
|
(void *) context);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Append *
|
|
|
|
make_append(List *appendplans,
|
|
|
|
List *unionrtables,
|
|
|
|
Index rt_index,
|
|
|
|
List *inheritrtable,
|
|
|
|
List *tlist)
|
|
|
|
{
|
|
|
|
Append *node = makeNode(Append);
|
|
|
|
List *subnode;
|
|
|
|
|
|
|
|
node->appendplans = appendplans;
|
|
|
|
node->unionrtables = unionrtables;
|
|
|
|
node->inheritrelid = rt_index;
|
|
|
|
node->inheritrtable = inheritrtable;
|
|
|
|
node->plan.startup_cost = 0;
|
|
|
|
node->plan.total_cost = 0;
|
|
|
|
node->plan.plan_rows = 0;
|
|
|
|
node->plan.plan_width = 0;
|
|
|
|
foreach(subnode, appendplans)
|
|
|
|
{
|
|
|
|
Plan *subplan = (Plan *) lfirst(subnode);
|
|
|
|
|
|
|
|
if (subnode == appendplans) /* first node? */
|
|
|
|
node->plan.startup_cost = subplan->startup_cost;
|
|
|
|
node->plan.total_cost += subplan->total_cost;
|
|
|
|
node->plan.plan_rows += subplan->plan_rows;
|
|
|
|
if (node->plan.plan_width < subplan->plan_width)
|
|
|
|
node->plan.plan_width = subplan->plan_width;
|
|
|
|
}
|
|
|
|
node->plan.state = (EState *) NULL;
|
|
|
|
node->plan.targetlist = tlist;
|
|
|
|
node->plan.qual = NIL;
|
|
|
|
node->plan.lefttree = (Plan *) NULL;
|
|
|
|
node->plan.righttree = (Plan *) NULL;
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|