PostgreSQL Source Code  git master
appendinfo.h File Reference
#include "nodes/pathnodes.h"
#include "utils/relcache.h"
Include dependency graph for appendinfo.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

AppendRelInfomake_append_rel_info (Relation parentrel, Relation childrel, Index parentRTindex, Index childRTindex)
 
Nodeadjust_appendrel_attrs (PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
 
Nodeadjust_appendrel_attrs_multilevel (PlannerInfo *root, Node *node, RelOptInfo *childrel, RelOptInfo *parentrel)
 
Relids adjust_child_relids (Relids relids, int nappinfos, AppendRelInfo **appinfos)
 
Relids adjust_child_relids_multilevel (PlannerInfo *root, Relids relids, RelOptInfo *childrel, RelOptInfo *parentrel)
 
Listadjust_inherited_attnums (List *attnums, AppendRelInfo *context)
 
Listadjust_inherited_attnums_multilevel (PlannerInfo *root, List *attnums, Index child_relid, Index top_parent_relid)
 
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)
 
void add_row_identity_var (PlannerInfo *root, Var *orig_var, Index rtindex, const char *rowid_name)
 
void add_row_identity_columns (PlannerInfo *root, Index rtindex, RangeTblEntry *target_rte, Relation target_relation)
 
void distribute_row_identity_vars (PlannerInfo *root)
 

Function Documentation

◆ add_row_identity_columns()

void add_row_identity_columns ( PlannerInfo root,
Index  rtindex,
RangeTblEntry target_rte,
Relation  target_relation 
)

Definition at line 884 of file appendinfo.c.

