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

Go to the source code of this file.

Data Structures

struct  replace_rte_variables_context
 

Typedefs

typedef struct replace_rte_variables_context replace_rte_variables_context
 
typedef Node *(* replace_rte_variables_callback) (Var *var, replace_rte_variables_context *context)
 
typedef enum ReplaceVarsNoMatchOption ReplaceVarsNoMatchOption
 

Enumerations

enum  ReplaceVarsNoMatchOption { REPLACEVARS_REPORT_ERROR , REPLACEVARS_CHANGE_VARNO , REPLACEVARS_SUBSTITUTE_NULL }
 

Functions

void CombineRangeTables (List **dst_rtable, List **dst_perminfos, List *src_rtable, List *src_perminfos)
 
void OffsetVarNodes (Node *node, int offset, int sublevels_up)
 
void ChangeVarNodes (Node *node, int rt_index, int new_index, int sublevels_up)
 
void IncrementVarSublevelsUp (Node *node, int delta_sublevels_up, int min_sublevels_up)
 
void IncrementVarSublevelsUp_rtable (List *rtable, int delta_sublevels_up, int min_sublevels_up)
 
bool rangeTableEntry_used (Node *node, int rt_index, int sublevels_up)
 
QuerygetInsertSelectQuery (Query *parsetree, Query ***subquery_ptr)
 
void AddQual (Query *parsetree, Node *qual)
 
void AddInvertedQual (Query *parsetree, Node *qual)
 
bool contain_aggs_of_level (Node *node, int levelsup)
 
int locate_agg_of_level (Node *node, int levelsup)
 
bool contain_windowfuncs (Node *node)
 
int locate_windowfunc (Node *node)
 
bool checkExprHasSubLink (Node *node)
 
Nodeadd_nulling_relids (Node *node, const Bitmapset *target_relids, const Bitmapset *added_relids)
 
Noderemove_nulling_relids (Node *node, const Bitmapset *removable_relids, const Bitmapset *except_relids)
 
Nodereplace_rte_variables (Node *node, int target_varno, int sublevels_up, replace_rte_variables_callback callback, void *callback_arg, bool *outer_hasSubLinks)
 
Nodereplace_rte_variables_mutator (Node *node, replace_rte_variables_context *context)
 
Nodemap_variable_attnos (Node *node, int target_varno, int sublevels_up, const struct AttrMap *attno_map, Oid to_rowtype, bool *found_whole_row)
 
NodeReplaceVarsFromTargetList (Node *node, int target_varno, int sublevels_up, RangeTblEntry *target_rte, List *targetlist, ReplaceVarsNoMatchOption nomatch_option, int nomatch_varno, bool *outer_hasSubLinks)
 

Typedef Documentation

◆ replace_rte_variables_callback

typedef Node*(* replace_rte_variables_callback) (Var *var, replace_rte_variables_context *context)

Definition at line 24 of file rewriteManip.h.

◆ replace_rte_variables_context

◆ ReplaceVarsNoMatchOption

Enumeration Type Documentation

◆ ReplaceVarsNoMatchOption

Enumerator
REPLACEVARS_REPORT_ERROR 
REPLACEVARS_CHANGE_VARNO 
REPLACEVARS_SUBSTITUTE_NULL 

Definition at line 36 of file rewriteManip.h.

37 {
38  REPLACEVARS_REPORT_ERROR, /* throw error if no match */
39  REPLACEVARS_CHANGE_VARNO, /* change the Var's varno, nothing else */
40  REPLACEVARS_SUBSTITUTE_NULL /* replace with a NULL Const */
ReplaceVarsNoMatchOption
Definition: rewriteManip.h:37
@ REPLACEVARS_SUBSTITUTE_NULL
Definition: rewriteManip.h:40
@ REPLACEVARS_CHANGE_VARNO
Definition: rewriteManip.h:39
@ REPLACEVARS_REPORT_ERROR
Definition: rewriteManip.h:38

Function Documentation

◆ add_nulling_relids()

Node* add_nulling_relids ( Node node,
const Bitmapset target_relids,
const Bitmapset added_relids 
)

Definition at line 1134 of file rewriteManip.c.

1137 {
1139 
1140  context.target_relids = target_relids;
1141  context.added_relids = added_relids;
1142  context.sublevels_up = 0;
1145  &context,
1146  0);
1147 }
#define query_or_expression_tree_mutator(n, m, c, f)
Definition: nodeFuncs.h:171
static Node * add_nulling_relids_mutator(Node *node, add_nulling_relids_context *context)
const Bitmapset * target_relids
Definition: rewriteManip.c:45
const Bitmapset * added_relids
Definition: rewriteManip.c:46

