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)
164 (
errcode(ERRCODE_INVALID_COLUMN_DEFINITION),
165 errmsg(
"attribute \"%s\" of relation \"%s\" does not match parent's type",
167 if (attcollation != att->attcollation)
169 (
errcode(ERRCODE_INVALID_COLUMN_DEFINITION),
170 errmsg(
"attribute \"%s\" of relation \"%s\" does not match parent's collation",
179 pcolnos[new_attno] = old_attno + 1;
210 Assert(nappinfos >= 1 && appinfos != NULL);
265 for (cnt = 0; cnt < nappinfos; cnt++)
269 appinfo = appinfos[cnt];
279 var->varattnosyn = 0;
285 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
290 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
295 ((
Var *) newnode)->varnullingrels = var->varnullingrels;
300 elog(
ERROR,
"failed to apply returningtype to a non-Var");
301 if (var->varnullingrels != NULL)
302 elog(
ERROR,
"failed to apply nullingrels to a non-Var");
351 rowexpr->
args = fields;
352 rowexpr->row_typeid = var->vartype;
354 rowexpr->colnames =
copyObject(rte->eref->colnames);
358 elog(
ERROR,
"failed to apply returningtype to a non-Var");
359 if (var->varnullingrels != NULL)
360 elog(
ERROR,
"failed to apply nullingrels to a non-Var");
362 return (
Node *) rowexpr;
378 Index leaf_relid = 0;
380 for (cnt = 0; cnt < nappinfos; cnt++)
386 elog(
ERROR,
"cannot translate to multiple leaf relids");
401 var->
varno = leaf_relid;
403 Assert(var->varnullingrels == NULL);
406 var->varattnosyn = 0;
426 for (cnt = 0; cnt < nappinfos; cnt++)
436 return (
Node *) cexpr;
450 nappinfos, appinfos);
479 newinfo->orclause = (
Expr *)
505 newinfo->eval_cost.startup = -1;
506 newinfo->norm_selec = -1;
507 newinfo->outer_selec = -1;
508 newinfo->left_em = NULL;
509 newinfo->right_em = NULL;
510 newinfo->scansel_cache =
NIL;
511 newinfo->left_bucketsize = -1;
512 newinfo->right_bucketsize = -1;
513 newinfo->left_mcvfreq = -1;
514 newinfo->right_mcvfreq = -1;
516 return (
Node *) newinfo;
549 if (childrel->parent != parentrel)
551 if (childrel->parent)
556 elog(
ERROR,
"childrel is not a child of parentrel");
579 for (cnt = 0; cnt < nappinfos; cnt++)
623 if (childrel->parent != parentrel)
625 if (childrel->parent)
630 elog(
ERROR,
"childrel is not a child of parentrel");
663 if (parentattno <= 0 ||
665 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
668 if (childvar == NULL || !
IsA(childvar,
Var))
669 elog(
ERROR,
"attribute %d of relation \"%s\" does not exist",
688 elog(
ERROR,
"child rel %d not found in append_rel_array", child_relid);
711 List **processed_tlist,
List **update_colnos)
715 if (relid ==
root->parse->resultRelation)
728 *processed_tlist = (
List *)
737 root->parse->resultRelation);
774 elog(
ERROR,
"child rel %d not found in append_rel_array",
i);
777 appinfos[cnt++] = appinfo;
810 Index rtindex,
const char *rowid_name)
821 Assert(orig_var->varnullingrels == NULL);
828 if (rtindex ==
root->parse->resultRelation)
843 Assert(
root->append_rel_array[rtindex] != NULL);
855 foreach(lc,
root->row_identity_vars)
858 if (strcmp(rowid_name, ridinfo->
rowidname) != 0)
869 elog(
ERROR,
"conflicting uses of row-identity name \"%s\"",
909 char relkind = target_relation->
rd_rel->relkind;
914 if (relkind == RELKIND_RELATION ||
915 relkind == RELKIND_MATVIEW ||
916 relkind == RELKIND_PARTITIONED_TABLE)
930 else if (relkind == RELKIND_FOREIGN_TABLE)
941 target_rte, target_relation);
988 int result_relation =
parse->resultRelation;
1003 if (!target_rte->
inh)
1022 if (
root->row_identity_vars ==
NIL)
1028 target_rte, target_relation);
1044 foreach(lc,
root->processed_tlist)
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)
Node * adjust_appendrel_attrs(PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
Relids adjust_child_relids_multilevel(PlannerInfo *root, Relids relids, RelOptInfo *childrel, RelOptInfo *parentrel)
List * adjust_inherited_attnums_multilevel(PlannerInfo *root, List *attnums, Index child_relid, Index top_parent_relid)
Node * adjust_appendrel_attrs_multilevel(PlannerInfo *root, Node *node, RelOptInfo *childrel, RelOptInfo *parentrel)
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)
void add_row_identity_var(PlannerInfo *root, Var *orig_var, Index rtindex, const char *rowid_name)
List * adjust_inherited_attnums(List *attnums, AppendRelInfo *context)
#define InvalidAttrNumber
Bitmapset * bms_make_singleton(int x)
int bms_next_member(const Bitmapset *a, int prevbit)
Bitmapset * bms_del_member(Bitmapset *a, int x)
int bms_num_members(const Bitmapset *a)
bool bms_is_member(int x, const Bitmapset *a)
Bitmapset * bms_add_member(Bitmapset *a, int x)
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Bitmapset * bms_copy(const Bitmapset *a)
#define Assert(condition)
#define OidIsValid(objectId)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
bool equal(const void *a, const void *b)
FdwRoutine * GetFdwRoutineForRelation(Relation relation, bool makecopy)
#define HeapTupleIsValid(tuple)
static void * GETSTRUCT(const HeapTupleData *tuple)
void build_base_rel_tlists(PlannerInfo *root, List *final_tlist)
if(TABLE==NULL||TABLE_index==NULL)
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)
Var * makeVar(int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
Const * makeNullConst(Oid consttype, int32 consttypmod, Oid constcollid)
TargetEntry * makeTargetEntry(Expr *expr, AttrNumber resno, char *resname, bool resjunk)
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
VarReturningType varreturningtype
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)
static FormData_pg_attribute * TupleDescAttr(TupleDesc tupdesc, int i)