887 {
888  CmdType commandType = root->parse->commandType;
889  char relkind = target_relation->rd_rel->relkind;
890  Var *var;
891 
892  Assert(commandType == CMD_UPDATE || commandType == CMD_DELETE || commandType == CMD_MERGE);
893 
894  if (relkind == RELKIND_RELATION ||
895  relkind == RELKIND_MATVIEW ||
896  relkind == RELKIND_PARTITIONED_TABLE)
897  {
898  /*
899  * Emit CTID so that executor can find the row to merge, update or
900  * delete.
901  */
902  var = makeVar(rtindex,
904  TIDOID,
905  -1,
906  InvalidOid,
907  0);
908  add_row_identity_var(root, var, rtindex, "ctid");
909  }
910  else if (relkind == RELKIND_FOREIGN_TABLE)
911  {
912  /*
913  * Let the foreign table's FDW add whatever junk TLEs it wants.
914  */
915  FdwRoutine *fdwroutine;
916 
917  fdwroutine = GetFdwRoutineForRelation(target_relation, false);
918 
919  if (fdwroutine->AddForeignUpdateTargets != NULL)
920  fdwroutine->AddForeignUpdateTargets(root, rtindex,
921  target_rte, target_relation);
922 
923  /*
924  * For UPDATE, we need to make the FDW fetch unchanged columns by
925  * asking it to fetch a whole-row Var. That's because the top-level
926  * targetlist only contains entries for changed columns, but
927  * ExecUpdate will need to build the complete new tuple. (Actually,
928  * we only really need this in UPDATEs that are not pushed to the
929  * remote side, but it's hard to tell if that will be the case at the
930  * point when this function is called.)
931  *
932  * We will also need the whole row if there are any row triggers, so
933  * that the executor will have the "old" row to pass to the trigger.
934  * Alas, this misses system columns.
935  */
936  if (commandType == CMD_UPDATE ||
937  (target_relation->trigdesc &&
938  (target_relation->trigdesc->trig_delete_after_row ||
939  target_relation->trigdesc->trig_delete_before_row)))
940  {
941  var = makeVar(rtindex,
943  RECORDOID,
944  -1,
945  InvalidOid,
946  0);
947  add_row_identity_var(root, var, rtindex, "wholerow");
948  }
949  }
950 }
void add_row_identity_var(PlannerInfo *root, Var *orig_var, Index rtindex, const char *rowid_name)
Definition: appendinfo.c:789
#define InvalidAttrNumber
Definition: attnum.h:23
FdwRoutine * GetFdwRoutineForRelation(Relation relation, bool makecopy)
Definition: foreign.c:432
Assert(fmt[strlen(fmt) - 1] !='\n')
Var * makeVar(int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
Definition: makefuncs.c:66
CmdType
Definition: nodes.h:253
@ CMD_MERGE
Definition: nodes.h:259
@ CMD_DELETE
Definition: nodes.h:258
@ CMD_UPDATE
Definition: nodes.h:256
#define InvalidOid
Definition: postgres_ext.h:36
AddForeignUpdateTargets_function AddForeignUpdateTargets
Definition: fdwapi.h:229
Query * parse
Definition: pathnodes.h:199
CmdType commandType
Definition: parsenodes.h:121
TriggerDesc * trigdesc
Definition: rel.h:117
Form_pg_class rd_rel
Definition: rel.h:111
bool trig_delete_before_row
Definition: reltrigger.h:66
bool trig_delete_after_row
Definition: reltrigger.h:67
Definition: primnodes.h:234
#define SelfItemPointerAttributeNumber
Definition: sysattr.h:21

References add_row_identity_var(), FdwRoutine::AddForeignUpdateTargets, Assert(), CMD_DELETE, CMD_MERGE, CMD_UPDATE, Query::commandType, GetFdwRoutineForRelation(), InvalidAttrNumber, InvalidOid, makeVar(), PlannerInfo::parse, RelationData::rd_rel, SelfItemPointerAttributeNumber, TriggerDesc::trig_delete_after_row, TriggerDesc::trig_delete_before_row, and RelationData::trigdesc.

Referenced by distribute_row_identity_vars(), expand_single_inheritance_child(), and preprocess_targetlist().

◆ add_row_identity_var()

void add_row_identity_var ( PlannerInfo root,
Var orig_var,
Index  rtindex,
const char *  rowid_name 
)

Definition at line 789 of file appendinfo.c.

791 {
792  TargetEntry *tle;
793  Var *rowid_var;
794  RowIdentityVarInfo *ridinfo;
795  ListCell *lc;
796 
797  /* For now, the argument must be just a Var of the given rtindex */
798  Assert(IsA(orig_var, Var));
799  Assert(orig_var->varno == rtindex);
800  Assert(orig_var->varlevelsup == 0);
801  Assert(orig_var->varnullingrels == NULL);
802 
803  /*
804  * If we're doing non-inherited UPDATE/DELETE/MERGE, there's little need
805  * for ROWID_VAR shenanigans. Just shove the presented Var into the
806  * processed_tlist, and we're done.
807  */
808  if (rtindex == root->parse->resultRelation)
809  {
810  tle = makeTargetEntry((Expr *) orig_var,
811  list_length(root->processed_tlist) + 1,
812  pstrdup(rowid_name),
813  true);
814  root->processed_tlist = lappend(root->processed_tlist, tle);
815  return;
816  }
817 
818  /*
819  * Otherwise, rtindex should reference a leaf target relation that's being
820  * added to the query during expand_inherited_rtentry().
821  */
822  Assert(bms_is_member(rtindex, root->leaf_result_relids));
823  Assert(root->append_rel_array[rtindex] != NULL);
824 
825  /*
826  * We have to find a matching RowIdentityVarInfo, or make one if there is
827  * none. To allow using equal() to match the vars, change the varno to
828  * ROWID_VAR, leaving all else alone.
829  */
830  rowid_var = copyObject(orig_var);
831  /* This could eventually become ChangeVarNodes() */
832  rowid_var->varno = ROWID_VAR;
833 
834  /* Look for an existing row-id column of the same name */
835  foreach(lc, root->row_identity_vars)
836  {
837  ridinfo = (RowIdentityVarInfo *) lfirst(lc);
838  if (strcmp(rowid_name, ridinfo->rowidname) != 0)
839  continue;
840  if (equal(rowid_var, ridinfo->rowidvar))
841  {
842  /* Found a match; we need only record that rtindex needs it too */
843  ridinfo->rowidrels = bms_add_member(ridinfo->rowidrels, rtindex);
844  return;
845  }
846  else
847  {
848  /* Ooops, can't handle this */
849  elog(ERROR, "conflicting uses of row-identity name \"%s\"",
850  rowid_name);
851  }
852  }
853 
854  /* No request yet, so add a new RowIdentityVarInfo */
855  ridinfo = makeNode(RowIdentityVarInfo);
856  ridinfo->rowidvar = copyObject(rowid_var);
857  /* for the moment, estimate width using just the datatype info */
858  ridinfo->rowidwidth = get_typavgwidth(exprType((Node *) rowid_var),
859  exprTypmod((Node *) rowid_var));
860  ridinfo->rowidname = pstrdup(rowid_name);
861  ridinfo->rowidrels = bms_make_singleton(rtindex);
862 
863  root->row_identity_vars = lappend(root->row_identity_vars, ridinfo);
864 
865  /* Change rowid_var into a reference to this row_identity_vars entry */
866  rowid_var->varattno = list_length(root->row_identity_vars);
867 
868  /* Push the ROWID_VAR reference variable into processed_tlist */
869  tle = makeTargetEntry((Expr *) rowid_var,
870  list_length(root->processed_tlist) + 1,
871  pstrdup(rowid_name),
872  true);
873  root->processed_tlist = lappend(root->processed_tlist, tle);
874 }
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
Bitmapset * bms_make_singleton(int x)
Definition: bitmapset.c:216
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
bool equal(const void *a, const void *b)
Definition: equalfuncs.c:223
List * lappend(List *list, void *datum)
Definition: list.c:339
int32 get_typavgwidth(Oid typid, int32 typmod)
Definition: lsyscache.c:2534
TargetEntry * makeTargetEntry(Expr *expr, AttrNumber resno, char *resname, bool resjunk)
Definition: makefuncs.c:240
char * pstrdup(const char *in)
Definition: mcxt.c:1683
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:42
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:284
#define IsA(nodeptr, _type_)
Definition: nodes.h:158
#define copyObject(obj)
Definition: nodes.h:223
#define makeNode(_type_)
Definition: nodes.h:155
#define lfirst(lc)
Definition: pg_list.h:172
static int list_length(const List *l)
Definition: pg_list.h:152
#define ROWID_VAR
Definition: primnodes.h:225
Definition: nodes.h:129
List * processed_tlist
Definition: pathnodes.h:453
List * row_identity_vars
Definition: pathnodes.h:365
Relids leaf_result_relids
Definition: pathnodes.h:353
int varno
Definition: primnodes.h:241
Index varlevelsup
Definition: primnodes.h:266

References Assert(), bms_add_member(), bms_is_member(), bms_make_singleton(), copyObject, elog, equal(), ERROR, exprType(), exprTypmod(), get_typavgwidth(), IsA, lappend(), PlannerInfo::leaf_result_relids, lfirst, list_length(), makeNode, makeTargetEntry(), PlannerInfo::parse, PlannerInfo::processed_tlist, pstrdup(), PlannerInfo::row_identity_vars, ROWID_VAR, RowIdentityVarInfo::rowidname, RowIdentityVarInfo::rowidrels, RowIdentityVarInfo::rowidvar, RowIdentityVarInfo::rowidwidth, Var::varattno, Var::varlevelsup, and Var::varno.

Referenced by add_row_identity_columns(), expand_single_inheritance_child(), and postgresAddForeignUpdateTargets().

◆ adjust_appendrel_attrs()

Node* adjust_appendrel_attrs ( PlannerInfo root,
Node node,
int  nappinfos,
AppendRelInfo **  appinfos 
)

Definition at line 196 of file appendinfo.c.

198 {
200 
201  context.root = root;
202  context.nappinfos = nappinfos;
203  context.appinfos = appinfos;
204 
205  /* If there's nothing to adjust, don't call this function. */
206  Assert(nappinfos >= 1 && appinfos != NULL);
207 
208  /* Should never be translating a Query tree. */
209  Assert(node == NULL || !IsA(node, Query));
210 
211  return adjust_appendrel_attrs_mutator(node, &context);
212 }
static Node * adjust_appendrel_attrs_mutator(Node *node, adjust_appendrel_attrs_context *context)
Definition: appendinfo.c:215
AppendRelInfo ** appinfos
Definition: appendinfo.c:35

References adjust_appendrel_attrs_mutator(), adjust_appendrel_attrs_context::appinfos, Assert(), IsA, adjust_appendrel_attrs_context::nappinfos, and adjust_appendrel_attrs_context::root.

Referenced by add_child_join_rel_equivalences(), add_child_rel_equivalences(), adjust_appendrel_attrs_multilevel(), apply_child_basequals(), apply_scanjoin_target_to_paths(), build_child_join_rel(), build_child_join_reltarget(), build_child_join_sjinfo(), create_partitionwise_grouping_paths(), make_partitionedrel_pruneinfo(), set_append_rel_size(), and try_partitionwise_join().

◆ adjust_appendrel_attrs_multilevel()

Node* adjust_appendrel_attrs_multilevel ( PlannerInfo root,
Node node,
RelOptInfo childrel,
RelOptInfo parentrel 
)

Definition at line 521 of file appendinfo.c.

524 {
525  AppendRelInfo **appinfos;
526  int nappinfos;
527 
528  /* Recurse if immediate parent is not the top parent. */
529  if (childrel->parent != parentrel)
530  {
531  if (childrel->parent)
532  node = adjust_appendrel_attrs_multilevel(root, node,
533  childrel->parent,
534  parentrel);
535  else
536  elog(ERROR, "childrel is not a child of parentrel");
537  }
538 
539  /* Now translate for this child. */
540  appinfos = find_appinfos_by_relids(root, childrel->relids, &nappinfos);
541 
542  node = adjust_appendrel_attrs(root, node, nappinfos, appinfos);
543 
544  pfree(appinfos);
545 
546  return node;
547 }
AppendRelInfo ** find_appinfos_by_relids(PlannerInfo *root, Relids relids, int *nappinfos)
Definition: appendinfo.c:733
Node * adjust_appendrel_attrs(PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
Definition: appendinfo.c:196
Node * adjust_appendrel_attrs_multilevel(PlannerInfo *root, Node *node, RelOptInfo *childrel, RelOptInfo *parentrel)
Definition: appendinfo.c:521
void pfree(void *pointer)
Definition: mcxt.c:1508
Relids relids
Definition: pathnodes.h:856

References adjust_appendrel_attrs(), elog, ERROR, find_appinfos_by_relids(), pfree(), and RelOptInfo::relids.

Referenced by add_child_join_rel_equivalences(), add_child_rel_equivalences(), generate_join_implied_equalities_broken(), get_translated_update_targetlist(), grouping_planner(), and make_partitionedrel_pruneinfo().

◆ adjust_child_relids()

Relids adjust_child_relids ( Relids  relids,
int  nappinfos,
AppendRelInfo **  appinfos 
)

Definition at line 554 of file appendinfo.c.

555 {
556  Bitmapset *result = NULL;
557  int cnt;
558 
559  for (cnt = 0; cnt < nappinfos; cnt++)
560  {
561  AppendRelInfo *appinfo = appinfos[cnt];
562 
563  /* Remove parent, add child */
564  if (bms_is_member(appinfo->parent_relid, relids))
565  {
566  /* Make a copy if we are changing the set. */
567  if (!result)
568  result = bms_copy(relids);
569 
570  result = bms_del_member(result, appinfo->parent_relid);
571  result = bms_add_member(result, appinfo->child_relid);
572  }
573  }
574 
575  /* If we made any changes, return the modified copy. */
576  if (result)
577  return result;
578 
579  /* Otherwise, return the original set without modification. */
580  return relids;
581 }
Bitmapset * bms_del_member(Bitmapset *a, int x)
Definition: bitmapset.c:868
Bitmapset * bms_copy(const Bitmapset *a)
Definition: bitmapset.c:122
Index child_relid
Definition: pathnodes.h:2944
Index parent_relid
Definition: pathnodes.h:2943

References bms_add_member(), bms_copy(), bms_del_member(), bms_is_member(), AppendRelInfo::child_relid, and AppendRelInfo::parent_relid.

Referenced by adjust_appendrel_attrs_mutator(), adjust_child_relids_multilevel(), build_child_join_rel(), build_child_join_sjinfo(), and try_partitionwise_join().

◆ adjust_child_relids_multilevel()

Relids adjust_child_relids_multilevel ( PlannerInfo root,
Relids  relids,
RelOptInfo childrel,
RelOptInfo parentrel 
)

Definition at line 588 of file appendinfo.c.

591 {
592  AppendRelInfo **appinfos;
593  int nappinfos;
594 
595  /*
596  * If the given relids set doesn't contain any of the parent relids, it
597  * will remain unchanged.
598  */
599  if (!bms_overlap(relids, parentrel->relids))
600  return relids;
601 
602  /* Recurse if immediate parent is not the top parent. */
603  if (childrel->parent != parentrel)
604  {
605  if (childrel->parent)
606  relids = adjust_child_relids_multilevel(root, relids,
607  childrel->parent,
608  parentrel);
609  else
610  elog(ERROR, "childrel is not a child of parentrel");
611  }
612 
613  /* Now translate for this child. */
614  appinfos = find_appinfos_by_relids(root, childrel->relids, &nappinfos);
615 
616  relids = adjust_child_relids(relids, nappinfos, appinfos);
617 
618  pfree(appinfos);
619 
620  return relids;
621 }
Relids adjust_child_relids_multilevel(PlannerInfo *root, Relids relids, RelOptInfo *childrel, RelOptInfo *parentrel)
Definition: appendinfo.c:588
Relids adjust_child_relids(Relids relids, int nappinfos, AppendRelInfo **appinfos)
Definition: appendinfo.c:554
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582

References adjust_child_relids(), bms_overlap(), elog, ERROR, find_appinfos_by_relids(), pfree(), and RelOptInfo::relids.

Referenced by reparameterize_path_by_child().

◆ adjust_inherited_attnums()

List* adjust_inherited_attnums ( List attnums,
AppendRelInfo context 
)

Definition at line 628 of file appendinfo.c.

629 {
630  List *result = NIL;
631  ListCell *lc;
632 
633  /* This should only happen for an inheritance case, not UNION ALL */
634  Assert(OidIsValid(context->parent_reloid));
635 
636  /* Look up each attribute in the AppendRelInfo's translated_vars list */
637  foreach(lc, attnums)
638  {
639  AttrNumber parentattno = lfirst_int(lc);
640  Var *childvar;
641 
642  /* Look up the translation of this column: it must be a Var */
643  if (parentattno <= 0 ||
644  parentattno > list_length(context->translated_vars))
645  elog(ERROR, "attribute %d of relation \"%s\" does not exist",
646  parentattno, get_rel_name(context->parent_reloid));
647  childvar = (Var *) list_nth(context->translated_vars, parentattno - 1);
648  if (childvar == NULL || !IsA(childvar, Var))
649  elog(ERROR, "attribute %d of relation \"%s\" does not exist",
650  parentattno, get_rel_name(context->parent_reloid));
651 
652  result = lappend_int(result, childvar->varattno);
653  }
654  return result;
655 }
int16 AttrNumber
Definition: attnum.h:21
#define OidIsValid(objectId)
Definition: c.h:762
List * lappend_int(List *list, int datum)
Definition: list.c:357
char * get_rel_name(Oid relid)
Definition: lsyscache.c:1906
#define NIL
Definition: pg_list.h:68
#define lfirst_int(lc)
Definition: pg_list.h:173
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299
List * translated_vars
Definition: pathnodes.h:2971
Definition: pg_list.h:54
AttrNumber varattno
Definition: primnodes.h:246

References Assert(), elog, ERROR, get_rel_name(), IsA, lappend_int(), lfirst_int, list_length(), list_nth(), NIL, OidIsValid, AppendRelInfo::parent_reloid, AppendRelInfo::translated_vars, and Var::varattno.

Referenced by adjust_inherited_attnums_multilevel().

◆ adjust_inherited_attnums_multilevel()

List* adjust_inherited_attnums_multilevel ( PlannerInfo root,
List attnums,
Index  child_relid,
Index  top_parent_relid 
)

Definition at line 662 of file appendinfo.c.

664 {
665  AppendRelInfo *appinfo = root->append_rel_array[child_relid];
666 
667  if (!appinfo)
668  elog(ERROR, "child rel %d not found in append_rel_array", child_relid);
669 
670  /* Recurse if immediate parent is not the top parent. */
671  if (appinfo->parent_relid != top_parent_relid)
672  attnums = adjust_inherited_attnums_multilevel(root, attnums,
673  appinfo->parent_relid,
674  top_parent_relid);
675 
676  /* Now translate for this child */
677  return adjust_inherited_attnums(attnums, appinfo);
678 }
List * adjust_inherited_attnums(List *attnums, AppendRelInfo *context)
Definition: appendinfo.c:628
List * adjust_inherited_attnums_multilevel(PlannerInfo *root, List *attnums, Index child_relid, Index top_parent_relid)
Definition: appendinfo.c:662

References adjust_inherited_attnums(), elog, ERROR, and AppendRelInfo::parent_relid.

Referenced by get_translated_update_targetlist(), and grouping_planner().

◆ distribute_row_identity_vars()

void distribute_row_identity_vars ( PlannerInfo root)

Definition at line 965 of file appendinfo.c.

966 {
967  Query *parse = root->parse;
968  int result_relation = parse->resultRelation;
969  RangeTblEntry *target_rte;
970  RelOptInfo *target_rel;
971  ListCell *lc;
972 
973  /*
974  * There's nothing to do if this isn't an inherited UPDATE/DELETE/MERGE.
975  */
976  if (parse->commandType != CMD_UPDATE && parse->commandType != CMD_DELETE &&
977  parse->commandType != CMD_MERGE)
978  {
979  Assert(root->row_identity_vars == NIL);
980  return;
981  }
982  target_rte = rt_fetch(result_relation, parse->rtable);
983  if (!target_rte->inh)
984  {
985  Assert(root->row_identity_vars == NIL);
986  return;
987  }
988 
989  /*
990  * Ordinarily, we expect that leaf result relation(s) will have added some
991  * ROWID_VAR Vars to the query. However, it's possible that constraint
992  * exclusion suppressed every leaf relation. The executor will get upset
993  * if the plan has no row identity columns at all, even though it will
994  * certainly process no rows. Handle this edge case by re-opening the top
995  * result relation and adding the row identity columns it would have used,
996  * as preprocess_targetlist() would have done if it weren't marked "inh".
997  * Then re-run build_base_rel_tlists() to ensure that the added columns
998  * get propagated to the relation's reltarget. (This is a bit ugly, but
999  * it seems better to confine the ugliness and extra cycles to this
1000  * unusual corner case.)
1001  */
1002  if (root->row_identity_vars == NIL)
1003  {
1004  Relation target_relation;
1005 
1006  target_relation = table_open(target_rte->relid, NoLock);
1007  add_row_identity_columns(root, result_relation,
1008  target_rte, target_relation);
1009  table_close(target_relation, NoLock);
1011  /* There are no ROWID_VAR Vars in this case, so we're done. */
1012  return;
1013  }
1014 
1015  /*
1016  * Dig through the processed_tlist to find the ROWID_VAR reference Vars,
1017  * and forcibly copy them into the reltarget list of the topmost target
1018  * relation. That's sufficient because they'll be copied to the
1019  * individual leaf target rels (with appropriate translation) later,
1020  * during appendrel expansion --- see set_append_rel_size().
1021  */
1022  target_rel = find_base_rel(root, result_relation);
1023 
1024  foreach(lc, root->processed_tlist)
1025  {
1026  TargetEntry *tle = lfirst(lc);
1027  Var *var = (Var *) tle->expr;
1028 
1029  if (var && IsA(var, Var) && var->varno == ROWID_VAR)
1030  {
1031  target_rel->reltarget->exprs =
1032  lappend(target_rel->reltarget->exprs, copyObject(var));
1033  /* reltarget cost and width will be computed later */
1034  }
1035  }
1036 }
void add_row_identity_columns(PlannerInfo *root, Index rtindex, RangeTblEntry *target_rte, Relation target_relation)
Definition: appendinfo.c:884
void build_base_rel_tlists(PlannerInfo *root, List *final_tlist)
Definition: initsplan.c:233
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
#define NoLock
Definition: lockdefs.h:34
#define rt_fetch(rangetable_index, rangetable)
Definition: parsetree.h:31
static struct subre * parse(struct vars *v, int stopper, int type, struct state *init, struct state *final)
Definition: regcomp.c:715
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
Definition: relnode.c:407
List * exprs
Definition: pathnodes.h:1513
struct PathTarget * reltarget
Definition: pathnodes.h:878
Expr * expr
Definition: primnodes.h:1943
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40

References add_row_identity_columns(), Assert(), build_base_rel_tlists(), CMD_DELETE, CMD_MERGE, CMD_UPDATE, copyObject, TargetEntry::expr, PathTarget::exprs, find_base_rel(), if(), RangeTblEntry::inh, IsA, lappend(), lfirst, NIL, NoLock, parse(), PlannerInfo::parse, PlannerInfo::processed_tlist, RangeTblEntry::relid, RelOptInfo::reltarget, PlannerInfo::row_identity_vars, ROWID_VAR, rt_fetch, table_close(), table_open(), and Var::varno.

Referenced by query_planner().

◆ find_appinfos_by_relids()

AppendRelInfo** find_appinfos_by_relids ( PlannerInfo root,
Relids  relids,
int *  nappinfos 
)

Definition at line 733 of file appendinfo.c.

734 {
735  AppendRelInfo **appinfos;
736  int cnt = 0;
737  int i;
738 
739  /* Allocate an array that's certainly big enough */
740  appinfos = (AppendRelInfo **)
741  palloc(sizeof(AppendRelInfo *) * bms_num_members(relids));
742 
743  i = -1;
744  while ((i = bms_next_member(relids, i)) >= 0)
745  {
746  AppendRelInfo *appinfo = root->append_rel_array[i];
747 
748  if (!appinfo)
749  {
750  /* Probably i is an OJ index, but let's check */
751  if (find_base_rel_ignore_join(root, i) == NULL)
752  continue;
753  /* It's a base rel, but we lack an append_rel_array entry */
754  elog(ERROR, "child rel %d not found in append_rel_array", i);
755  }
756 
757  appinfos[cnt++] = appinfo;
758  }
759  *nappinfos = cnt;
760  return appinfos;
761 }
int bms_next_member(const Bitmapset *a, int prevbit)
Definition: bitmapset.c:1306
int bms_num_members(const Bitmapset *a)
Definition: bitmapset.c:751
int i
Definition: isn.c:73
void * palloc(Size size)
Definition: mcxt.c:1304
RelOptInfo * find_base_rel_ignore_join(PlannerInfo *root, int relid)
Definition: relnode.c:447

References bms_next_member(), bms_num_members(), elog, ERROR, find_base_rel_ignore_join(), i, and palloc().

Referenced by adjust_appendrel_attrs_multilevel(), adjust_child_relids_multilevel(), apply_scanjoin_target_to_paths(), build_child_join_rel(), build_child_join_sjinfo(), create_partitionwise_grouping_paths(), make_partitionedrel_pruneinfo(), and try_partitionwise_join().

◆ get_translated_update_targetlist()

void get_translated_update_targetlist ( PlannerInfo root,
Index  relid,
List **  processed_tlist,
List **  update_colnos 
)

Definition at line 690 of file appendinfo.c.

692 {
693  /* This is pretty meaningless for commands other than UPDATE. */
694  Assert(root->parse->commandType == CMD_UPDATE);
695  if (relid == root->parse->resultRelation)
696  {
697  /*
698  * Non-inheritance case, so it's easy. The caller might be expecting
699  * a tree it can scribble on, though, so copy.
700  */
701  *processed_tlist = copyObject(root->processed_tlist);
702  if (update_colnos)
703  *update_colnos = copyObject(root->update_colnos);
704  }
705  else
706  {
707  Assert(bms_is_member(relid, root->all_result_relids));
708  *processed_tlist = (List *)
710  (Node *) root->processed_tlist,
711  find_base_rel(root, relid),
712  find_base_rel(root, root->parse->resultRelation));
713  if (update_colnos)
714  *update_colnos =
716  relid,
717  root->parse->resultRelation);
718  }
719 }
List * update_colnos
Definition: pathnodes.h:461
Relids all_result_relids
Definition: pathnodes.h:351