References add_nulling_relids_mutator(), add_nulling_relids_context::added_relids, query_or_expression_tree_mutator, add_nulling_relids_context::sublevels_up, and add_nulling_relids_context::target_relids.

Referenced by deconstruct_distribute_oj_quals().

◆ AddInvertedQual()

void AddInvertedQual ( Query parsetree,
Node qual 
)

Definition at line 1111 of file rewriteManip.c.

1112 {
1113  BooleanTest *invqual;
1114 
1115  if (qual == NULL)
1116  return;
1117 
1118  /* Need not copy input qual, because AddQual will... */
1119  invqual = makeNode(BooleanTest);
1120  invqual->arg = (Expr *) qual;
1121  invqual->booltesttype = IS_NOT_TRUE;
1122  invqual->location = -1;
1123 
1124  AddQual(parsetree, (Node *) invqual);
1125 }
#define makeNode(_type_)
Definition: nodes.h:176
@ IS_NOT_TRUE
Definition: primnodes.h:1701
void AddQual(Query *parsetree, Node *qual)
BoolTestType booltesttype
Definition: primnodes.h:1708
Expr * arg
Definition: primnodes.h:1707
Definition: nodes.h:129

References AddQual(), BooleanTest::arg, BooleanTest::booltesttype, IS_NOT_TRUE, BooleanTest::location, and makeNode.

Referenced by CopyAndAddInvertedQual().

◆ AddQual()

void AddQual ( Query parsetree,
Node qual 
)

Definition at line 1043 of file rewriteManip.c.

1044 {
1045  Node *copy;
1046 
1047  if (qual == NULL)
1048  return;
1049 
1050  if (parsetree->commandType == CMD_UTILITY)
1051  {
1052  /*
1053  * There's noplace to put the qual on a utility statement.
1054  *
1055  * If it's a NOTIFY, silently ignore the qual; this means that the
1056  * NOTIFY will execute, whether or not there are any qualifying rows.
1057  * While clearly wrong, this is much more useful than refusing to
1058  * execute the rule at all, and extra NOTIFY events are harmless for
1059  * typical uses of NOTIFY.
1060  *
1061  * If it isn't a NOTIFY, error out, since unconditional execution of
1062  * other utility stmts is unlikely to be wanted. (This case is not
1063  * currently allowed anyway, but keep the test for safety.)
1064  */
1065  if (parsetree->utilityStmt && IsA(parsetree->utilityStmt, NotifyStmt))
1066  return;
1067  else
1068  ereport(ERROR,
1069  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1070  errmsg("conditional utility statements are not implemented")));
1071  }
1072 
1073  if (parsetree->setOperations != NULL)
1074  {
1075  /*
1076  * There's noplace to put the qual on a setop statement, either. (This
1077  * could be fixed, but right now the planner simply ignores any qual
1078  * condition on a setop query.)
1079  */
1080  ereport(ERROR,
1081  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1082  errmsg("conditional UNION/INTERSECT/EXCEPT statements are not implemented")));
1083  }
1084 
1085  /* INTERSECT wants the original, but we need to copy - Jan */
1086  copy = copyObject(qual);
1087 
1088  parsetree->jointree->quals = make_and_qual(parsetree->jointree->quals,
1089  copy);
1090 
1091  /*
1092  * We had better not have stuck an aggregate into the WHERE clause.
1093  */
1094  Assert(!contain_aggs_of_level(copy, 0));
1095 
1096  /*
1097  * Make sure query is marked correctly if added qual has sublinks. Need
1098  * not search qual when query is already marked.
1099  */
1100  if (!parsetree->hasSubLinks)
1101  parsetree->hasSubLinks = checkExprHasSubLink(copy);
1102 }
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
Assert(fmt[strlen(fmt) - 1] !='\n')
Node * make_and_qual(Node *qual1, Node *qual2)
Definition: makefuncs.c:692
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
#define copyObject(obj)
Definition: nodes.h:244
@ CMD_UTILITY
Definition: nodes.h:281
bool checkExprHasSubLink(Node *node)
Definition: rewriteManip.c:295
bool contain_aggs_of_level(Node *node, int levelsup)
Definition: rewriteManip.c:85
Node * quals
Definition: primnodes.h:2005
FromExpr * jointree
Definition: parsenodes.h:182
Node * setOperations
Definition: parsenodes.h:217
CmdType commandType
Definition: parsenodes.h:128
Node * utilityStmt
Definition: parsenodes.h:143

