89 int oldnatts = old_tupdesc->
natts;
90 int newnatts = new_tupdesc->
natts;
96 appinfo->parent_colnos = pcolnos =
99 for (old_attno = 0; old_attno < oldnatts; old_attno++)
108 if (att->attisdropped)
115 atttypid = att->atttypid;
116 atttypmod = att->atttypmod;
117 attcollation = att->attcollation;
123 if (oldrelation == newrelation)
131 pcolnos[old_attno] = old_attno + 1;
144 if (new_attno >= newnatts ||
145 (att =
TupleDescAttr(new_tupdesc, new_attno))->attisdropped ||
152 elog(
ERROR,
"could not find inherited attribute \"%s\" of relation \"%s\"",
155 Assert(new_attno >= 0 && new_attno < newnatts);
162 if (atttypid != att->atttypid || atttypmod != att->atttypmod)
163 elog(
ERROR,
"attribute \"%s\" of relation \"%s\" does not match parent's type",
165 if (attcollation != att->attcollation)
166 elog(
ERROR,
"attribute \"%s\" of relation \"%s\" does not match parent's collation",
175 pcolnos[new_attno] = old_attno + 1;
206 Assert(nappinfos >= 1 && appinfos != NULL);
254 for (cnt = 0; cnt < nappinfos; cnt++)
258 appinfo = appinfos[cnt];
268 var->varattnosyn = 0;
274 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
279 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
282 ((
Var *) newnode)->varnullingrels = var->varnullingrels;
283 else if (var->varnullingrels != NULL)
284 elog(
ERROR,
"failed to apply nullingrels to a non-Var");
332 rowexpr->
args = fields;
333 rowexpr->row_typeid = var->vartype;
338 if (var->varnullingrels != NULL)
339 elog(
ERROR,
"failed to apply nullingrels to a non-Var");
341 return (
Node *) rowexpr;
357 Index leaf_relid = 0;
359 for (cnt = 0; cnt < nappinfos; cnt++)
365 elog(
ERROR,
"cannot translate to multiple leaf relids");
380 var->
varno = leaf_relid;
382 Assert(var->varnullingrels == NULL);
385 var->varattnosyn = 0;
405 for (cnt = 0; cnt < nappinfos; cnt++)
415 return (
Node *) cexpr;
429 nappinfos, appinfos);
458 newinfo->orclause = (
Expr *)
484 newinfo->eval_cost.startup = -1;
485 newinfo->norm_selec = -1;
486 newinfo->outer_selec = -1;
487 newinfo->left_em = NULL;
488 newinfo->right_em = NULL;
489 newinfo->scansel_cache =
NIL;
490 newinfo->left_bucketsize = -1;
491 newinfo->right_bucketsize = -1;
492 newinfo->left_mcvfreq = -1;
493 newinfo->right_mcvfreq = -1;
495 return (
Node *) newinfo;
529 if (childrel->parent != parentrel)
531 if (childrel->parent)
536 elog(
ERROR,
"childrel is not a child of parentrel");
559 for (cnt = 0; cnt < nappinfos; cnt++)
603 if (childrel->parent != parentrel)
605 if (childrel->parent)
610 elog(
ERROR,
"childrel is not a child of parentrel");
643 if (parentattno <= 0 ||
645 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
648 if (childvar == NULL || !
IsA(childvar,
Var))
649 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
665 AppendRelInfo *appinfo = root->append_rel_array[child_relid];
668 elog(
ERROR,
"child rel %d not found in append_rel_array", child_relid);
691 List **processed_tlist,
List **update_colnos)
695 if (relid == root->
parse->resultRelation)
708 *processed_tlist = (
List *)
717 root->
parse->resultRelation);
754 elog(
ERROR,
"child rel %d not found in append_rel_array",
i);
757 appinfos[cnt++] = appinfo;
790 Index rtindex,
const char *rowid_name)
801 Assert(orig_var->varnullingrels == NULL);
808 if (rtindex == root->
parse->resultRelation)
823 Assert(root->append_rel_array[rtindex] != NULL);
838 if (strcmp(rowid_name, ridinfo->
rowidname) != 0)
849 elog(
ERROR,
"conflicting uses of row-identity name \"%s\"",
889 char relkind = target_relation->
rd_rel->relkind;
895 relkind == RELKIND_RELATION ||
896 relkind == RELKIND_MATVIEW ||
897 relkind == RELKIND_PARTITIONED_TABLE)
911 else if (relkind == RELKIND_FOREIGN_TABLE)
922 target_rte, target_relation);
969 int result_relation =
parse->resultRelation;
984 if (!target_rte->
inh)
1009 target_rte, target_relation);
void distribute_row_identity_vars(PlannerInfo *root)
void get_translated_update_targetlist(PlannerInfo *root, Index relid, List **processed_tlist, List **update_colnos)
AppendRelInfo ** find_appinfos_by_relids(PlannerInfo *root, Relids relids, int *nappinfos)
static void make_inh_translation_list(Relation oldrelation, Relation newrelation, Index newvarno, AppendRelInfo *appinfo)
Relids adjust_child_relids_multilevel(PlannerInfo *root, Relids relids, RelOptInfo *childrel, RelOptInfo *parentrel)
Node * adjust_appendrel_attrs(PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
void add_row_identity_columns(PlannerInfo *root, Index rtindex, RangeTblEntry *target_rte, Relation target_relation)
static Node * adjust_appendrel_attrs_mutator(Node *node, adjust_appendrel_attrs_context *context)
AppendRelInfo * make_append_rel_info(Relation parentrel, Relation childrel, Index parentRTindex, Index childRTindex)
Relids adjust_child_relids(Relids relids, int nappinfos, AppendRelInfo **appinfos)
Node * adjust_appendrel_attrs_multilevel(PlannerInfo *root, Node *node, RelOptInfo *childrel, RelOptInfo *parentrel)
List * adjust_inherited_attnums(List *attnums, AppendRelInfo *context)
List * adjust_inherited_attnums_multilevel(PlannerInfo *root, List *attnums, Index child_relid, Index top_parent_relid)
void add_row_identity_var(PlannerInfo *root, Var *orig_var, Index rtindex, const char *rowid_name)
#define InvalidAttrNumber
int bms_next_member(const Bitmapset *a, int prevbit)
int bms_num_members(const Bitmapset *a)
bool bms_is_member(int x, const Bitmapset *a)
Bitmapset * bms_make_singleton(int x)
Bitmapset * bms_add_member(Bitmapset *a, int x)
Bitmapset * bms_del_member(Bitmapset *a, int x)
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Bitmapset * bms_copy(const Bitmapset *a)
#define OidIsValid(objectId)
elog(ERROR, "%s: %s", p2, msg)
bool equal(const void *a, const void *b)
FdwRoutine * GetFdwRoutineForRelation(Relation relation, bool makecopy)
#define HeapTupleIsValid(tuple)
void build_base_rel_tlists(PlannerInfo *root, List *final_tlist)
if(TABLE==NULL||TABLE_index==NULL)
Assert(fmt[strlen(fmt) - 1] !='\n')
List * lappend(List *list, void *datum)
List * lappend_int(List *list, int datum)
char * get_rel_name(Oid relid)
int32 get_typavgwidth(Oid typid, int32 typmod)
TargetEntry * makeTargetEntry(Expr *expr, AttrNumber resno, char *resname, bool resjunk)
Const * makeNullConst(Oid consttype, int32 consttypmod, Oid constcollid)
Var * makeVar(int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
char * pstrdup(const char *in)
void pfree(void *pointer)
void * palloc0(Size size)
Oid exprType(const Node *expr)
int32 exprTypmod(const Node *expr)
#define expression_tree_mutator(n, m, c)
#define IsA(nodeptr, _type_)
#define rt_fetch(rangetable_index, rangetable)
FormData_pg_attribute * Form_pg_attribute
static int list_length(const List *l)
static void * list_nth(const List *list, int n)
static struct subre * parse(struct vars *v, int stopper, int type, struct state *init, struct state *final)
#define RelationGetRelid(relation)
#define RelationGetDescr(relation)
#define RelationGetRelationName(relation)
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
RelOptInfo * find_base_rel_ignore_join(PlannerInfo *root, int relid)
AddForeignUpdateTargets_function AddForeignUpdateTargets
Relids leaf_result_relids
struct PathTarget * reltarget
bool trig_delete_before_row
bool trig_delete_after_row
AppendRelInfo ** appinfos
#define SelfItemPointerAttributeNumber
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCacheAttName(Oid relid, const char *attname)
void table_close(Relation relation, LOCKMODE lockmode)
Relation table_open(Oid relationId, LOCKMODE lockmode)
#define TupleDescAttr(tupdesc, i)