References adjust_appendrel_attrs_multilevel(), adjust_inherited_attnums_multilevel(), PlannerInfo::all_result_relids, Assert(), bms_is_member(), CMD_UPDATE, Query::commandType, copyObject, find_base_rel(), PlannerInfo::parse, PlannerInfo::processed_tlist, and PlannerInfo::update_colnos.

Referenced by postgresPlanDirectModify().

◆ make_append_rel_info()

AppendRelInfo* make_append_rel_info ( Relation  parentrel,
Relation  childrel,
Index  parentRTindex,
Index  childRTindex 
)

Definition at line 51 of file appendinfo.c.

53 {
55 
56  appinfo->parent_relid = parentRTindex;
57  appinfo->child_relid = childRTindex;
58  appinfo->parent_reltype = parentrel->rd_rel->reltype;
59  appinfo->child_reltype = childrel->rd_rel->reltype;
60  make_inh_translation_list(parentrel, childrel, childRTindex, appinfo);
61  appinfo->parent_reloid = RelationGetRelid(parentrel);
62 
63  return appinfo;
64 }
static void make_inh_translation_list(Relation oldrelation, Relation newrelation, Index newvarno, AppendRelInfo *appinfo)
Definition: appendinfo.c:80
#define RelationGetRelid(relation)
Definition: rel.h:505
Oid parent_reltype
Definition: pathnodes.h:2952

References AppendRelInfo::child_relid, AppendRelInfo::child_reltype, make_inh_translation_list(), makeNode, AppendRelInfo::parent_relid, AppendRelInfo::parent_reloid, AppendRelInfo::parent_reltype, RelationData::rd_rel, and RelationGetRelid.

Referenced by expand_single_inheritance_child().