References Assert(), checkExprHasSubLink(), CMD_UTILITY, Query::commandType, contain_aggs_of_level(), copyObject, ereport, errcode(), errmsg(), ERROR, IsA, Query::jointree, make_and_qual(), FromExpr::quals, Query::setOperations, and Query::utilityStmt.

Referenced by AddInvertedQual(), rewriteRuleAction(), and rewriteTargetView().

◆ ChangeVarNodes()

void ChangeVarNodes ( Node node,
int  rt_index,
int  new_index,
int  sublevels_up 
)

Definition at line 670 of file rewriteManip.c.

671 {
672  ChangeVarNodes_context context;
673 
674  context.rt_index = rt_index;
675  context.new_index = new_index;
676  context.sublevels_up = sublevels_up;
677 
678  /*
679  * Must be prepared to start with a Query or a bare expression tree; if
680  * it's a Query, go straight to query_tree_walker to make sure that
681  * sublevels_up doesn't get incremented prematurely.
682  */
683  if (node && IsA(node, Query))
684  {
685  Query *qry = (Query *) node;
686 
687  /*
688  * If we are starting at a Query, and sublevels_up is zero, then we
689  * must also fix rangetable indexes in the Query itself --- namely
690  * resultRelation and rowMarks entries. sublevels_up cannot be zero
691  * when recursing into a subquery, so there's no need to have the same
692  * logic inside ChangeVarNodes_walker.
693  */
694  if (sublevels_up == 0)
695  {
696  ListCell *l;
697 
698  if (qry->resultRelation == rt_index)
699  qry->resultRelation = new_index;
700 
701  /* this is unlikely to ever be used, but ... */
702  if (qry->onConflict && qry->onConflict->exclRelIndex == rt_index)
703  qry->onConflict->exclRelIndex = new_index;
704 
705  foreach(l, qry->rowMarks)
706  {
707  RowMarkClause *rc = (RowMarkClause *) lfirst(l);
708 
709  if (rc->rti == rt_index)
710  rc->rti = new_index;
711  }
712  }
714  (void *) &context, 0);
715  }
716  else
717  ChangeVarNodes_walker(node, &context);
718 }
#define query_tree_walker(q, w, c, f)
Definition: nodeFuncs.h:156
#define lfirst(lc)
Definition: pg_list.h:172
static bool ChangeVarNodes_walker(Node *node, ChangeVarNodes_context *context)
Definition: rewriteManip.c:560
List * rowMarks
Definition: parsenodes.h:215
OnConflictExpr * onConflict
Definition: parsenodes.h:194

References ChangeVarNodes_walker(), OnConflictExpr::exclRelIndex, IsA, lfirst, ChangeVarNodes_context::new_index, Query::onConflict, query_tree_walker, Query::rowMarks, ChangeVarNodes_context::rt_index, RowMarkClause::rti, and ChangeVarNodes_context::sublevels_up.

Referenced by add_security_quals(), add_with_check_options(), ApplyRetrieveRule(), CopyAndAddInvertedQual(), get_relation_constraints(), get_relation_info(), get_relation_statistics(), rewriteRuleAction(), rewriteTargetView(), set_baserel_partition_constraint(), set_baserel_partition_key_exprs(), and TriggerEnabled().

◆ checkExprHasSubLink()

bool checkExprHasSubLink ( Node node)

Definition at line 295 of file rewriteManip.c.

296 {
297  /*
298  * If a Query is passed, examine it --- but we should not recurse into
299  * sub-Queries that are in its rangetable or CTE list.
300  */
303  NULL,
305 }
#define query_or_expression_tree_walker(n, w, c, f)
Definition: nodeFuncs.h:169
#define QTW_IGNORE_RC_SUBQUERIES
Definition: nodeFuncs.h:24
static bool checkExprHasSubLink_walker(Node *node, void *context)
Definition: rewriteManip.c:308

References checkExprHasSubLink_walker(), QTW_IGNORE_RC_SUBQUERIES, and query_or_expression_tree_walker.

Referenced by AddQual(), flatten_join_alias_vars_mutator(), RelationBuildRowSecurity(), replace_rte_variables_mutator(), rewriteRuleAction(), and rewriteTargetView().

