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

Go to the source code of this file.

Functions

PlaceHolderVarmake_placeholder_expr (PlannerInfo *root, Expr *expr, Relids phrels)
 
PlaceHolderInfofind_placeholder_info (PlannerInfo *root, PlaceHolderVar *phv)
 
void find_placeholders_in_jointree (PlannerInfo *root)
 
void fix_placeholder_input_needed_levels (PlannerInfo *root)
 
void add_placeholders_to_base_rels (PlannerInfo *root)
 
void add_placeholders_to_joinrel (PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *outer_rel, RelOptInfo *inner_rel, SpecialJoinInfo *sjinfo)
 
bool contain_placeholder_references_to (PlannerInfo *root, Node *clause, int relid)
 

Function Documentation

◆ add_placeholders_to_base_rels()

void add_placeholders_to_base_rels ( PlannerInfo root)

Definition at line 329 of file placeholder.c.

330 {
331  ListCell *lc;
332 
333  foreach(lc, root->placeholder_list)
334  {
335  PlaceHolderInfo *phinfo = (PlaceHolderInfo *) lfirst(lc);
336  Relids eval_at = phinfo->ph_eval_at;
337  int varno;
338 
339  if (bms_get_singleton_member(eval_at, &varno) &&
340  bms_nonempty_difference(phinfo->ph_needed, eval_at))
341  {
342  RelOptInfo *rel = find_base_rel(root, varno);
343 
344  /*
345  * As in add_vars_to_targetlist(), a value computed at scan level
346  * has not yet been nulled by any outer join, so its phnullingrels
347  * should be empty.
348  */
349  Assert(phinfo->ph_var->phnullingrels == NULL);
350 
351  /* Copying the PHV might be unnecessary here, but be safe */
352  rel->reltarget->exprs = lappend(rel->reltarget->exprs,
353  copyObject(phinfo->ph_var));
354  /* reltarget's cost and width fields will be updated later */
355  }
356  }
357 }
bool bms_get_singleton_member(const Bitmapset *a, int *member)
Definition: bitmapset.c:652
bool bms_nonempty_difference(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:581
Assert(fmt[strlen(fmt) - 1] !='\n')
List * lappend(List *list, void *datum)
Definition: list.c:338
#define copyObject(obj)
Definition: nodes.h:244
#define lfirst(lc)
Definition: pg_list.h:172
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
Definition: relnode.c:405
List * exprs
Definition: pathnodes.h:1501
Relids ph_needed
Definition: pathnodes.h:3053
Relids ph_eval_at
Definition: pathnodes.h:3047
PlaceHolderVar * ph_var
Definition: pathnodes.h:3044
Relids phnullingrels
Definition: pathnodes.h:2753
List * placeholder_list
Definition: pathnodes.h:371
struct PathTarget * reltarget
Definition: pathnodes.h:878

References Assert(), bms_get_singleton_member(), bms_nonempty_difference(), copyObject, PathTarget::exprs, find_base_rel(), lappend(), lfirst, PlaceHolderInfo::ph_eval_at, PlaceHolderInfo::ph_needed, PlaceHolderInfo::ph_var, PlaceHolderVar::phnullingrels, PlannerInfo::placeholder_list, and RelOptInfo::reltarget.

Referenced by query_planner().

◆ add_placeholders_to_joinrel()

void add_placeholders_to_joinrel ( PlannerInfo root,
RelOptInfo joinrel,
RelOptInfo outer_rel,
RelOptInfo inner_rel,
SpecialJoinInfo sjinfo 
)

Definition at line 373 of file placeholder.c.

376 {
377  Relids relids = joinrel->relids;
378  ListCell *lc;
379 
380  foreach(lc, root->placeholder_list)
381  {
382  PlaceHolderInfo *phinfo = (PlaceHolderInfo *) lfirst(lc);
383 
384  /* Is it computable here? */
385  if (bms_is_subset(phinfo->ph_eval_at, relids))
386  {
387  /* Is it still needed above this joinrel? */
388  if (bms_nonempty_difference(phinfo->ph_needed, relids))
389  {
390  /*
391  * Yes, but only add to tlist if it wasn't computed in either
392  * input; otherwise it should be there already. Also, we
393  * charge the cost of evaluating the contained expression if
394  * the PHV can be computed here but not in either input. This
395  * is a bit bogus because we make the decision based on the
396  * first pair of possible input relations considered for the
397  * joinrel. With other pairs, it might be possible to compute
398  * the PHV in one input or the other, and then we'd be double
399  * charging the PHV's cost for some join paths. For now, live
400  * with that; but we might want to improve it later by
401  * refiguring the reltarget costs for each pair of inputs.
402  */
403  if (!bms_is_subset(phinfo->ph_eval_at, outer_rel->relids) &&
404  !bms_is_subset(phinfo->ph_eval_at, inner_rel->relids))
405  {
406  /* Copying might be unnecessary here, but be safe */
407  PlaceHolderVar *phv = copyObject(phinfo->ph_var);
408  QualCost cost;
409 
410  /*
411  * It'll start out not nulled by anything. Joins above
412  * this one might add to its phnullingrels later, in much
413  * the same way as for Vars.
414  */
415  Assert(phv->phnullingrels == NULL);
416 
417  joinrel->reltarget->exprs = lappend(joinrel->reltarget->exprs,
418  phv);
419  cost_qual_eval_node(&cost, (Node *) phv->phexpr, root);
420  joinrel->reltarget->cost.startup += cost.startup;
421  joinrel->reltarget->cost.per_tuple += cost.per_tuple;
422  joinrel->reltarget->width += phinfo->ph_width;
423  }
424  }
425 
426  /*
427  * Also adjust joinrel's direct_lateral_relids to include the
428  * PHV's source rel(s). We must do this even if we're not
429  * actually going to emit the PHV, otherwise join_is_legal() will
430  * reject valid join orderings. (In principle maybe we could
431  * instead remove the joinrel's lateral_relids dependency; but
432  * that's complicated to get right, and cases where we're not
433  * going to emit the PHV are too rare to justify the work.)
434  *
435  * In principle we should only do this if the join doesn't yet
436  * include the PHV's source rel(s). But our caller
437  * build_join_rel() will clean things up by removing the join's
438  * own relids from its direct_lateral_relids, so we needn't
439  * account for that here.
440  */
441  joinrel->direct_lateral_relids =
443  phinfo->ph_lateral);
444  }
445  }
446 }
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:363
Bitmapset * bms_add_members(Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:835
void cost_qual_eval_node(QualCost *cost, Node *qual, PlannerInfo *root)
Definition: costsize.c:4638
Definition: nodes.h:129
QualCost cost
Definition: pathnodes.h:1507
Relids ph_lateral
Definition: pathnodes.h:3050
Cost per_tuple
Definition: pathnodes.h:48
Cost startup
Definition: pathnodes.h:47
Relids relids
Definition: pathnodes.h:856
Relids direct_lateral_relids
Definition: pathnodes.h:896

References Assert(), bms_add_members(), bms_is_subset(), bms_nonempty_difference(), copyObject, PathTarget::cost, cost_qual_eval_node(), RelOptInfo::direct_lateral_relids, PathTarget::exprs, lappend(), lfirst, QualCost::per_tuple, PlaceHolderInfo::ph_eval_at, PlaceHolderInfo::ph_lateral, PlaceHolderInfo::ph_needed, PlaceHolderInfo::ph_var, PlaceHolderInfo::ph_width, PlaceHolderVar::phnullingrels, PlannerInfo::placeholder_list, RelOptInfo::relids, RelOptInfo::reltarget, QualCost::startup, and PathTarget::width.

Referenced by build_join_rel().

◆ contain_placeholder_references_to()

bool contain_placeholder_references_to ( PlannerInfo root,
Node clause,
int  relid 
)

Definition at line 461 of file placeholder.c.

463 {
465 
466  /* We can answer quickly in the common case that there's no PHVs at all */
467  if (root->glob->lastPHId == 0)
468  return false;
469  /* Else run the recursive search */
470  context.relid = relid;
471  context.sublevels_up = 0;
472  return contain_placeholder_references_walker(clause, &context);
473 }
static bool contain_placeholder_references_walker(Node *node, contain_placeholder_references_context *context)
Definition: placeholder.c:476
Index lastPHId
Definition: pathnodes.h:138
PlannerGlobal * glob
Definition: pathnodes.h:202

References contain_placeholder_references_walker(), PlannerInfo::glob, PlannerGlobal::lastPHId, contain_placeholder_references_context::relid, and contain_placeholder_references_context::sublevels_up.

Referenced by make_outerjoininfo().

◆ find_placeholder_info()

PlaceHolderInfo* find_placeholder_info ( PlannerInfo root,
PlaceHolderVar phv 
)

Definition at line 83 of file placeholder.c.

84 {
85  PlaceHolderInfo *phinfo;
86  Relids rels_used;
87 
88  /* if this ever isn't true, we'd need to be able to look in parent lists */
89  Assert(phv->phlevelsup == 0);
90 
91  /* Use placeholder_array to look up existing PlaceHolderInfo quickly */
92  if (phv->phid < root->placeholder_array_size)
93  phinfo = root->placeholder_array[phv->phid];
94  else
95  phinfo = NULL;
96  if (phinfo != NULL)
97  {
98  Assert(phinfo->phid == phv->phid);
99  return phinfo;
100  }
101 
102  /* Not found, so create it */
103  if (root->placeholdersFrozen)
104  elog(ERROR, "too late to create a new PlaceHolderInfo");
105 
106  phinfo = makeNode(PlaceHolderInfo);
107 
108  phinfo->phid = phv->phid;
109  phinfo->ph_var = copyObject(phv);
110 
111  /*
112  * By convention, phinfo->ph_var->phnullingrels is always empty, since the
113  * PlaceHolderInfo represents the initially-calculated state of the
114  * PlaceHolderVar. PlaceHolderVars appearing in the query tree might have
115  * varying values of phnullingrels, reflecting outer joins applied above
116  * the calculation level.
117  */
118  phinfo->ph_var->phnullingrels = NULL;
119 
120  /*
121  * Any referenced rels that are outside the PHV's syntactic scope are
122  * LATERAL references, which should be included in ph_lateral but not in
123  * ph_eval_at. If no referenced rels are within the syntactic scope,
124  * force evaluation at the syntactic location.
125  */
126  rels_used = pull_varnos(root, (Node *) phv->phexpr);
127  phinfo->ph_lateral = bms_difference(rels_used, phv->phrels);
128  phinfo->ph_eval_at = bms_int_members(rels_used, phv->phrels);
129  /* If no contained vars, force evaluation at syntactic location */
130  if (bms_is_empty(phinfo->ph_eval_at))
131  {
132  phinfo->ph_eval_at = bms_copy(phv->phrels);
133  Assert(!bms_is_empty(phinfo->ph_eval_at));
134  }
135  phinfo->ph_needed = NULL; /* initially it's unused */
136  /* for the moment, estimate width using just the datatype info */
137  phinfo->ph_width = get_typavgwidth(exprType((Node *) phv->phexpr),
138  exprTypmod((Node *) phv->phexpr));
139 
140  /*
141  * Add to both placeholder_list and placeholder_array. Note: because we
142  * store pointers to the PlaceHolderInfos in two data structures, it'd be
143  * unsafe to pass the whole placeholder_list structure through
144  * expression_tree_mutator or the like --- or at least, you'd have to
145  * rebuild the placeholder_array afterwards.
146  */
147  root->placeholder_list = lappend(root->placeholder_list, phinfo);
148 
149  if (phinfo->phid >= root->placeholder_array_size)
150  {
151  /* Must allocate or enlarge placeholder_array */
152  int new_size;
153 
154  new_size = root->placeholder_array_size ? root->placeholder_array_size * 2 : 8;
155  while (phinfo->phid >= new_size)
156  new_size *= 2;
157  if (root->placeholder_array)
158  root->placeholder_array =
159  repalloc0_array(root->placeholder_array, PlaceHolderInfo *, root->placeholder_array_size, new_size);
160  else
161  root->placeholder_array =
162  palloc0_array(PlaceHolderInfo *, new_size);
163  root->placeholder_array_size = new_size;
164  }
165  root->placeholder_array[phinfo->phid] = phinfo;
166 
167  /*
168  * The PHV's contained expression may contain other, lower-level PHVs. We
169  * now know we need to get those into the PlaceHolderInfo list, too, so we
170  * may as well do that immediately.
171  */
172  find_placeholders_in_expr(root, (Node *) phinfo->ph_var->phexpr);
173 
174  return phinfo;
175 }
Bitmapset * bms_difference(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:297
Bitmapset * bms_int_members(Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:951
Bitmapset * bms_copy(const Bitmapset *a)
Definition: bitmapset.c:80
#define bms_is_empty(a)
Definition: bitmapset.h:105
#define ERROR
Definition: elog.h:39
#define palloc0_array(type, count)
Definition: fe_memutils.h:65
int32 get_typavgwidth(Oid typid, int32 typmod)
Definition: lsyscache.c:2560
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:43
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:282
#define makeNode(_type_)
Definition: nodes.h:176
#define repalloc0_array(pointer, type, oldcount, count)
Definition: palloc.h:110
static void find_placeholders_in_expr(PlannerInfo *root, Node *expr)
Definition: placeholder.c:257
Index phlevelsup
Definition: pathnodes.h:2759
bool placeholdersFrozen
Definition: pathnodes.h:499
Relids pull_varnos(PlannerInfo *root, Node *node)
Definition: var.c:108

References Assert(), bms_copy(), bms_difference(), bms_int_members(), bms_is_empty, copyObject, elog(), ERROR, exprType(), exprTypmod(), find_placeholders_in_expr(), get_typavgwidth(), lappend(), makeNode, palloc0_array, PlaceHolderInfo::ph_eval_at, PlaceHolderInfo::ph_lateral, PlaceHolderInfo::ph_needed, PlaceHolderInfo::ph_var, PlaceHolderInfo::ph_width, PlaceHolderVar::phid, PlaceHolderInfo::phid, PlaceHolderVar::phlevelsup, PlaceHolderVar::phnullingrels, PlannerInfo::placeholder_list, PlannerInfo::placeholdersFrozen, pull_varnos(), and repalloc0_array.

Referenced by add_vars_to_targetlist(), build_joinrel_tlist(), create_lateral_join_info(), find_placeholders_in_expr(), identify_current_nestloop_params(), process_subquery_nestloop_params(), replace_nestloop_params_mutator(), and set_rel_width().

◆ find_placeholders_in_jointree()

void find_placeholders_in_jointree ( PlannerInfo root)

Definition at line 185 of file placeholder.c.

186 {
187  /* This must be done before freezing the set of PHIs */
188  Assert(!root->placeholdersFrozen);
189 
190  /* We need do nothing if the query contains no PlaceHolderVars */
191  if (root->glob->lastPHId != 0)
192  {
193  /* Start recursion at top of jointree */
194  Assert(root->parse->jointree != NULL &&
195  IsA(root->parse->jointree, FromExpr));
196  find_placeholders_recurse(root, (Node *) root->parse->jointree);
197  }
198 }
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
static void find_placeholders_recurse(PlannerInfo *root, Node *jtnode)
Definition: placeholder.c:207
Query * parse
Definition: pathnodes.h:199
FromExpr * jointree
Definition: parsenodes.h:174

References Assert(), find_placeholders_recurse(), PlannerInfo::glob, IsA, Query::jointree, PlannerGlobal::lastPHId, PlannerInfo::parse, and PlannerInfo::placeholdersFrozen.

Referenced by query_planner().

◆ fix_placeholder_input_needed_levels()

void fix_placeholder_input_needed_levels ( PlannerInfo root)

Definition at line 300 of file placeholder.c.

301 {
302  ListCell *lc;
303 
304  foreach(lc, root->placeholder_list)
305  {
306  PlaceHolderInfo *phinfo = (PlaceHolderInfo *) lfirst(lc);
307  List *vars = pull_var_clause((Node *) phinfo->ph_var->phexpr,
311 
312  add_vars_to_targetlist(root, vars, phinfo->ph_eval_at);
313  list_free(vars);
314  }
315 }
void add_vars_to_targetlist(PlannerInfo *root, List *vars, Relids where_needed)
Definition: initsplan.c:280
void list_free(List *list)
Definition: list.c:1545
#define PVC_RECURSE_AGGREGATES
Definition: optimizer.h:186
#define PVC_RECURSE_WINDOWFUNCS
Definition: optimizer.h:188
#define PVC_INCLUDE_PLACEHOLDERS
Definition: optimizer.h:189
Definition: pg_list.h:54
Definition: regcomp.c:281
List * pull_var_clause(Node *node, int flags)
Definition: var.c:607

References add_vars_to_targetlist(), lfirst, list_free(), PlaceHolderInfo::ph_eval_at, PlaceHolderInfo::ph_var, PlannerInfo::placeholder_list, pull_var_clause(), PVC_INCLUDE_PLACEHOLDERS, PVC_RECURSE_AGGREGATES, and PVC_RECURSE_WINDOWFUNCS.

Referenced by query_planner().

◆ make_placeholder_expr()

PlaceHolderVar* make_placeholder_expr ( PlannerInfo root,
Expr expr,
Relids  phrels 
)

Definition at line 54 of file placeholder.c.

55 {
57 
58  phv->phexpr = expr;
59  phv->phrels = phrels;
60  phv->phnullingrels = NULL; /* caller may change this later */
61  phv->phid = ++(root->glob->lastPHId);
62  phv->phlevelsup = 0; /* caller may change this later */
63 
64  return phv;
65 }

References PlannerInfo::glob, PlannerGlobal::lastPHId, makeNode, PlaceHolderVar::phid, PlaceHolderVar::phlevelsup, and PlaceHolderVar::phnullingrels.

Referenced by add_nullingrels_if_needed(), and pullup_replace_vars_callback().