◆ CombineRangeTables()

void CombineRangeTables ( List **  dst_rtable,
List **  dst_perminfos,
List src_rtable,
List src_perminfos 
)

Definition at line 350 of file rewriteManip.c.

352 {
353  ListCell *l;
354  int offset = list_length(*dst_perminfos);
355 
356  if (offset > 0)
357  {
358  foreach(l, src_rtable)
359  {
361 
362  if (rte->perminfoindex > 0)
363  rte->perminfoindex += offset;
364  }
365  }
366 
367  *dst_perminfos = list_concat(*dst_perminfos, src_perminfos);
368  *dst_rtable = list_concat(*dst_rtable, src_rtable);
369 }
List * list_concat(List *list1, const List *list2)
Definition: list.c:560
#define lfirst_node(type, lc)
Definition: pg_list.h:176
static int list_length(const List *l)
Definition: pg_list.h:152
Index perminfoindex
Definition: parsenodes.h:1076

References lfirst_node, list_concat(), list_length(), and RangeTblEntry::perminfoindex.

Referenced by convert_EXISTS_sublink_to_join(), pull_up_simple_subquery(), pull_up_simple_union_all(), and rewriteRuleAction().

◆ contain_aggs_of_level()

bool contain_aggs_of_level ( Node node,
int  levelsup 
)

Definition at line 85 of file rewriteManip.c.

86 {
88 
89  context.sublevels_up = levelsup;
90 
91  /*
92  * Must be prepared to start with a Query or a bare expression tree; if
93  * it's a Query, we don't want to increment sublevels_up.
94  */
97  (void *) &context,
98  0);
99 }
static bool contain_aggs_of_level_walker(Node *node, contain_aggs_of_level_context *context)
Definition: rewriteManip.c:102

References contain_aggs_of_level_walker(), query_or_expression_tree_walker, and contain_aggs_of_level_context::sublevels_up.

Referenced by AddQual(), checkTargetlistEntrySQL92(), and convert_EXISTS_to_ANY().

◆ contain_windowfuncs()

bool contain_windowfuncs ( Node node)

Definition at line 215 of file rewriteManip.c.

216 {
217  /*
218  * Must be prepared to start with a Query or a bare expression tree; if
219  * it's a Query, we don't want to increment sublevels_up.
220  */
223  NULL,
224  0);
225 }
static bool contain_windowfuncs_walker(Node *node, void *context)
Definition: rewriteManip.c:228

References contain_windowfuncs_walker(), and query_or_expression_tree_walker.

Referenced by checkTargetlistEntrySQL92(), contain_window_function(), and transformWindowFuncCall().

◆ getInsertSelectQuery()

Query* getInsertSelectQuery ( Query parsetree,
Query ***  subquery_ptr 
)

Definition at line 985 of file rewriteManip.c.

986 {
987  Query *selectquery;
988  RangeTblEntry *selectrte;
989  RangeTblRef *rtr;
990 
991  if (subquery_ptr)
992  *subquery_ptr = NULL;
993 
994  if (parsetree == NULL)
995  return parsetree;
996  if (parsetree->commandType != CMD_INSERT)
997  return parsetree;
998 
999  /*
1000  * Currently, this is ONLY applied to rule-action queries, and so we
1001  * expect to find the OLD and NEW placeholder entries in the given query.
1002  * If they're not there, it must be an INSERT/SELECT in which they've been
1003  * pushed down to the SELECT.
1004  */
1005  if (list_length(parsetree->rtable) >= 2 &&
1006  strcmp(rt_fetch(PRS2_OLD_VARNO, parsetree->rtable)->eref->aliasname,
1007  "old") == 0 &&
1008  strcmp(rt_fetch(PRS2_NEW_VARNO, parsetree->rtable)->eref->aliasname,
1009  "new") == 0)
1010  return parsetree;
1011  Assert(parsetree->jointree && IsA(parsetree->jointree, FromExpr));
1012  if (list_length(parsetree->jointree->fromlist) != 1)
1013  elog(ERROR, "expected to find SELECT subquery");
1014  rtr = (RangeTblRef *) linitial(parsetree->jointree->fromlist);
1015  if (!IsA(rtr, RangeTblRef))
1016  elog(ERROR, "expected to find SELECT subquery");
1017  selectrte = rt_fetch(rtr->rtindex, parsetree->rtable);
1018  if (!(selectrte->rtekind == RTE_SUBQUERY &&
1019  selectrte->subquery &&
1020  IsA(selectrte->subquery, Query) &&
1021  selectrte->subquery->commandType == CMD_SELECT))
1022  elog(ERROR, "expected to find SELECT subquery");
1023  selectquery = selectrte->subquery;
1024  if (list_length(selectquery->rtable) >= 2 &&
1025  strcmp(rt_fetch(PRS2_OLD_VARNO, selectquery->rtable)->eref->aliasname,
1026  "old") == 0 &&
1027  strcmp(rt_fetch(PRS2_NEW_VARNO, selectquery->rtable)->eref->aliasname,
1028  "new") == 0)
1029  {
1030  if (subquery_ptr)
1031  *subquery_ptr = &(selectrte->subquery);
1032  return selectquery;
1033  }
1034  elog(ERROR, "could not find rule placeholders");
1035  return NULL; /* not reached */
1036 }
@ CMD_INSERT
Definition: nodes.h:278
@ CMD_SELECT
Definition: nodes.h:276
@ RTE_SUBQUERY
Definition: parsenodes.h:1015
#define rt_fetch(rangetable_index, rangetable)
Definition: parsetree.h:31
#define linitial(l)
Definition: pg_list.h:178
#define PRS2_OLD_VARNO
Definition: primnodes.h:222
#define PRS2_NEW_VARNO
Definition: primnodes.h:223
List * fromlist
Definition: primnodes.h:2004
List * rtable
Definition: parsenodes.h:175
Query * subquery
Definition: parsenodes.h:1081
RTEKind rtekind
Definition: parsenodes.h:1033

References Assert(), CMD_INSERT, CMD_SELECT, Query::commandType, elog(), ERROR, FromExpr::fromlist, IsA, Query::jointree, linitial, list_length(), PRS2_NEW_VARNO, PRS2_OLD_VARNO, rt_fetch, Query::rtable, RTE_SUBQUERY, RangeTblEntry::rtekind, RangeTblRef::rtindex, and RangeTblEntry::subquery.

Referenced by DefineQueryRewrite(), InsertRule(), make_ruledef(), rewriteRuleAction(), and transformRuleStmt().

◆ IncrementVarSublevelsUp()

void IncrementVarSublevelsUp ( Node node,
int  delta_sublevels_up,
int  min_sublevels_up 
)

Definition at line 836 of file rewriteManip.c.

838 {
840 
841  context.delta_sublevels_up = delta_sublevels_up;
842  context.min_sublevels_up = min_sublevels_up;
843 
844  /*
845  * Must be prepared to start with a Query or a bare expression tree; if
846  * it's a Query, we don't want to increment sublevels_up.
847  */
850  (void *) &context,
852 }
#define QTW_EXAMINE_RTES_BEFORE
Definition: nodeFuncs.h:27
static bool IncrementVarSublevelsUp_walker(Node *node, IncrementVarSublevelsUp_context *context)
Definition: rewriteManip.c:763

References IncrementVarSublevelsUp_context::delta_sublevels_up, IncrementVarSublevelsUp_walker(), IncrementVarSublevelsUp_context::min_sublevels_up, QTW_EXAMINE_RTES_BEFORE, and query_or_expression_tree_walker.

Referenced by assign_param_for_placeholdervar(), build_minmax_path(), convert_EXISTS_sublink_to_join(), convert_EXISTS_to_ANY(), extract_lateral_references(), flatten_join_alias_vars_mutator(), inline_cte_walker(), pull_up_simple_subquery(), pullup_replace_vars_callback(), replace_outer_agg(), replace_outer_grouping(), ReplaceVarsFromTargetList_callback(), rewriteSearchAndCycle(), and substitute_actual_srf_parameters_mutator().

◆ IncrementVarSublevelsUp_rtable()

void IncrementVarSublevelsUp_rtable ( List rtable,
int  delta_sublevels_up,
int  min_sublevels_up 
)

Definition at line 859 of file rewriteManip.c.

861 {
863 
864  context.delta_sublevels_up = delta_sublevels_up;
865  context.min_sublevels_up = min_sublevels_up;
866 
867  range_table_walker(rtable,
869  (void *) &context,
871 }
#define range_table_walker(rt, w, c, f)
Definition: nodeFuncs.h:161

References IncrementVarSublevelsUp_context::delta_sublevels_up, IncrementVarSublevelsUp_walker(), IncrementVarSublevelsUp_context::min_sublevels_up, QTW_EXAMINE_RTES_BEFORE, and range_table_walker.

Referenced by pull_up_simple_union_all().

◆ locate_agg_of_level()

int locate_agg_of_level ( Node node,
int  levelsup 
)

Definition at line 149 of file rewriteManip.c.

150 {
152 
153  context.agg_location = -1; /* in case we find nothing */
154  context.sublevels_up = levelsup;
155 
156  /*
157  * Must be prepared to start with a Query or a bare expression tree; if
158  * it's a Query, we don't want to increment sublevels_up.
159  */
162  (void *) &context,
163  0);
164 
165  return context.agg_location;
166 }
static bool locate_agg_of_level_walker(Node *node, locate_agg_of_level_context *context)
Definition: rewriteManip.c:169

References locate_agg_of_level_context::agg_location, locate_agg_of_level_walker(), query_or_expression_tree_walker, and locate_agg_of_level_context::sublevels_up.

Referenced by check_agg_arguments(), checkTargetlistEntrySQL92(), and parseCheckAggregates().

◆ locate_windowfunc()

int locate_windowfunc ( Node node)

Definition at line 253 of file rewriteManip.c.

254 {
256 
257  context.win_location = -1; /* in case we find nothing */
258 
259  /*
260  * Must be prepared to start with a Query or a bare expression tree; if
261  * it's a Query, we don't want to increment sublevels_up.
262  */
265  (void *) &context,
266  0);
267 
268  return context.win_location;
269 }
static bool locate_windowfunc_walker(Node *node, locate_windowfunc_context *context)
Definition: rewriteManip.c:272

References locate_windowfunc_walker(), query_or_expression_tree_walker, and locate_windowfunc_context::win_location.

Referenced by checkTargetlistEntrySQL92(), and transformWindowFuncCall().

◆ map_variable_attnos()

Node* map_variable_attnos ( Node node,
int  target_varno,
int  sublevels_up,
const struct AttrMap attno_map,
Oid  to_rowtype,
bool found_whole_row 
)

◆ OffsetVarNodes()

void OffsetVarNodes ( Node node,
int  offset,
int  sublevels_up 
)

Definition at line 480 of file rewriteManip.c.

481 {
482  OffsetVarNodes_context context;
483 
484  context.offset = offset;
485  context.sublevels_up = sublevels_up;
486 
487  /*
488  * Must be prepared to start with a Query or a bare expression tree; if
489  * it's a Query, go straight to query_tree_walker to make sure that
490  * sublevels_up doesn't get incremented prematurely.
491  */
492  if (node && IsA(node, Query))
493  {
494  Query *qry = (Query *) node;
495 
496  /*
497  * If we are starting at a Query, and sublevels_up is zero, then we
498  * must also fix rangetable indexes in the Query itself --- namely
499  * resultRelation, exclRelIndex and rowMarks entries. sublevels_up
500  * cannot be zero when recursing into a subquery, so there's no need
501  * to have the same logic inside OffsetVarNodes_walker.
502  */
503  if (sublevels_up == 0)
504  {
505  ListCell *l;
506 
507  if (qry->resultRelation)
508  qry->resultRelation += offset;
509 
510  if (qry->onConflict && qry->onConflict->exclRelIndex)
511  qry->onConflict->exclRelIndex += offset;
512 
513  foreach(l, qry->rowMarks)
514  {
515  RowMarkClause *rc = (RowMarkClause *) lfirst(l);
516 
517  rc->rti += offset;
518  }
519  }
521  (void *) &context, 0);
522  }
523  else
524  OffsetVarNodes_walker(node, &context);
525 }
static bool OffsetVarNodes_walker(Node *node, OffsetVarNodes_context *context)
Definition: rewriteManip.c:391

References OnConflictExpr::exclRelIndex, IsA, lfirst, OffsetVarNodes_context::offset, OffsetVarNodes_walker(), Query::onConflict, query_tree_walker, Query::rowMarks, RowMarkClause::rti, and OffsetVarNodes_context::sublevels_up.

Referenced by convert_EXISTS_sublink_to_join(), pull_up_simple_subquery(), and rewriteRuleAction().

◆ rangeTableEntry_used()

bool rangeTableEntry_used ( Node node,
int  rt_index,
int  sublevels_up 
)

Definition at line 953 of file rewriteManip.c.

954 {
956 
957  context.rt_index = rt_index;
958  context.sublevels_up = sublevels_up;
959 
960  /*
961  * Must be prepared to start with a Query or a bare expression tree; if
962  * it's a Query, we don't want to increment sublevels_up.
963  */
966  (void *) &context,
967  0);
968 }
static bool rangeTableEntry_used_walker(Node *node, rangeTableEntry_used_context *context)
Definition: rewriteManip.c:886

References query_or_expression_tree_walker, rangeTableEntry_used_walker(), rangeTableEntry_used_context::rt_index, and rangeTableEntry_used_context::sublevels_up.

Referenced by fireRIRrules(), matchLocks(), rewriteRuleAction(), and transformRuleStmt().

◆ remove_nulling_relids()

Node* remove_nulling_relids ( Node node,
const Bitmapset removable_relids,
const Bitmapset except_relids 
)

Definition at line 1221 of file rewriteManip.c.

1224 {
1226 
1227  context.removable_relids = removable_relids;
1228  context.except_relids = except_relids;
1229  context.sublevels_up = 0;
1232  &context,
1233  0);
1234 }
static Node * remove_nulling_relids_mutator(Node *node, remove_nulling_relids_context *context)
const Bitmapset * removable_relids
Definition: rewriteManip.c:52
const Bitmapset * except_relids
Definition: rewriteManip.c:53

References remove_nulling_relids_context::except_relids, query_or_expression_tree_mutator, remove_nulling_relids_context::removable_relids, remove_nulling_relids_mutator(), and remove_nulling_relids_context::sublevels_up.

Referenced by deconstruct_distribute_oj_quals(), have_partkey_equi_join(), reconsider_full_join_clause(), reduce_outer_joins(), and remove_useless_result_rtes().

◆ replace_rte_variables()

Node* replace_rte_variables ( Node node,
int  target_varno,
int  sublevels_up,
replace_rte_variables_callback  callback,
void *  callback_arg,
bool outer_hasSubLinks 
)

Definition at line 1329 of file rewriteManip.c.

1333 {
1334  Node *result;
1336 
1337  context.callback = callback;
1338  context.callback_arg = callback_arg;
1339  context.target_varno = target_varno;
1340  context.sublevels_up = sublevels_up;
1341 
1342  /*
1343  * We try to initialize inserted_sublink to true if there is no need to
1344  * detect new sublinks because the query already has some.
1345  */
1346  if (node && IsA(node, Query))
1347  context.inserted_sublink = ((Query *) node)->hasSubLinks;
1348  else if (outer_hasSubLinks)
1349  context.inserted_sublink = *outer_hasSubLinks;
1350  else
1351  context.inserted_sublink = false;
1352 
1353  /*
1354  * Must be prepared to start with a Query or a bare expression tree; if
1355  * it's a Query, we don't want to increment sublevels_up.
1356  */
1357  result = query_or_expression_tree_mutator(node,
1359  (void *) &context,
1360  0);
1361 
1362  if (context.inserted_sublink)
1363  {
1364  if (result && IsA(result, Query))
1365  ((Query *) result)->hasSubLinks = true;
1366  else if (outer_hasSubLinks)
1367  *outer_hasSubLinks = true;
1368  else
1369  elog(ERROR, "replace_rte_variables inserted a SubLink, but has noplace to record it");
1370  }
1371 
1372  return result;
1373 }
Node * replace_rte_variables_mutator(Node *node, replace_rte_variables_context *context)
replace_rte_variables_callback callback
Definition: rewriteManip.h:29
static void callback(struct sockaddr *addr, struct sockaddr *mask, void *unused)
Definition: test_ifaddrs.c:46

References replace_rte_variables_context::callback, callback(), replace_rte_variables_context::callback_arg, elog(), ERROR, replace_rte_variables_context::inserted_sublink, IsA, query_or_expression_tree_mutator, replace_rte_variables_mutator(), replace_rte_variables_context::sublevels_up, and replace_rte_variables_context::target_varno.

Referenced by pullup_replace_vars(), pullup_replace_vars_subquery(), and ReplaceVarsFromTargetList().

◆ replace_rte_variables_mutator()

Node* replace_rte_variables_mutator ( Node node,
replace_rte_variables_context context 
)

Definition at line 1376 of file rewriteManip.c.

1378 {
1379  if (node == NULL)
1380  return NULL;
1381  if (IsA(node, Var))
1382  {
1383  Var *var = (Var *) node;
1384 
1385  if (var->varno == context->target_varno &&
1386  var->varlevelsup == context->sublevels_up)
1387  {
1388  /* Found a matching variable, make the substitution */
1389  Node *newnode;
1390 
1391  newnode = context->callback(var, context);
1392  /* Detect if we are adding a sublink to query */
1393  if (!context->inserted_sublink)
1394  context->inserted_sublink = checkExprHasSubLink(newnode);
1395  return newnode;
1396  }
1397  /* otherwise fall through to copy the var normally */
1398  }
1399  else if (IsA(node, CurrentOfExpr))
1400  {
1401  CurrentOfExpr *cexpr = (CurrentOfExpr *) node;
1402 
1403  if (cexpr->cvarno == context->target_varno &&
1404  context->sublevels_up == 0)
1405  {
1406  /*
1407  * We get here if a WHERE CURRENT OF expression turns out to apply
1408  * to a view. Someday we might be able to translate the
1409  * expression to apply to an underlying table of the view, but
1410  * right now it's not implemented.
1411  */
1412  ereport(ERROR,
1413  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1414  errmsg("WHERE CURRENT OF on a view is not implemented")));
1415  }
1416  /* otherwise fall through to copy the expr normally */
1417  }
1418  else if (IsA(node, Query))
1419  {
1420  /* Recurse into RTE subquery or not-yet-planned sublink subquery */
1421  Query *newnode;
1422  bool save_inserted_sublink;
1423 
1424  context->sublevels_up++;
1425  save_inserted_sublink = context->inserted_sublink;
1426  context->inserted_sublink = ((Query *) node)->hasSubLinks;
1427  newnode = query_tree_mutator((Query *) node,
1429  (void *) context,
1430  0);
1431  newnode->hasSubLinks |= context->inserted_sublink;
1432  context->inserted_sublink = save_inserted_sublink;
1433  context->sublevels_up--;
1434  return (Node *) newnode;
1435  }
1437  (void *) context);
1438 }
#define expression_tree_mutator(n, m, c)
Definition: nodeFuncs.h:153
#define query_tree_mutator(q, m, c, f)
Definition: nodeFuncs.h:158
Definition: primnodes.h:226
int varno
Definition: primnodes.h:233
Index varlevelsup
Definition: primnodes.h:258

References replace_rte_variables_context::callback, checkExprHasSubLink(), CurrentOfExpr::cvarno, ereport, errcode(), errmsg(), ERROR, expression_tree_mutator, replace_rte_variables_context::inserted_sublink, IsA, query_tree_mutator, replace_rte_variables_context::sublevels_up, replace_rte_variables_context::target_varno, Var::varlevelsup, and Var::varno.

Referenced by pullup_replace_vars_callback(), replace_rte_variables(), and ReplaceVarsFromTargetList_callback().

◆ ReplaceVarsFromTargetList()

Node* ReplaceVarsFromTargetList ( Node node,
int  target_varno,
int  sublevels_up,
RangeTblEntry target_rte,
List targetlist,
ReplaceVarsNoMatchOption  nomatch_option,
int  nomatch_varno,
bool outer_hasSubLinks 
)

Definition at line 1756 of file rewriteManip.c.

1763 {
1765 
1766  context.target_rte = target_rte;
1767  context.targetlist = targetlist;
1768  context.nomatch_option = nomatch_option;
1769  context.nomatch_varno = nomatch_varno;
1770 
1771  return replace_rte_variables(node, target_varno, sublevels_up,
1773  (void *) &context,
1774  outer_hasSubLinks);
1775 }
Node * replace_rte_variables(Node *node, int target_varno, int sublevels_up, replace_rte_variables_callback callback, void *callback_arg, bool *outer_hasSubLinks)
static Node * ReplaceVarsFromTargetList_callback(Var *var, replace_rte_variables_context *context)
ReplaceVarsNoMatchOption nomatch_option

References ReplaceVarsFromTargetList_context::nomatch_option, ReplaceVarsFromTargetList_context::nomatch_varno, replace_rte_variables(), ReplaceVarsFromTargetList_callback(), ReplaceVarsFromTargetList_context::target_rte, and ReplaceVarsFromTargetList_context::targetlist.

Referenced by CopyAndAddInvertedQual(), rewriteRuleAction(), rewriteTargetView(), and subquery_push_qual().