PostgreSQL Source Code git master
pathnodes.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pathnodes.h
4 * Definitions for planner's internal data structures, especially Paths.
5 *
6 * We don't support copying RelOptInfo, IndexOptInfo, or Path nodes.
7 * There are some subsidiary structs that are useful to copy, though.
8 *
9 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
10 * Portions Copyright (c) 1994, Regents of the University of California
11 *
12 * src/include/nodes/pathnodes.h
13 *
14 *-------------------------------------------------------------------------
15 */
16#ifndef PATHNODES_H
17#define PATHNODES_H
18
19#include "access/sdir.h"
20#include "lib/stringinfo.h"
21#include "nodes/params.h"
22#include "nodes/parsenodes.h"
23#include "storage/block.h"
24
25
26/*
27 * Relids
28 * Set of relation identifiers (indexes into the rangetable).
29 */
31
32/*
33 * When looking for a "cheapest path", this enum specifies whether we want
34 * cheapest startup cost or cheapest total cost.
35 */
36typedef enum CostSelector
37{
40
41/*
42 * The cost estimate produced by cost_qual_eval() includes both a one-time
43 * (startup) cost, and a per-tuple cost.
44 */
45typedef struct QualCost
46{
47 Cost startup; /* one-time cost */
48 Cost per_tuple; /* per-evaluation cost */
50
51/*
52 * Costing aggregate function execution requires these statistics about
53 * the aggregates to be executed by a given Agg node. Note that the costs
54 * include the execution costs of the aggregates' argument expressions as
55 * well as the aggregate functions themselves. Also, the fields must be
56 * defined so that initializing the struct to zeroes with memset is correct.
57 */
58typedef struct AggClauseCosts
59{
60 QualCost transCost; /* total per-input-row execution costs */
61 QualCost finalCost; /* total per-aggregated-row costs */
62 Size transitionSpace; /* space for pass-by-ref transition data */
64
65/*
66 * This enum identifies the different types of "upper" (post-scan/join)
67 * relations that we might deal with during planning.
68 */
70{
71 UPPERREL_SETOP, /* result of UNION/INTERSECT/EXCEPT, if any */
72 UPPERREL_PARTIAL_GROUP_AGG, /* result of partial grouping/aggregation, if
73 * any */
74 UPPERREL_GROUP_AGG, /* result of grouping/aggregation, if any */
75 UPPERREL_WINDOW, /* result of window functions, if any */
76 UPPERREL_PARTIAL_DISTINCT, /* result of partial "SELECT DISTINCT", if any */
77 UPPERREL_DISTINCT, /* result of "SELECT DISTINCT", if any */
78 UPPERREL_ORDERED, /* result of ORDER BY, if any */
79 UPPERREL_FINAL, /* result of any remaining top-level actions */
80 /* NB: UPPERREL_FINAL must be last enum entry; it's used to size arrays */
82
83/*----------
84 * PlannerGlobal
85 * Global information for planning/optimization
86 *
87 * PlannerGlobal holds state for an entire planner invocation; this state
88 * is shared across all levels of sub-Queries that exist in the command being
89 * planned.
90 *
91 * Not all fields are printed. (In some cases, there is no print support for
92 * the field type; in others, doing so would lead to infinite recursion.)
93 *----------
94 */
95typedef struct PlannerGlobal
96{
97 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
98
100
101 /* Param values provided to planner() */
102 ParamListInfo boundParams pg_node_attr(read_write_ignore);
103
104 /* Plans for SubPlan nodes */
106
107 /* Paths from which the SubPlan Plans were made */
109
110 /* PlannerInfos for SubPlan nodes */
111 List *subroots pg_node_attr(read_write_ignore);
112
113 /* indices of subplans that require REWIND */
115
116 /* "flat" rangetable for executor */
118
119 /*
120 * RT indexes of all relation RTEs in finalrtable (RTE_RELATION and
121 * RTE_SUBQUERY RTEs of views)
122 */
124
125 /*
126 * RT indexes of all leaf partitions in nodes that support pruning and are
127 * subject to runtime pruning at plan initialization time ("initial"
128 * pruning).
129 */
131
132 /* "flat" list of RTEPermissionInfos */
134
135 /* "flat" list of PlanRowMarks */
137
138 /* "flat" list of integer RT indexes */
140
141 /* "flat" list of AppendRelInfos */
143
144 /* "flat" list of PartitionPruneInfos */
146
147 /* OIDs of relations the plan depends on */
149
150 /* other dependencies, as PlanInvalItems */
152
153 /* type OIDs for PARAM_EXEC Params */
155
156 /* highest PlaceHolderVar ID assigned */
158
159 /* highest PlanRowMark ID assigned */
161
162 /* highest plan node ID assigned */
164
165 /* redo plan when TransactionXmin changes? */
167
168 /* is plan specific to current role? */
170
171 /* parallel mode potentially OK? */
173
174 /* parallel mode actually required? */
176
177 /* worst PROPARALLEL hazard level */
179
180 /* partition descriptors */
181 PartitionDirectory partition_directory pg_node_attr(read_write_ignore);
183
184/* macro for fetching the Plan associated with a SubPlan node */
185#define planner_subplan_get_plan(root, subplan) \
186 ((Plan *) list_nth((root)->glob->subplans, (subplan)->plan_id - 1))
187
188
189/*----------
190 * PlannerInfo
191 * Per-query information for planning/optimization
192 *
193 * This struct is conventionally called "root" in all the planner routines.
194 * It holds links to all of the planner's working state, in addition to the
195 * original Query. Note that at present the planner extensively modifies
196 * the passed-in Query data structure; someday that should stop.
197 *
198 * For reasons explained in optimizer/optimizer.h, we define the typedef
199 * either here or in that header, whichever is read first.
200 *
201 * Not all fields are printed. (In some cases, there is no print support for
202 * the field type; in others, doing so would lead to infinite recursion or
203 * bloat dump output more than seems useful.)
204 *
205 * NOTE: When adding new entries containing relids and relid bitmapsets,
206 * remember to check that they will be correctly processed by
207 * the remove_self_join_rel function - relid of removing relation will be
208 * correctly replaced with the keeping one.
209 *----------
210 */
211#ifndef HAVE_PLANNERINFO_TYPEDEF
213#define HAVE_PLANNERINFO_TYPEDEF 1
214#endif
215
217{
218 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
219
221
222 /* the Query being planned */
224
225 /* global info for current planner run */
227
228 /* 1 at the outermost Query */
230
231 /* NULL at outermost Query */
232 PlannerInfo *parent_root pg_node_attr(read_write_ignore);
233
234 /*
235 * plan_params contains the expressions that this query level needs to
236 * make available to a lower query level that is currently being planned.
237 * outer_params contains the paramIds of PARAM_EXEC Params that outer
238 * query levels will make available to this query level.
239 */
240 /* list of PlannerParamItems, see below */
243
244 /*
245 * simple_rel_array holds pointers to "base rels" and "other rels" (see
246 * comments for RelOptInfo for more info). It is indexed by rangetable
247 * index (so entry 0 is always wasted). Entries can be NULL when an RTE
248 * does not correspond to a base relation, such as a join RTE or an
249 * unreferenced view RTE; or if the RelOptInfo hasn't been made yet.
250 */
251 struct RelOptInfo **simple_rel_array pg_node_attr(array_size(simple_rel_array_size));
252 /* allocated size of array */
254
255 /*
256 * simple_rte_array is the same length as simple_rel_array and holds
257 * pointers to the associated rangetable entries. Using this is a shade
258 * faster than using rt_fetch(), mostly due to fewer indirections. (Not
259 * printed because it'd be redundant with parse->rtable.)
260 */
261 RangeTblEntry **simple_rte_array pg_node_attr(read_write_ignore);
262
263 /*
264 * append_rel_array is the same length as the above arrays, and holds
265 * pointers to the corresponding AppendRelInfo entry indexed by
266 * child_relid, or NULL if the rel is not an appendrel child. The array
267 * itself is not allocated if append_rel_list is empty. (Not printed
268 * because it'd be redundant with append_rel_list.)
269 */
270 struct AppendRelInfo **append_rel_array pg_node_attr(read_write_ignore);
271
272 /*
273 * all_baserels is a Relids set of all base relids (but not joins or
274 * "other" rels) in the query. This is computed in deconstruct_jointree.
275 */
277
278 /*
279 * outer_join_rels is a Relids set of all outer-join relids in the query.
280 * This is computed in deconstruct_jointree.
281 */
283
284 /*
285 * all_query_rels is a Relids set of all base relids and outer join relids
286 * (but not "other" relids) in the query. This is the Relids identifier
287 * of the final join we need to form. This is computed in
288 * deconstruct_jointree.
289 */
291
292 /*
293 * join_rel_list is a list of all join-relation RelOptInfos we have
294 * considered in this planning run. For small problems we just scan the
295 * list to do lookups, but when there are many join relations we build a
296 * hash table for faster lookups. The hash table is present and valid
297 * when join_rel_hash is not NULL. Note that we still maintain the list
298 * even when using the hash table for lookups; this simplifies life for
299 * GEQO.
300 */
302 struct HTAB *join_rel_hash pg_node_attr(read_write_ignore);
303
304 /*
305 * When doing a dynamic-programming-style join search, join_rel_level[k]
306 * is a list of all join-relation RelOptInfos of level k, and
307 * join_cur_level is the current level. New join-relation RelOptInfos are
308 * automatically added to the join_rel_level[join_cur_level] list.
309 * join_rel_level is NULL if not in use.
310 *
311 * Note: we've already printed all baserel and joinrel RelOptInfos above,
312 * so we don't dump join_rel_level or other lists of RelOptInfos.
313 */
314 /* lists of join-relation RelOptInfos */
315 List **join_rel_level pg_node_attr(read_write_ignore);
316 /* index of list being extended */
318
319 /* init SubPlans for query */
321
322 /*
323 * per-CTE-item list of subplan IDs (or -1 if no subplan was made for that
324 * CTE)
325 */
327
328 /* List of Lists of Params for MULTIEXPR subquery outputs */
330
331 /* list of JoinDomains used in the query (higher ones first) */
333
334 /* list of active EquivalenceClasses */
336
337 /* set true once ECs are canonical */
339
340 /* list of "canonical" PathKeys */
342
343 /*
344 * list of OuterJoinClauseInfos for mergejoinable outer join clauses
345 * w/nonnullable var on left
346 */
348
349 /*
350 * list of OuterJoinClauseInfos for mergejoinable outer join clauses
351 * w/nonnullable var on right
352 */
354
355 /*
356 * list of OuterJoinClauseInfos for mergejoinable full join clauses
357 */
359
360 /* list of SpecialJoinInfos */
362
363 /* counter for assigning RestrictInfo serial numbers */
365
366 /*
367 * all_result_relids is empty for SELECT, otherwise it contains at least
368 * parse->resultRelation. For UPDATE/DELETE/MERGE across an inheritance
369 * or partitioning tree, the result rel's child relids are added. When
370 * using multi-level partitioning, intermediate partitioned rels are
371 * included. leaf_result_relids is similar except that only actual result
372 * tables, not partitioned tables, are included in it.
373 */
374 /* set of all result relids */
376 /* set of all leaf relids */
378
379 /*
380 * list of AppendRelInfos
381 *
382 * Note: for AppendRelInfos describing partitions of a partitioned table,
383 * we guarantee that partitions that come earlier in the partitioned
384 * table's PartitionDesc will appear earlier in append_rel_list.
385 */
387
388 /* list of RowIdentityVarInfos */
390
391 /* list of PlanRowMarks */
393
394 /* list of PlaceHolderInfos */
396
397 /* array of PlaceHolderInfos indexed by phid */
398 struct PlaceHolderInfo **placeholder_array pg_node_attr(read_write_ignore, array_size(placeholder_array_size));
399 /* allocated size of array */
400 int placeholder_array_size pg_node_attr(read_write_ignore);
401
402 /* list of ForeignKeyOptInfos */
404
405 /* desired pathkeys for query_planner() */
407
408 /* groupClause pathkeys, if any */
410
411 /*
412 * The number of elements in the group_pathkeys list which belong to the
413 * GROUP BY clause. Additional ones belong to ORDER BY / DISTINCT
414 * aggregates.
415 */
417
418 /* pathkeys of bottom window, if any */
420 /* distinctClause pathkeys, if any */
422 /* sortClause pathkeys, if any */
424 /* set operator pathkeys, if any */
426
427 /* Canonicalised partition schemes used in the query. */
428 List *part_schemes pg_node_attr(read_write_ignore);
429
430 /* RelOptInfos we are now trying to join */
431 List *initial_rels pg_node_attr(read_write_ignore);
432
433 /*
434 * Upper-rel RelOptInfos. Use fetch_upper_rel() to get any particular
435 * upper rel.
436 */
437 List *upper_rels[UPPERREL_FINAL + 1] pg_node_attr(read_write_ignore);
438
439 /* Result tlists chosen by grouping_planner for upper-stage processing */
440 struct PathTarget *upper_targets[UPPERREL_FINAL + 1] pg_node_attr(read_write_ignore);
441
442 /*
443 * The fully-processed groupClause is kept here. It differs from
444 * parse->groupClause in that we remove any items that we can prove
445 * redundant, so that only the columns named here actually need to be
446 * compared to determine grouping. Note that it's possible for *all* the
447 * items to be proven redundant, implying that there is only one group
448 * containing all the query's rows. Hence, if you want to check whether
449 * GROUP BY was specified, test for nonempty parse->groupClause, not for
450 * nonempty processed_groupClause. Optimizer chooses specific order of
451 * group-by clauses during the upper paths generation process, attempting
452 * to use different strategies to minimize number of sorts or engage
453 * incremental sort. See preprocess_groupclause() and
454 * get_useful_group_keys_orderings() for details.
455 *
456 * Currently, when grouping sets are specified we do not attempt to
457 * optimize the groupClause, so that processed_groupClause will be
458 * identical to parse->groupClause.
459 */
461
462 /*
463 * The fully-processed distinctClause is kept here. It differs from
464 * parse->distinctClause in that we remove any items that we can prove
465 * redundant, so that only the columns named here actually need to be
466 * compared to determine uniqueness. Note that it's possible for *all*
467 * the items to be proven redundant, implying that there should be only
468 * one output row. Hence, if you want to check whether DISTINCT was
469 * specified, test for nonempty parse->distinctClause, not for nonempty
470 * processed_distinctClause.
471 */
473
474 /*
475 * The fully-processed targetlist is kept here. It differs from
476 * parse->targetList in that (for INSERT) it's been reordered to match the
477 * target table, and defaults have been filled in. Also, additional
478 * resjunk targets may be present. preprocess_targetlist() does most of
479 * that work, but note that more resjunk targets can get added during
480 * appendrel expansion. (Hence, upper_targets mustn't get set up till
481 * after that.)
482 */
484
485 /*
486 * For UPDATE, this list contains the target table's attribute numbers to
487 * which the first N entries of processed_tlist are to be assigned. (Any
488 * additional entries in processed_tlist must be resjunk.) DO NOT use the
489 * resnos in processed_tlist to identify the UPDATE target columns.
490 */
492
493 /*
494 * Fields filled during create_plan() for use in setrefs.c
495 */
496 /* for GroupingFunc fixup (can't print: array length not known here) */
497 AttrNumber *grouping_map pg_node_attr(read_write_ignore);
498 /* List of MinMaxAggInfos */
500
501 /* context holding PlannerInfo */
502 MemoryContext planner_cxt pg_node_attr(read_write_ignore);
503
504 /* # of pages in all non-dummy tables of query */
506
507 /* tuple_fraction passed to query_planner */
509 /* limit_tuples passed to query_planner */
511
512 /*
513 * Minimum security_level for quals. Note: qual_security_level is zero if
514 * there are no securityQuals.
515 */
517
518 /* true if any RTEs are RTE_JOIN kind */
520 /* true if any RTEs are marked LATERAL */
522 /* true if havingQual was non-null */
524 /* true if any RestrictInfo has pseudoconstant = true */
526 /* true if we've made any of those */
528 /* true once we're no longer allowed to add PlaceHolderInfos */
530 /* true if planning a recursive WITH item */
532
533 /*
534 * The rangetable index for the RTE_GROUP RTE, or 0 if there is no
535 * RTE_GROUP RTE.
536 */
538
539 /*
540 * Information about aggregates. Filled by preprocess_aggrefs().
541 */
542 /* AggInfo structs */
544 /* AggTransInfo structs */
546 /* number of aggs with DISTINCT/ORDER BY/WITHIN GROUP */
548 /* does any agg not support partial mode? */
550 /* is any partial agg non-serializable? */
552
553 /*
554 * These fields are used only when hasRecursion is true:
555 */
556 /* PARAM_EXEC ID for the work table */
558 /* a path for non-recursive term */
560
561 /*
562 * These fields are workspace for createplan.c
563 */
564 /* outer rels above current node */
566 /* not-yet-assigned NestLoopParams */
568
569 /*
570 * These fields are workspace for setrefs.c. Each is an array
571 * corresponding to glob->subplans. (We could probably teach
572 * gen_node_support.pl how to determine the array length, but it doesn't
573 * seem worth the trouble, so just mark them read_write_ignore.)
574 */
575 bool *isAltSubplan pg_node_attr(read_write_ignore);
576 bool *isUsedSubplan pg_node_attr(read_write_ignore);
577
578 /* optional private data for join_search_hook, e.g., GEQO */
579 void *join_search_private pg_node_attr(read_write_ignore);
580
581 /* Does this query modify any partition key columns? */
583
584 /* PartitionPruneInfos added in this query's plan. */
586};
587
588
589/*
590 * In places where it's known that simple_rte_array[] must have been prepared
591 * already, we just index into it to fetch RTEs. In code that might be
592 * executed before or after entering query_planner(), use this macro.
593 */
594#define planner_rt_fetch(rti, root) \
595 ((root)->simple_rte_array ? (root)->simple_rte_array[rti] : \
596 rt_fetch(rti, (root)->parse->rtable))
597
598/*
599 * If multiple relations are partitioned the same way, all such partitions
600 * will have a pointer to the same PartitionScheme. A list of PartitionScheme
601 * objects is attached to the PlannerInfo. By design, the partition scheme
602 * incorporates only the general properties of the partition method (LIST vs.
603 * RANGE, number of partitioning columns and the type information for each)
604 * and not the specific bounds.
605 *
606 * We store the opclass-declared input data types instead of the partition key
607 * datatypes since the former rather than the latter are used to compare
608 * partition bounds. Since partition key data types and the opclass declared
609 * input data types are expected to be binary compatible (per ResolveOpClass),
610 * both of those should have same byval and length properties.
611 */
613{
614 char strategy; /* partition strategy */
615 int16 partnatts; /* number of partition attributes */
616 Oid *partopfamily; /* OIDs of operator families */
617 Oid *partopcintype; /* OIDs of opclass declared input data types */
618 Oid *partcollation; /* OIDs of partitioning collations */
619
620 /* Cached information about partition key data types. */
623
624 /* Cached information about partition comparison functions. */
627
629
630/*----------
631 * RelOptInfo
632 * Per-relation information for planning/optimization
633 *
634 * For planning purposes, a "base rel" is either a plain relation (a table)
635 * or the output of a sub-SELECT or function that appears in the range table.
636 * In either case it is uniquely identified by an RT index. A "joinrel"
637 * is the joining of two or more base rels. A joinrel is identified by
638 * the set of RT indexes for its component baserels, along with RT indexes
639 * for any outer joins it has computed. We create RelOptInfo nodes for each
640 * baserel and joinrel, and store them in the PlannerInfo's simple_rel_array
641 * and join_rel_list respectively.
642 *
643 * Note that there is only one joinrel for any given set of component
644 * baserels, no matter what order we assemble them in; so an unordered
645 * set is the right datatype to identify it with.
646 *
647 * We also have "other rels", which are like base rels in that they refer to
648 * single RT indexes; but they are not part of the join tree, and are given
649 * a different RelOptKind to identify them.
650 * Currently the only kind of otherrels are those made for member relations
651 * of an "append relation", that is an inheritance set or UNION ALL subquery.
652 * An append relation has a parent RTE that is a base rel, which represents
653 * the entire append relation. The member RTEs are otherrels. The parent
654 * is present in the query join tree but the members are not. The member
655 * RTEs and otherrels are used to plan the scans of the individual tables or
656 * subqueries of the append set; then the parent baserel is given Append
657 * and/or MergeAppend paths comprising the best paths for the individual
658 * member rels. (See comments for AppendRelInfo for more information.)
659 *
660 * At one time we also made otherrels to represent join RTEs, for use in
661 * handling join alias Vars. Currently this is not needed because all join
662 * alias Vars are expanded to non-aliased form during preprocess_expression.
663 *
664 * We also have relations representing joins between child relations of
665 * different partitioned tables. These relations are not added to
666 * join_rel_level lists as they are not joined directly by the dynamic
667 * programming algorithm.
668 *
669 * There is also a RelOptKind for "upper" relations, which are RelOptInfos
670 * that describe post-scan/join processing steps, such as aggregation.
671 * Many of the fields in these RelOptInfos are meaningless, but their Path
672 * fields always hold Paths showing ways to do that processing step.
673 *
674 * Parts of this data structure are specific to various scan and join
675 * mechanisms. It didn't seem worth creating new node types for them.
676 *
677 * relids - Set of relation identifiers (RT indexes). This is a base
678 * relation if there is just one, a join relation if more;
679 * in the join case, RT indexes of any outer joins formed
680 * at or below this join are included along with baserels
681 * rows - estimated number of tuples in the relation after restriction
682 * clauses have been applied (ie, output rows of a plan for it)
683 * consider_startup - true if there is any value in keeping plain paths for
684 * this rel on the basis of having cheap startup cost
685 * consider_param_startup - the same for parameterized paths
686 * reltarget - Default Path output tlist for this rel; normally contains
687 * Var and PlaceHolderVar nodes for the values we need to
688 * output from this relation.
689 * List is in no particular order, but all rels of an
690 * appendrel set must use corresponding orders.
691 * NOTE: in an appendrel child relation, may contain
692 * arbitrary expressions pulled up from a subquery!
693 * pathlist - List of Path nodes, one for each potentially useful
694 * method of generating the relation
695 * ppilist - ParamPathInfo nodes for parameterized Paths, if any
696 * cheapest_startup_path - the pathlist member with lowest startup cost
697 * (regardless of ordering) among the unparameterized paths;
698 * or NULL if there is no unparameterized path
699 * cheapest_total_path - the pathlist member with lowest total cost
700 * (regardless of ordering) among the unparameterized paths;
701 * or if there is no unparameterized path, the path with lowest
702 * total cost among the paths with minimum parameterization
703 * cheapest_unique_path - for caching cheapest path to produce unique
704 * (no duplicates) output from relation; NULL if not yet requested
705 * cheapest_parameterized_paths - best paths for their parameterizations;
706 * always includes cheapest_total_path, even if that's unparameterized
707 * direct_lateral_relids - rels this rel has direct LATERAL references to
708 * lateral_relids - required outer rels for LATERAL, as a Relids set
709 * (includes both direct and indirect lateral references)
710 *
711 * If the relation is a base relation it will have these fields set:
712 *
713 * relid - RTE index (this is redundant with the relids field, but
714 * is provided for convenience of access)
715 * rtekind - copy of RTE's rtekind field
716 * min_attr, max_attr - range of valid AttrNumbers for rel
717 * attr_needed - array of bitmapsets indicating the highest joinrel
718 * in which each attribute is needed; if bit 0 is set then
719 * the attribute is needed as part of final targetlist
720 * attr_widths - cache space for per-attribute width estimates;
721 * zero means not computed yet
722 * nulling_relids - relids of outer joins that can null this rel
723 * lateral_vars - lateral cross-references of rel, if any (list of
724 * Vars and PlaceHolderVars)
725 * lateral_referencers - relids of rels that reference this one laterally
726 * (includes both direct and indirect lateral references)
727 * indexlist - list of IndexOptInfo nodes for relation's indexes
728 * (always NIL if it's not a table or partitioned table)
729 * pages - number of disk pages in relation (zero if not a table)
730 * tuples - number of tuples in relation (not considering restrictions)
731 * allvisfrac - fraction of disk pages that are marked all-visible
732 * eclass_indexes - EquivalenceClasses that mention this rel (filled
733 * only after EC merging is complete)
734 * subroot - PlannerInfo for subquery (NULL if it's not a subquery)
735 * subplan_params - list of PlannerParamItems to be passed to subquery
736 *
737 * Note: for a subquery, tuples and subroot are not set immediately
738 * upon creation of the RelOptInfo object; they are filled in when
739 * set_subquery_pathlist processes the object.
740 *
741 * For otherrels that are appendrel members, these fields are filled
742 * in just as for a baserel, except we don't bother with lateral_vars.
743 *
744 * If the relation is either a foreign table or a join of foreign tables that
745 * all belong to the same foreign server and are assigned to the same user to
746 * check access permissions as (cf checkAsUser), these fields will be set:
747 *
748 * serverid - OID of foreign server, if foreign table (else InvalidOid)
749 * userid - OID of user to check access as (InvalidOid means current user)
750 * useridiscurrent - we've assumed that userid equals current user
751 * fdwroutine - function hooks for FDW, if foreign table (else NULL)
752 * fdw_private - private state for FDW, if foreign table (else NULL)
753 *
754 * Two fields are used to cache knowledge acquired during the join search
755 * about whether this rel is provably unique when being joined to given other
756 * relation(s), ie, it can have at most one row matching any given row from
757 * that join relation. Currently we only attempt such proofs, and thus only
758 * populate these fields, for base rels; but someday they might be used for
759 * join rels too:
760 *
761 * unique_for_rels - list of UniqueRelInfo, each one being a set of other
762 * rels for which this one has been proven unique
763 * non_unique_for_rels - list of Relid sets, each one being a set of
764 * other rels for which we have tried and failed to prove
765 * this one unique
766 *
767 * The presence of the following fields depends on the restrictions
768 * and joins that the relation participates in:
769 *
770 * baserestrictinfo - List of RestrictInfo nodes, containing info about
771 * each non-join qualification clause in which this relation
772 * participates (only used for base rels)
773 * baserestrictcost - Estimated cost of evaluating the baserestrictinfo
774 * clauses at a single tuple (only used for base rels)
775 * baserestrict_min_security - Smallest security_level found among
776 * clauses in baserestrictinfo
777 * joininfo - List of RestrictInfo nodes, containing info about each
778 * join clause in which this relation participates (but
779 * note this excludes clauses that might be derivable from
780 * EquivalenceClasses)
781 * has_eclass_joins - flag that EquivalenceClass joins are possible
782 *
783 * Note: Keeping a restrictinfo list in the RelOptInfo is useful only for
784 * base rels, because for a join rel the set of clauses that are treated as
785 * restrict clauses varies depending on which sub-relations we choose to join.
786 * (For example, in a 3-base-rel join, a clause relating rels 1 and 2 must be
787 * treated as a restrictclause if we join {1} and {2 3} to make {1 2 3}; but
788 * if we join {1 2} and {3} then that clause will be a restrictclause in {1 2}
789 * and should not be processed again at the level of {1 2 3}.) Therefore,
790 * the restrictinfo list in the join case appears in individual JoinPaths
791 * (field joinrestrictinfo), not in the parent relation. But it's OK for
792 * the RelOptInfo to store the joininfo list, because that is the same
793 * for a given rel no matter how we form it.
794 *
795 * We store baserestrictcost in the RelOptInfo (for base relations) because
796 * we know we will need it at least once (to price the sequential scan)
797 * and may need it multiple times to price index scans.
798 *
799 * A join relation is considered to be partitioned if it is formed from a
800 * join of two relations that are partitioned, have matching partitioning
801 * schemes, and are joined on an equijoin of the partitioning columns.
802 * Under those conditions we can consider the join relation to be partitioned
803 * by either relation's partitioning keys, though some care is needed if
804 * either relation can be forced to null by outer-joining. For example, an
805 * outer join like (A LEFT JOIN B ON A.a = B.b) may produce rows with B.b
806 * NULL. These rows may not fit the partitioning conditions imposed on B.
807 * Hence, strictly speaking, the join is not partitioned by B.b and thus
808 * partition keys of an outer join should include partition key expressions
809 * from the non-nullable side only. However, if a subsequent join uses
810 * strict comparison operators (and all commonly-used equijoin operators are
811 * strict), the presence of nulls doesn't cause a problem: such rows couldn't
812 * match anything on the other side and thus they don't create a need to do
813 * any cross-partition sub-joins. Hence we can treat such values as still
814 * partitioning the join output for the purpose of additional partitionwise
815 * joining, so long as a strict join operator is used by the next join.
816 *
817 * If the relation is partitioned, these fields will be set:
818 *
819 * part_scheme - Partitioning scheme of the relation
820 * nparts - Number of partitions
821 * boundinfo - Partition bounds
822 * partbounds_merged - true if partition bounds are merged ones
823 * partition_qual - Partition constraint if not the root
824 * part_rels - RelOptInfos for each partition
825 * all_partrels - Relids set of all partition relids
826 * partexprs, nullable_partexprs - Partition key expressions
827 *
828 * The partexprs and nullable_partexprs arrays each contain
829 * part_scheme->partnatts elements. Each of the elements is a list of
830 * partition key expressions. For partitioned base relations, there is one
831 * expression in each partexprs element, and nullable_partexprs is empty.
832 * For partitioned join relations, each base relation within the join
833 * contributes one partition key expression per partitioning column;
834 * that expression goes in the partexprs[i] list if the base relation
835 * is not nullable by this join or any lower outer join, or in the
836 * nullable_partexprs[i] list if the base relation is nullable.
837 * Furthermore, FULL JOINs add extra nullable_partexprs expressions
838 * corresponding to COALESCE expressions of the left and right join columns,
839 * to simplify matching join clauses to those lists.
840 *
841 * Not all fields are printed. (In some cases, there is no print support for
842 * the field type.)
843 *----------
844 */
845
846/* Bitmask of flags supported by table AMs */
847#define AMFLAG_HAS_TID_RANGE (1 << 0)
848
849typedef enum RelOptKind
850{
858
859/*
860 * Is the given relation a simple relation i.e a base or "other" member
861 * relation?
862 */
863#define IS_SIMPLE_REL(rel) \
864 ((rel)->reloptkind == RELOPT_BASEREL || \
865 (rel)->reloptkind == RELOPT_OTHER_MEMBER_REL)
866
867/* Is the given relation a join relation? */
868#define IS_JOIN_REL(rel) \
869 ((rel)->reloptkind == RELOPT_JOINREL || \
870 (rel)->reloptkind == RELOPT_OTHER_JOINREL)
871
872/* Is the given relation an upper relation? */
873#define IS_UPPER_REL(rel) \
874 ((rel)->reloptkind == RELOPT_UPPER_REL || \
875 (rel)->reloptkind == RELOPT_OTHER_UPPER_REL)
876
877/* Is the given relation an "other" relation? */
878#define IS_OTHER_REL(rel) \
879 ((rel)->reloptkind == RELOPT_OTHER_MEMBER_REL || \
880 (rel)->reloptkind == RELOPT_OTHER_JOINREL || \
881 (rel)->reloptkind == RELOPT_OTHER_UPPER_REL)
882
883typedef struct RelOptInfo
884{
885 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
886
888
890
891 /*
892 * all relations included in this RelOptInfo; set of base + OJ relids
893 * (rangetable indexes)
894 */
896
897 /*
898 * size estimates generated by planner
899 */
900 /* estimated number of result tuples */
902
903 /*
904 * per-relation planner control flags
905 */
906 /* keep cheap-startup-cost paths? */
908 /* ditto, for parameterized paths? */
910 /* consider parallel paths? */
912
913 /*
914 * default result targetlist for Paths scanning this relation; list of
915 * Vars/Exprs, cost, width
916 */
918
919 /*
920 * materialization information
921 */
922 List *pathlist; /* Path structures */
923 List *ppilist; /* ParamPathInfos used in pathlist */
924 List *partial_pathlist; /* partial Paths */
929
930 /*
931 * parameterization information needed for both base rels and join rels
932 * (see also lateral_vars and lateral_referencers)
933 */
934 /* rels directly laterally referenced */
936 /* minimum parameterization of rel */
938
939 /*
940 * information about a base rel (not set for join rels!)
941 */
943 /* containing tablespace */
945 /* RELATION, SUBQUERY, FUNCTION, etc */
947 /* smallest attrno of rel (often <0) */
949 /* largest attrno of rel */
951 /* array indexed [min_attr .. max_attr] */
952 Relids *attr_needed pg_node_attr(read_write_ignore);
953 /* array indexed [min_attr .. max_attr] */
954 int32 *attr_widths pg_node_attr(read_write_ignore);
955
956 /*
957 * Zero-based set containing attnums of NOT NULL columns. Not populated
958 * for rels corresponding to non-partitioned inh==true RTEs.
959 */
961 /* relids of outer joins that can null this baserel */
963 /* LATERAL Vars and PHVs referenced by rel */
965 /* rels that reference this baserel laterally */
967 /* list of IndexOptInfo */
969 /* list of StatisticExtInfo */
971 /* size estimates derived from pg_class */
975 /* indexes in PlannerInfo's eq_classes list of ECs that mention this rel */
977 PlannerInfo *subroot; /* if subquery */
978 List *subplan_params; /* if subquery */
979 /* wanted number of parallel workers */
981 /* Bitmask of optional features supported by the table AM */
983
984 /*
985 * Information about foreign tables and foreign joins
986 */
987 /* identifies server for the table or join */
989 /* identifies user to check access as; 0 means to check as current user */
991 /* join is only valid for current user */
993 /* use "struct FdwRoutine" to avoid including fdwapi.h here */
994 struct FdwRoutine *fdwroutine pg_node_attr(read_write_ignore);
995 void *fdw_private pg_node_attr(read_write_ignore);
996
997 /*
998 * cache space for remembering if we have proven this relation unique
999 */
1000 /* known unique for these other relid set(s) given in UniqueRelInfo(s) */
1002 /* known not unique for these set(s) */
1004
1005 /*
1006 * used by various scans and joins:
1007 */
1008 /* RestrictInfo structures (if base rel) */
1010 /* cost of evaluating the above */
1012 /* min security_level found in baserestrictinfo */
1014 /* RestrictInfo structures for join clauses involving this rel */
1016 /* T means joininfo is incomplete */
1018
1019 /*
1020 * used by partitionwise joins:
1021 */
1022 /* consider partitionwise join paths? (if partitioned rel) */
1024
1025 /*
1026 * inheritance links, if this is an otherrel (otherwise NULL):
1027 */
1028 /* Immediate parent relation (dumping it would be too verbose) */
1029 struct RelOptInfo *parent pg_node_attr(read_write_ignore);
1030 /* Topmost parent relation (dumping it would be too verbose) */
1031 struct RelOptInfo *top_parent pg_node_attr(read_write_ignore);
1032 /* Relids of topmost parent (redundant, but handy) */
1034
1035 /*
1036 * used for partitioned relations:
1037 */
1038 /* Partitioning scheme */
1039 PartitionScheme part_scheme pg_node_attr(read_write_ignore);
1040
1041 /*
1042 * Number of partitions; -1 if not yet set; in case of a join relation 0
1043 * means it's considered unpartitioned
1044 */
1046 /* Partition bounds */
1047 struct PartitionBoundInfoData *boundinfo pg_node_attr(read_write_ignore);
1048 /* True if partition bounds were created by partition_bounds_merge() */
1050 /* Partition constraint, if not the root */
1052
1053 /*
1054 * Array of RelOptInfos of partitions, stored in the same order as bounds
1055 * (don't print, too bulky and duplicative)
1056 */
1057 struct RelOptInfo **part_rels pg_node_attr(read_write_ignore);
1058
1059 /*
1060 * Bitmap with members acting as indexes into the part_rels[] array to
1061 * indicate which partitions survived partition pruning.
1062 */
1064 /* Relids set of all partition relids */
1066
1067 /*
1068 * These arrays are of length partkey->partnatts, which we don't have at
1069 * hand, so don't try to print
1070 */
1071
1072 /* Non-nullable partition key expressions */
1073 List **partexprs pg_node_attr(read_write_ignore);
1074 /* Nullable partition key expressions */
1075 List **nullable_partexprs pg_node_attr(read_write_ignore);
1077
1078/*
1079 * Is given relation partitioned?
1080 *
1081 * It's not enough to test whether rel->part_scheme is set, because it might
1082 * be that the basic partitioning properties of the input relations matched
1083 * but the partition bounds did not. Also, if we are able to prove a rel
1084 * dummy (empty), we should henceforth treat it as unpartitioned.
1085 */
1086#define IS_PARTITIONED_REL(rel) \
1087 ((rel)->part_scheme && (rel)->boundinfo && (rel)->nparts > 0 && \
1088 (rel)->part_rels && !IS_DUMMY_REL(rel))
1089
1090/*
1091 * Convenience macro to make sure that a partitioned relation has all the
1092 * required members set.
1093 */
1094#define REL_HAS_ALL_PART_PROPS(rel) \
1095 ((rel)->part_scheme && (rel)->boundinfo && (rel)->nparts > 0 && \
1096 (rel)->part_rels && (rel)->partexprs && (rel)->nullable_partexprs)
1097
1098/*
1099 * IndexOptInfo
1100 * Per-index information for planning/optimization
1101 *
1102 * indexkeys[], indexcollations[] each have ncolumns entries.
1103 * opfamily[], and opcintype[] each have nkeycolumns entries. They do
1104 * not contain any information about included attributes.
1105 *
1106 * sortopfamily[], reverse_sort[], and nulls_first[] have
1107 * nkeycolumns entries, if the index is ordered; but if it is unordered,
1108 * those pointers are NULL.
1109 *
1110 * Zeroes in the indexkeys[] array indicate index columns that are
1111 * expressions; there is one element in indexprs for each such column.
1112 *
1113 * For an ordered index, reverse_sort[] and nulls_first[] describe the
1114 * sort ordering of a forward indexscan; we can also consider a backward
1115 * indexscan, which will generate the reverse ordering.
1116 *
1117 * The indexprs and indpred expressions have been run through
1118 * prepqual.c and eval_const_expressions() for ease of matching to
1119 * WHERE clauses. indpred is in implicit-AND form.
1120 *
1121 * indextlist is a TargetEntry list representing the index columns.
1122 * It provides an equivalent base-relation Var for each simple column,
1123 * and links to the matching indexprs element for each expression column.
1124 *
1125 * While most of these fields are filled when the IndexOptInfo is created
1126 * (by plancat.c), indrestrictinfo and predOK are set later, in
1127 * check_index_predicates().
1128 */
1129#ifndef HAVE_INDEXOPTINFO_TYPEDEF
1131#define HAVE_INDEXOPTINFO_TYPEDEF 1
1132#endif
1133
1134struct IndexPath; /* forward declaration */
1135
1137{
1138 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1139
1140 NodeTag type;
1141
1142 /* OID of the index relation */
1144 /* tablespace of index (not table) */
1146 /* back-link to index's table; don't print, else infinite recursion */
1147 RelOptInfo *rel pg_node_attr(read_write_ignore);
1148
1149 /*
1150 * index-size statistics (from pg_class and elsewhere)
1151 */
1152 /* number of disk pages in index */
1154 /* number of index tuples in index */
1156 /* index tree height, or -1 if unknown */
1158
1159 /*
1160 * index descriptor information
1161 */
1162 /* number of columns in index */
1164 /* number of key columns in index */
1166
1167 /*
1168 * table column numbers of index's columns (both key and included
1169 * columns), or 0 for expression columns
1170 */
1171 int *indexkeys pg_node_attr(array_size(ncolumns));
1172 /* OIDs of collations of index columns */
1173 Oid *indexcollations pg_node_attr(array_size(nkeycolumns));
1174 /* OIDs of operator families for columns */
1175 Oid *opfamily pg_node_attr(array_size(nkeycolumns));
1176 /* OIDs of opclass declared input data types */
1177 Oid *opcintype pg_node_attr(array_size(nkeycolumns));
1178 /* OIDs of btree opfamilies, if orderable. NULL if partitioned index */
1179 Oid *sortopfamily pg_node_attr(array_size(nkeycolumns));
1180 /* is sort order descending? or NULL if partitioned index */
1181 bool *reverse_sort pg_node_attr(array_size(nkeycolumns));
1182 /* do NULLs come first in the sort order? or NULL if partitioned index */
1183 bool *nulls_first pg_node_attr(array_size(nkeycolumns));
1184 /* opclass-specific options for columns */
1185 bytea **opclassoptions pg_node_attr(read_write_ignore);
1186 /* which index cols can be returned in an index-only scan? */
1187 bool *canreturn pg_node_attr(array_size(ncolumns));
1188 /* OID of the access method (in pg_am) */
1190
1191 /*
1192 * expressions for non-simple index columns; redundant to print since we
1193 * print indextlist
1194 */
1195 List *indexprs pg_node_attr(read_write_ignore);
1196 /* predicate if a partial index, else NIL */
1198
1199 /* targetlist representing index columns */
1201
1202 /*
1203 * parent relation's baserestrictinfo list, less any conditions implied by
1204 * the index's predicate (unless it's a target rel, see comments in
1205 * check_index_predicates())
1206 */
1208
1209 /* true if index predicate matches query */
1211 /* true if a unique index */
1213 /* true if the index was defined with NULLS NOT DISTINCT */
1215 /* is uniqueness enforced immediately? */
1217 /* true if index doesn't really exist */
1219
1220 /*
1221 * Remaining fields are copied from the index AM's API struct
1222 * (IndexAmRoutine). These fields are not set for partitioned indexes.
1223 */
1228 /* does AM have amgettuple interface? */
1230 /* does AM have amgetbitmap interface? */
1233 /* does AM have ammarkpos interface? */
1235 /* AM's cost estimator */
1236 /* Rather than include amapi.h here, we declare amcostestimate like this */
1237 void (*amcostestimate) (struct PlannerInfo *, struct IndexPath *, double, Cost *, Cost *, Selectivity *, double *, double *) pg_node_attr(read_write_ignore);
1238};
1239
1240/*
1241 * ForeignKeyOptInfo
1242 * Per-foreign-key information for planning/optimization
1243 *
1244 * The per-FK-column arrays can be fixed-size because we allow at most
1245 * INDEX_MAX_KEYS columns in a foreign key constraint. Each array has
1246 * nkeys valid entries.
1247 */
1248typedef struct ForeignKeyOptInfo
1249{
1250 pg_node_attr(custom_read_write, no_copy_equal, no_read, no_query_jumble)
1251
1252 NodeTag type;
1253
1254 /*
1255 * Basic data about the foreign key (fetched from catalogs):
1256 */
1257
1258 /* RT index of the referencing table */
1260 /* RT index of the referenced table */
1262 /* number of columns in the foreign key */
1264 /* cols in referencing table */
1266 /* cols in referenced table */
1268 /* PK = FK operator OIDs */
1269 Oid conpfeqop[INDEX_MAX_KEYS] pg_node_attr(array_size(nkeys));
1270
1271 /*
1272 * Derived info about whether FK's equality conditions match the query:
1273 */
1274
1275 /* # of FK cols matched by ECs */
1277 /* # of these ECs that are ec_has_const */
1279 /* # of FK cols matched by non-EC rinfos */
1281 /* total # of non-EC rinfos matched to FK */
1283 /* Pointer to eclass matching each column's condition, if there is one */
1285 /* Pointer to eclass member for the referencing Var, if there is one */
1287 /* List of non-EC RestrictInfos matching each column's condition */
1290
1291/*
1292 * StatisticExtInfo
1293 * Information about extended statistics for planning/optimization
1294 *
1295 * Each pg_statistic_ext row is represented by one or more nodes of this
1296 * type, or even zero if ANALYZE has not computed them.
1297 */
1298typedef struct StatisticExtInfo
1299{
1300 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1301
1302 NodeTag type;
1303
1304 /* OID of the statistics row */
1306
1307 /* includes child relations */
1309
1310 /* back-link to statistic's table; don't print, else infinite recursion */
1311 RelOptInfo *rel pg_node_attr(read_write_ignore);
1312
1313 /* statistics kind of this entry */
1314 char kind;
1315
1316 /* attnums of the columns covered */
1318
1319 /* expressions */
1322
1323/*
1324 * JoinDomains
1325 *
1326 * A "join domain" defines the scope of applicability of deductions made via
1327 * the EquivalenceClass mechanism. Roughly speaking, a join domain is a set
1328 * of base+OJ relations that are inner-joined together. More precisely, it is
1329 * the set of relations at which equalities deduced from an EquivalenceClass
1330 * can be enforced or should be expected to hold. The topmost JoinDomain
1331 * covers the whole query (so its jd_relids should equal all_query_rels).
1332 * An outer join creates a new JoinDomain that includes all base+OJ relids
1333 * within its nullable side, but (by convention) not the OJ's own relid.
1334 * A FULL join creates two new JoinDomains, one for each side.
1335 *
1336 * Notice that a rel that is below outer join(s) will thus appear to belong
1337 * to multiple join domains. However, any of its Vars that appear in
1338 * EquivalenceClasses belonging to higher join domains will have nullingrel
1339 * bits preventing them from being evaluated at the rel's scan level, so that
1340 * we will not be able to derive enforceable-at-the-rel-scan-level clauses
1341 * from such ECs. We define the join domain relid sets this way so that
1342 * domains can be said to be "higher" or "lower" when one domain relid set
1343 * includes another.
1344 *
1345 * The JoinDomains for a query are computed in deconstruct_jointree.
1346 * We do not copy JoinDomain structs once made, so they can be compared
1347 * for equality by simple pointer equality.
1348 */
1349typedef struct JoinDomain
1350{
1351 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1352
1353 NodeTag type;
1354
1355 Relids jd_relids; /* all relids contained within the domain */
1357
1358/*
1359 * EquivalenceClasses
1360 *
1361 * Whenever we identify a mergejoinable equality clause A = B that is
1362 * not an outer-join clause, we create an EquivalenceClass containing
1363 * the expressions A and B to record this knowledge. If we later find another
1364 * equivalence B = C, we add C to the existing EquivalenceClass; this may
1365 * require merging two existing EquivalenceClasses. At the end of the qual
1366 * distribution process, we have sets of values that are known all transitively
1367 * equal to each other, where "equal" is according to the rules of the btree
1368 * operator family(s) shown in ec_opfamilies, as well as the collation shown
1369 * by ec_collation. (We restrict an EC to contain only equalities whose
1370 * operators belong to the same set of opfamilies. This could probably be
1371 * relaxed, but for now it's not worth the trouble, since nearly all equality
1372 * operators belong to only one btree opclass anyway. Similarly, we suppose
1373 * that all or none of the input datatypes are collatable, so that a single
1374 * collation value is sufficient.)
1375 *
1376 * Strictly speaking, deductions from an EquivalenceClass hold only within
1377 * a "join domain", that is a set of relations that are innerjoined together
1378 * (see JoinDomain above). For the most part we don't need to account for
1379 * this explicitly, because equality clauses from different join domains
1380 * will contain Vars that are not equal() because they have different
1381 * nullingrel sets, and thus we will never falsely merge ECs from different
1382 * join domains. But Var-free (pseudoconstant) expressions lack that safety
1383 * feature. We handle that by marking "const" EC members with the JoinDomain
1384 * of the clause they came from; two nominally-equal const members will be
1385 * considered different if they came from different JoinDomains. This ensures
1386 * no false EquivalenceClass merges will occur.
1387 *
1388 * We also use EquivalenceClasses as the base structure for PathKeys, letting
1389 * us represent knowledge about different sort orderings being equivalent.
1390 * Since every PathKey must reference an EquivalenceClass, we will end up
1391 * with single-member EquivalenceClasses whenever a sort key expression has
1392 * not been equivalenced to anything else. It is also possible that such an
1393 * EquivalenceClass will contain a volatile expression ("ORDER BY random()"),
1394 * which is a case that can't arise otherwise since clauses containing
1395 * volatile functions are never considered mergejoinable. We mark such
1396 * EquivalenceClasses specially to prevent them from being merged with
1397 * ordinary EquivalenceClasses. Also, for volatile expressions we have
1398 * to be careful to match the EquivalenceClass to the correct targetlist
1399 * entry: consider SELECT random() AS a, random() AS b ... ORDER BY b,a.
1400 * So we record the SortGroupRef of the originating sort clause.
1401 *
1402 * Derived equality clauses are stored in ec_derives_list. For small queries,
1403 * this list is scanned directly during lookup. For larger queries -- e.g.,
1404 * with many partitions or joins -- a hash table (ec_derives_hash) is built
1405 * when the list grows beyond a threshold, for faster lookup. When present,
1406 * the hash table contains the same RestrictInfos and is maintained alongside
1407 * the list. We retain the list even when the hash is used to simplify
1408 * serialization (e.g., in _outEquivalenceClass()) and support
1409 * EquivalenceClass merging.
1410 *
1411 * In contrast, ec_sources holds equality clauses that appear directly in the
1412 * query. These are typically few and do not require a hash table for lookup.
1413 *
1414 * 'ec_members' is a List of all !em_is_child EquivalenceMembers in the class.
1415 * EquivalenceMembers for any RELOPT_OTHER_MEMBER_REL and RELOPT_OTHER_JOINREL
1416 * relations are stored in the 'ec_childmembers' array in the index
1417 * corresponding to the relid, or first component relid in the case of
1418 * RELOPT_OTHER_JOINRELs. 'ec_childmembers' is NULL if the class has no child
1419 * EquivalenceMembers.
1420 *
1421 * For code wishing to look at EquivalenceMembers, if only parent-level
1422 * members are needed, then a simple foreach loop over ec_members is
1423 * sufficient. When child members are also required, it is best to use the
1424 * functionality provided by EquivalenceMemberIterator. This visits all
1425 * parent members and only the relevant child members. The reason for this
1426 * is that large numbers of child EquivalenceMembers can exist in queries to
1427 * partitioned tables with many partitions. The functionality provided by
1428 * EquivalenceMemberIterator allows efficient access to EquivalenceMembers
1429 * which belong to specific child relids. See the header comments for
1430 * EquivalenceMemberIterator below for further details.
1431 *
1432 * NB: if ec_merged isn't NULL, this class has been merged into another, and
1433 * should be ignored in favor of using the pointed-to class.
1434 *
1435 * NB: EquivalenceClasses are never copied after creation. Therefore,
1436 * copyObject() copies pointers to them as pointers, and equal() compares
1437 * pointers to EquivalenceClasses via pointer equality. This is implemented
1438 * by putting copy_as_scalar and equal_as_scalar attributes on fields that
1439 * are pointers to EquivalenceClasses. The same goes for EquivalenceMembers.
1440 */
1441typedef struct EquivalenceClass
1442{
1443 pg_node_attr(custom_read_write, no_copy_equal, no_read, no_query_jumble)
1444
1445 NodeTag type;
1446
1447 List *ec_opfamilies; /* btree operator family OIDs */
1448 Oid ec_collation; /* collation, if datatypes are collatable */
1449 int ec_childmembers_size; /* # elements in ec_childmembers */
1450 List *ec_members; /* list of EquivalenceMembers */
1451 List **ec_childmembers; /* array of Lists of child members */
1452 List *ec_sources; /* list of generating RestrictInfos */
1453 List *ec_derives_list; /* list of derived RestrictInfos */
1454 struct derives_hash *ec_derives_hash; /* optional hash table for fast
1455 * lookup; contains same
1456 * RestrictInfos as list */
1457 Relids ec_relids; /* all relids appearing in ec_members, except
1458 * for child members (see below) */
1459 bool ec_has_const; /* any pseudoconstants in ec_members? */
1460 bool ec_has_volatile; /* the (sole) member is a volatile expr */
1461 bool ec_broken; /* failed to generate needed clauses? */
1462 Index ec_sortref; /* originating sortclause label, or 0 */
1463 Index ec_min_security; /* minimum security_level in ec_sources */
1464 Index ec_max_security; /* maximum security_level in ec_sources */
1465 struct EquivalenceClass *ec_merged; /* set if merged into another EC */
1467
1468/*
1469 * If an EC contains a constant, any PathKey depending on it must be
1470 * redundant, since there's only one possible value of the key.
1471 */
1472#define EC_MUST_BE_REDUNDANT(eclass) \
1473 ((eclass)->ec_has_const)
1474
1475/*
1476 * EquivalenceMember - one member expression of an EquivalenceClass
1477 *
1478 * em_is_child signifies that this element was built by transposing a member
1479 * for an appendrel parent relation to represent the corresponding expression
1480 * for an appendrel child. These members are used for determining the
1481 * pathkeys of scans on the child relation and for explicitly sorting the
1482 * child when necessary to build a MergeAppend path for the whole appendrel
1483 * tree. An em_is_child member has no impact on the properties of the EC as a
1484 * whole; in particular the EC's ec_relids field does NOT include the child
1485 * relation. em_is_child members aren't stored in the ec_members List of the
1486 * EC and instead they're stored and indexed by the relids of the child
1487 * relation they represent in ec_childmembers. An em_is_child member
1488 * should never be marked em_is_const nor cause ec_has_const or
1489 * ec_has_volatile to be set, either. Thus, em_is_child members are not
1490 * really full-fledged members of the EC, but just reflections or
1491 * doppelgangers of real members. Most operations on EquivalenceClasses
1492 * should ignore em_is_child members by only inspecting members in the
1493 * ec_members list. Callers that require inspecting child members should do
1494 * so using an EquivalenceMemberIterator and should test em_relids to make
1495 * sure they only consider relevant members.
1496 *
1497 * em_datatype is usually the same as exprType(em_expr), but can be
1498 * different when dealing with a binary-compatible opfamily; in particular
1499 * anyarray_ops would never work without this. Use em_datatype when
1500 * looking up a specific btree operator to work with this expression.
1501 */
1502typedef struct EquivalenceMember
1503{
1504 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1505
1506 NodeTag type;
1507
1508 Expr *em_expr; /* the expression represented */
1509 Relids em_relids; /* all relids appearing in em_expr */
1510 bool em_is_const; /* expression is pseudoconstant? */
1511 bool em_is_child; /* derived version for a child relation? */
1512 Oid em_datatype; /* the "nominal type" used by the opfamily */
1513 JoinDomain *em_jdomain; /* join domain containing the source clause */
1514 /* if em_is_child is true, this links to corresponding EM for top parent */
1515 struct EquivalenceMember *em_parent pg_node_attr(read_write_ignore);
1517
1518/*
1519 * EquivalenceMemberIterator
1520 *
1521 * EquivalenceMemberIterator allows efficient access to sets of
1522 * EquivalenceMembers for callers which require access to child members.
1523 * Because partitioning workloads can result in large numbers of child
1524 * members, the child members are not stored in the EquivalenceClass's
1525 * ec_members List. Instead, these are stored in the EquivalenceClass's
1526 * ec_childmembers array of Lists. The functionality provided by
1527 * EquivalenceMemberIterator aims to provide efficient access to parent
1528 * members and child members belonging to specific child relids.
1529 *
1530 * Currently, there is only one way to initialize and iterate over an
1531 * EquivalenceMemberIterator and that is via the setup_eclass_member_iterator
1532 * and eclass_member_iterator_next functions. The iterator object is
1533 * generally a local variable which is passed by address to
1534 * setup_eclass_member_iterator. The calling function defines which
1535 * EquivalenceClass the iterator should be looking at and which child
1536 * relids to also return members for. child_relids can be passed as NULL, but
1537 * the caller may as well just perform a foreach loop over ec_members as only
1538 * parent-level members will be returned in that case.
1539 *
1540 * When calling the next function on an EquivalenceMemberIterator, all
1541 * parent-level EquivalenceMembers are returned first, followed by all child
1542 * members for the specified 'child_relids' for all child members which were
1543 * indexed by any of the specified 'child_relids' in add_child_eq_member().
1544 *
1545 * Code using the iterator method of finding EquivalenceMembers will generally
1546 * always want to ensure the returned member matches their search criteria
1547 * rather than relying on the filtering to be done for them as all parent
1548 * members are returned and for members belonging to RELOPT_OTHER_JOINREL
1549 * rels, the member's em_relids may be a superset of the specified
1550 * 'child_relids', which might not be what the caller wants.
1551 *
1552 * The most common way to use this iterator is as follows:
1553 * -----
1554 * EquivalenceMemberIterator it;
1555 * EquivalenceMember *em;
1556 *
1557 * setup_eclass_member_iterator(&it, ec, child_relids);
1558 * while ((em = eclass_member_iterator_next(&it)) != NULL)
1559 * {
1560 * ...
1561 * }
1562 * -----
1563 * It is not valid to call eclass_member_iterator_next() after it has returned
1564 * NULL for any given EquivalenceMemberIterator. Individual fields within
1565 * the EquivalenceMemberIterator struct must not be accessed by callers.
1566 */
1567typedef struct
1568{
1569 EquivalenceClass *ec; /* The EquivalenceClass to iterate over */
1570 int current_relid; /* Current relid position within 'relids'. -1
1571 * when still looping over ec_members and -2
1572 * at the end of iteration */
1573 Relids child_relids; /* Relids of child relations of interest.
1574 * Non-child rels are ignored */
1575 ListCell *current_cell; /* Next cell to return within current_list */
1576 List *current_list; /* Current list of members being returned */
1578
1579/*
1580 * PathKeys
1581 *
1582 * The sort ordering of a path is represented by a list of PathKey nodes.
1583 * An empty list implies no known ordering. Otherwise the first item
1584 * represents the primary sort key, the second the first secondary sort key,
1585 * etc. The value being sorted is represented by linking to an
1586 * EquivalenceClass containing that value and including pk_opfamily among its
1587 * ec_opfamilies. The EquivalenceClass tells which collation to use, too.
1588 * This is a convenient method because it makes it trivial to detect
1589 * equivalent and closely-related orderings. (See optimizer/README for more
1590 * information.)
1591 *
1592 * Note: pk_cmptype is either COMPARE_LT (for ASC) or COMPARE_GT (for DESC).
1593 */
1594typedef struct PathKey
1595{
1596 pg_node_attr(no_read, no_query_jumble)
1597
1598 NodeTag type;
1599
1600 /* the value that is ordered */
1601 EquivalenceClass *pk_eclass pg_node_attr(copy_as_scalar, equal_as_scalar);
1602 Oid pk_opfamily; /* index opfamily defining the ordering */
1603 CompareType pk_cmptype; /* sort direction (ASC or DESC) */
1604 bool pk_nulls_first; /* do NULLs come before normal values? */
1606
1607/*
1608 * Contains an order of group-by clauses and the corresponding list of
1609 * pathkeys.
1610 *
1611 * The elements of 'clauses' list should have the same order as the head of
1612 * 'pathkeys' list. The tleSortGroupRef of the clause should be equal to
1613 * ec_sortref of the pathkey equivalence class. If there are redundant
1614 * clauses with the same tleSortGroupRef, they must be grouped together.
1615 */
1616typedef struct GroupByOrdering
1617{
1619
1623
1624/*
1625 * VolatileFunctionStatus -- allows nodes to cache their
1626 * contain_volatile_functions properties. VOLATILITY_UNKNOWN means not yet
1627 * determined.
1628 */
1630{
1635
1636/*
1637 * PathTarget
1638 *
1639 * This struct contains what we need to know during planning about the
1640 * targetlist (output columns) that a Path will compute. Each RelOptInfo
1641 * includes a default PathTarget, which its individual Paths may simply
1642 * reference. However, in some cases a Path may compute outputs different
1643 * from other Paths, and in that case we make a custom PathTarget for it.
1644 * For example, an indexscan might return index expressions that would
1645 * otherwise need to be explicitly calculated. (Note also that "upper"
1646 * relations generally don't have useful default PathTargets.)
1647 *
1648 * exprs contains bare expressions; they do not have TargetEntry nodes on top,
1649 * though those will appear in finished Plans.
1650 *
1651 * sortgrouprefs[] is an array of the same length as exprs, containing the
1652 * corresponding sort/group refnos, or zeroes for expressions not referenced
1653 * by sort/group clauses. If sortgrouprefs is NULL (which it generally is in
1654 * RelOptInfo.reltarget targets; only upper-level Paths contain this info),
1655 * we have not identified sort/group columns in this tlist. This allows us to
1656 * deal with sort/group refnos when needed with less expense than including
1657 * TargetEntry nodes in the exprs list.
1658 */
1659typedef struct PathTarget
1660{
1661 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1662
1663 NodeTag type;
1664
1665 /* list of expressions to be computed */
1667
1668 /* corresponding sort/group refnos, or 0 */
1669 Index *sortgrouprefs pg_node_attr(array_size(exprs));
1670
1671 /* cost of evaluating the expressions */
1673
1674 /* estimated avg width of result tuples */
1676
1677 /* indicates if exprs contain any volatile functions */
1680
1681/* Convenience macro to get a sort/group refno from a PathTarget */
1682#define get_pathtarget_sortgroupref(target, colno) \
1683 ((target)->sortgrouprefs ? (target)->sortgrouprefs[colno] : (Index) 0)
1684
1685
1686/*
1687 * ParamPathInfo
1688 *
1689 * All parameterized paths for a given relation with given required outer rels
1690 * link to a single ParamPathInfo, which stores common information such as
1691 * the estimated rowcount for this parameterization. We do this partly to
1692 * avoid recalculations, but mostly to ensure that the estimated rowcount
1693 * is in fact the same for every such path.
1694 *
1695 * Note: ppi_clauses is only used in ParamPathInfos for base relation paths;
1696 * in join cases it's NIL because the set of relevant clauses varies depending
1697 * on how the join is formed. The relevant clauses will appear in each
1698 * parameterized join path's joinrestrictinfo list, instead. ParamPathInfos
1699 * for append relations don't bother with this, either.
1700 *
1701 * ppi_serials is the set of rinfo_serial numbers for quals that are enforced
1702 * by this path. As with ppi_clauses, it's only maintained for baserels.
1703 * (We could construct it on-the-fly from ppi_clauses, but it seems better
1704 * to materialize a copy.)
1705 */
1706typedef struct ParamPathInfo
1707{
1708 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1709
1710 NodeTag type;
1711
1712 Relids ppi_req_outer; /* rels supplying parameters used by path */
1713 Cardinality ppi_rows; /* estimated number of result tuples */
1714 List *ppi_clauses; /* join clauses available from outer rels */
1715 Bitmapset *ppi_serials; /* set of rinfo_serial for enforced quals */
1717
1718
1719/*
1720 * Type "Path" is used as-is for sequential-scan paths, as well as some other
1721 * simple plan types that we don't need any extra information in the path for.
1722 * For other path types it is the first component of a larger struct.
1723 *
1724 * "pathtype" is the NodeTag of the Plan node we could build from this Path.
1725 * It is partially redundant with the Path's NodeTag, but allows us to use
1726 * the same Path type for multiple Plan types when there is no need to
1727 * distinguish the Plan type during path processing.
1728 *
1729 * "parent" identifies the relation this Path scans, and "pathtarget"
1730 * describes the precise set of output columns the Path would compute.
1731 * In simple cases all Paths for a given rel share the same targetlist,
1732 * which we represent by having path->pathtarget equal to parent->reltarget.
1733 *
1734 * "param_info", if not NULL, links to a ParamPathInfo that identifies outer
1735 * relation(s) that provide parameter values to each scan of this path.
1736 * That means this path can only be joined to those rels by means of nestloop
1737 * joins with this path on the inside. Also note that a parameterized path
1738 * is responsible for testing all "movable" joinclauses involving this rel
1739 * and the specified outer rel(s).
1740 *
1741 * "rows" is the same as parent->rows in simple paths, but in parameterized
1742 * paths and UniquePaths it can be less than parent->rows, reflecting the
1743 * fact that we've filtered by extra join conditions or removed duplicates.
1744 *
1745 * "pathkeys" is a List of PathKey nodes (see above), describing the sort
1746 * ordering of the path's output rows.
1747 *
1748 * We do not support copying Path trees, mainly because the circular linkages
1749 * between RelOptInfo and Path nodes can't be handled easily in a simple
1750 * depth-first traversal. We also don't have read support at the moment.
1751 */
1752typedef struct Path
1753{
1754 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1755
1756 NodeTag type;
1757
1758 /* tag identifying scan/join method */
1760
1761 /*
1762 * the relation this path can build
1763 *
1764 * We do NOT print the parent, else we'd be in infinite recursion. We can
1765 * print the parent's relids for identification purposes, though.
1766 */
1767 RelOptInfo *parent pg_node_attr(write_only_relids);
1768
1769 /*
1770 * list of Vars/Exprs, cost, width
1771 *
1772 * We print the pathtarget only if it's not the default one for the rel.
1773 */
1774 PathTarget *pathtarget pg_node_attr(write_only_nondefault_pathtarget);
1775
1776 /*
1777 * parameterization info, or NULL if none
1778 *
1779 * We do not print the whole of param_info, since it's printed via
1780 * RelOptInfo; it's sufficient and less cluttering to print just the
1781 * required outer relids.
1782 */
1783 ParamPathInfo *param_info pg_node_attr(write_only_req_outer);
1784
1785 /* engage parallel-aware logic? */
1787 /* OK to use as part of parallel plan? */
1789 /* desired # of workers; 0 = not parallel */
1791
1792 /* estimated size/costs for path (see costsize.c for more info) */
1793 Cardinality rows; /* estimated number of result tuples */
1794 int disabled_nodes; /* count of disabled nodes */
1795 Cost startup_cost; /* cost expended before fetching any tuples */
1796 Cost total_cost; /* total cost (assuming all tuples fetched) */
1797
1798 /* sort ordering of path's output; a List of PathKey nodes; see above */
1801
1802/* Macro for extracting a path's parameterization relids; beware double eval */
1803#define PATH_REQ_OUTER(path) \
1804 ((path)->param_info ? (path)->param_info->ppi_req_outer : (Relids) NULL)
1805
1806/*----------
1807 * IndexPath represents an index scan over a single index.
1808 *
1809 * This struct is used for both regular indexscans and index-only scans;
1810 * path.pathtype is T_IndexScan or T_IndexOnlyScan to show which is meant.
1811 *
1812 * 'indexinfo' is the index to be scanned.
1813 *
1814 * 'indexclauses' is a list of IndexClause nodes, each representing one
1815 * index-checkable restriction, with implicit AND semantics across the list.
1816 * An empty list implies a full index scan.
1817 *
1818 * 'indexorderbys', if not NIL, is a list of ORDER BY expressions that have
1819 * been found to be usable as ordering operators for an amcanorderbyop index.
1820 * The list must match the path's pathkeys, ie, one expression per pathkey
1821 * in the same order. These are not RestrictInfos, just bare expressions,
1822 * since they generally won't yield booleans. It's guaranteed that each
1823 * expression has the index key on the left side of the operator.
1824 *
1825 * 'indexorderbycols' is an integer list of index column numbers (zero-based)
1826 * of the same length as 'indexorderbys', showing which index column each
1827 * ORDER BY expression is meant to be used with. (There is no restriction
1828 * on which index column each ORDER BY can be used with.)
1829 *
1830 * 'indexscandir' is one of:
1831 * ForwardScanDirection: forward scan of an index
1832 * BackwardScanDirection: backward scan of an ordered index
1833 * Unordered indexes will always have an indexscandir of ForwardScanDirection.
1834 *
1835 * 'indextotalcost' and 'indexselectivity' are saved in the IndexPath so that
1836 * we need not recompute them when considering using the same index in a
1837 * bitmap index/heap scan (see BitmapHeapPath). The costs of the IndexPath
1838 * itself represent the costs of an IndexScan or IndexOnlyScan plan type.
1839 *----------
1840 */
1841typedef struct IndexPath
1842{
1852
1853/*
1854 * Each IndexClause references a RestrictInfo node from the query's WHERE
1855 * or JOIN conditions, and shows how that restriction can be applied to
1856 * the particular index. We support both indexclauses that are directly
1857 * usable by the index machinery, which are typically of the form
1858 * "indexcol OP pseudoconstant", and those from which an indexable qual
1859 * can be derived. The simplest such transformation is that a clause
1860 * of the form "pseudoconstant OP indexcol" can be commuted to produce an
1861 * indexable qual (the index machinery expects the indexcol to be on the
1862 * left always). Another example is that we might be able to extract an
1863 * indexable range condition from a LIKE condition, as in "x LIKE 'foo%bar'"
1864 * giving rise to "x >= 'foo' AND x < 'fop'". Derivation of such lossy
1865 * conditions is done by a planner support function attached to the
1866 * indexclause's top-level function or operator.
1867 *
1868 * indexquals is a list of RestrictInfos for the directly-usable index
1869 * conditions associated with this IndexClause. In the simplest case
1870 * it's a one-element list whose member is iclause->rinfo. Otherwise,
1871 * it contains one or more directly-usable indexqual conditions extracted
1872 * from the given clause. The 'lossy' flag indicates whether the
1873 * indexquals are semantically equivalent to the original clause, or
1874 * represent a weaker condition.
1875 *
1876 * Normally, indexcol is the index of the single index column the clause
1877 * works on, and indexcols is NIL. But if the clause is a RowCompareExpr,
1878 * indexcol is the index of the leading column, and indexcols is a list of
1879 * all the affected columns. (Note that indexcols matches up with the
1880 * columns of the actual indexable RowCompareExpr in indexquals, which
1881 * might be different from the original in rinfo.)
1882 *
1883 * An IndexPath's IndexClause list is required to be ordered by index
1884 * column, i.e. the indexcol values must form a nondecreasing sequence.
1885 * (The order of multiple clauses for the same index column is unspecified.)
1886 */
1887typedef struct IndexClause
1888{
1889 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
1890
1891 NodeTag type;
1892 struct RestrictInfo *rinfo; /* original restriction or join clause */
1893 List *indexquals; /* indexqual(s) derived from it */
1894 bool lossy; /* are indexquals a lossy version of clause? */
1895 AttrNumber indexcol; /* index column the clause uses (zero-based) */
1896 List *indexcols; /* multiple index columns, if RowCompare */
1898
1899/*
1900 * BitmapHeapPath represents one or more indexscans that generate TID bitmaps
1901 * instead of directly accessing the heap, followed by AND/OR combinations
1902 * to produce a single bitmap, followed by a heap scan that uses the bitmap.
1903 * Note that the output is always considered unordered, since it will come
1904 * out in physical heap order no matter what the underlying indexes did.
1905 *
1906 * The individual indexscans are represented by IndexPath nodes, and any
1907 * logic on top of them is represented by a tree of BitmapAndPath and
1908 * BitmapOrPath nodes. Notice that we can use the same IndexPath node both
1909 * to represent a regular (or index-only) index scan plan, and as the child
1910 * of a BitmapHeapPath that represents scanning the same index using a
1911 * BitmapIndexScan. The startup_cost and total_cost figures of an IndexPath
1912 * always represent the costs to use it as a regular (or index-only)
1913 * IndexScan. The costs of a BitmapIndexScan can be computed using the
1914 * IndexPath's indextotalcost and indexselectivity.
1915 */
1916typedef struct BitmapHeapPath
1917{
1919 Path *bitmapqual; /* IndexPath, BitmapAndPath, BitmapOrPath */
1921
1922/*
1923 * BitmapAndPath represents a BitmapAnd plan node; it can only appear as
1924 * part of the substructure of a BitmapHeapPath. The Path structure is
1925 * a bit more heavyweight than we really need for this, but for simplicity
1926 * we make it a derivative of Path anyway.
1927 */
1928typedef struct BitmapAndPath
1929{
1931 List *bitmapquals; /* IndexPaths and BitmapOrPaths */
1934
1935/*
1936 * BitmapOrPath represents a BitmapOr plan node; it can only appear as
1937 * part of the substructure of a BitmapHeapPath. The Path structure is
1938 * a bit more heavyweight than we really need for this, but for simplicity
1939 * we make it a derivative of Path anyway.
1940 */
1941typedef struct BitmapOrPath
1942{
1944 List *bitmapquals; /* IndexPaths and BitmapAndPaths */
1947
1948/*
1949 * TidPath represents a scan by TID
1950 *
1951 * tidquals is an implicitly OR'ed list of qual expressions of the form
1952 * "CTID = pseudoconstant", or "CTID = ANY(pseudoconstant_array)",
1953 * or a CurrentOfExpr for the relation.
1954 */
1955typedef struct TidPath
1956{
1958 List *tidquals; /* qual(s) involving CTID = something */
1960
1961/*
1962 * TidRangePath represents a scan by a contiguous range of TIDs
1963 *
1964 * tidrangequals is an implicitly AND'ed list of qual expressions of the form
1965 * "CTID relop pseudoconstant", where relop is one of >,>=,<,<=.
1966 */
1967typedef struct TidRangePath
1968{
1972
1973/*
1974 * SubqueryScanPath represents a scan of an unflattened subquery-in-FROM
1975 *
1976 * Note that the subpath comes from a different planning domain; for example
1977 * RTE indexes within it mean something different from those known to the
1978 * SubqueryScanPath. path.parent->subroot is the planning context needed to
1979 * interpret the subpath.
1980 */
1981typedef struct SubqueryScanPath
1982{
1984 Path *subpath; /* path representing subquery execution */
1986
1987/*
1988 * ForeignPath represents a potential scan of a foreign table, foreign join
1989 * or foreign upper-relation.
1990 *
1991 * In the case of a foreign join, fdw_restrictinfo stores the RestrictInfos to
1992 * apply to the join, which are used by createplan.c to get pseudoconstant
1993 * clauses evaluated as one-time quals in a gating Result plan node.
1994 *
1995 * fdw_private stores FDW private data about the scan. While fdw_private is
1996 * not actually touched by the core code during normal operations, it's
1997 * generally a good idea to use a representation that can be dumped by
1998 * nodeToString(), so that you can examine the structure during debugging
1999 * with tools like pprint().
2000 */
2001typedef struct ForeignPath
2002{
2008
2009/*
2010 * CustomPath represents a table scan or a table join done by some out-of-core
2011 * extension.
2012 *
2013 * We provide a set of hooks here - which the provider must take care to set
2014 * up correctly - to allow extensions to supply their own methods of scanning
2015 * a relation or join relations. For example, a provider might provide GPU
2016 * acceleration, a cache-based scan, or some other kind of logic we haven't
2017 * dreamed up yet.
2018 *
2019 * CustomPaths can be injected into the planning process for a base or join
2020 * relation by set_rel_pathlist_hook or set_join_pathlist_hook functions,
2021 * respectively.
2022 *
2023 * In the case of a table join, custom_restrictinfo stores the RestrictInfos
2024 * to apply to the join, which are used by createplan.c to get pseudoconstant
2025 * clauses evaluated as one-time quals in a gating Result plan node.
2026 *
2027 * Core code must avoid assuming that the CustomPath is only as large as
2028 * the structure declared here; providers are allowed to make it the first
2029 * element in a larger structure. (Since the planner never copies Paths,
2030 * this doesn't add any complication.) However, for consistency with the
2031 * FDW case, we provide a "custom_private" field in CustomPath; providers
2032 * may prefer to use that rather than define another struct type.
2033 */
2034
2035struct CustomPathMethods;
2036
2037typedef struct CustomPath
2038{
2040 uint32 flags; /* mask of CUSTOMPATH_* flags, see
2041 * nodes/extensible.h */
2042 List *custom_paths; /* list of child Path nodes, if any */
2047
2048/*
2049 * AppendPath represents an Append plan, ie, successive execution of
2050 * several member plans.
2051 *
2052 * For partial Append, 'subpaths' contains non-partial subpaths followed by
2053 * partial subpaths.
2054 *
2055 * Note: it is possible for "subpaths" to contain only one, or even no,
2056 * elements. These cases are optimized during create_append_plan.
2057 * In particular, an AppendPath with no subpaths is a "dummy" path that
2058 * is created to represent the case that a relation is provably empty.
2059 * (This is a convenient representation because it means that when we build
2060 * an appendrel and find that all its children have been excluded, no extra
2061 * action is needed to recognize the relation as dummy.)
2062 */
2063typedef struct AppendPath
2064{
2066 List *subpaths; /* list of component Paths */
2067 /* Index of first partial path in subpaths; list_length(subpaths) if none */
2069 Cardinality limit_tuples; /* hard limit on output tuples, or -1 */
2071
2072#define IS_DUMMY_APPEND(p) \
2073 (IsA((p), AppendPath) && ((AppendPath *) (p))->subpaths == NIL)
2074
2075/*
2076 * A relation that's been proven empty will have one path that is dummy
2077 * (but might have projection paths on top). For historical reasons,
2078 * this is provided as a macro that wraps is_dummy_rel().
2079 */
2080#define IS_DUMMY_REL(r) is_dummy_rel(r)
2081extern bool is_dummy_rel(RelOptInfo *rel);
2082
2083/*
2084 * MergeAppendPath represents a MergeAppend plan, ie, the merging of sorted
2085 * results from several member plans to produce similarly-sorted output.
2086 */
2087typedef struct MergeAppendPath
2088{
2090 List *subpaths; /* list of component Paths */
2091 Cardinality limit_tuples; /* hard limit on output tuples, or -1 */
2093
2094/*
2095 * GroupResultPath represents use of a Result plan node to compute the
2096 * output of a degenerate GROUP BY case, wherein we know we should produce
2097 * exactly one row, which might then be filtered by a HAVING qual.
2098 *
2099 * Note that quals is a list of bare clauses, not RestrictInfos.
2100 */
2101typedef struct GroupResultPath
2102{
2106
2107/*
2108 * MaterialPath represents use of a Material plan node, i.e., caching of
2109 * the output of its subpath. This is used when the subpath is expensive
2110 * and needs to be scanned repeatedly, or when we need mark/restore ability
2111 * and the subpath doesn't have it.
2112 */
2113typedef struct MaterialPath
2114{
2118
2119/*
2120 * MemoizePath represents a Memoize plan node, i.e., a cache that caches
2121 * tuples from parameterized paths to save the underlying node from having to
2122 * be rescanned for parameter values which are already cached.
2123 */
2124typedef struct MemoizePath
2125{
2127 Path *subpath; /* outerpath to cache tuples from */
2128 List *hash_operators; /* OIDs of hash equality ops for cache keys */
2129 List *param_exprs; /* expressions that are cache keys */
2130 bool singlerow; /* true if the cache entry is to be marked as
2131 * complete after caching the first record. */
2132 bool binary_mode; /* true when cache key should be compared bit
2133 * by bit, false when using hash equality ops */
2134 Cardinality calls; /* expected number of rescans */
2135 uint32 est_entries; /* The maximum number of entries that the
2136 * planner expects will fit in the cache, or 0
2137 * if unknown */
2139
2140/*
2141 * UniquePath represents elimination of distinct rows from the output of
2142 * its subpath.
2143 *
2144 * This can represent significantly different plans: either hash-based or
2145 * sort-based implementation, or a no-op if the input path can be proven
2146 * distinct already. The decision is sufficiently localized that it's not
2147 * worth having separate Path node types. (Note: in the no-op case, we could
2148 * eliminate the UniquePath node entirely and just return the subpath; but
2149 * it's convenient to have a UniquePath in the path tree to signal upper-level
2150 * routines that the input is known distinct.)
2151 */
2153{
2154 UNIQUE_PATH_NOOP, /* input is known unique already */
2155 UNIQUE_PATH_HASH, /* use hashing */
2156 UNIQUE_PATH_SORT, /* use sorting */
2158
2159typedef struct UniquePath
2160{
2164 List *in_operators; /* equality operators of the IN clause */
2165 List *uniq_exprs; /* expressions to be made unique */
2167
2168/*
2169 * GatherPath runs several copies of a plan in parallel and collects the
2170 * results. The parallel leader may also execute the plan, unless the
2171 * single_copy flag is set.
2172 */
2173typedef struct GatherPath
2174{
2176 Path *subpath; /* path for each worker */
2177 bool single_copy; /* don't execute path more than once */
2178 int num_workers; /* number of workers sought to help */
2180
2181/*
2182 * GatherMergePath runs several copies of a plan in parallel and collects
2183 * the results, preserving their common sort order.
2184 */
2185typedef struct GatherMergePath
2186{
2188 Path *subpath; /* path for each worker */
2189 int num_workers; /* number of workers sought to help */
2191
2192
2193/*
2194 * All join-type paths share these fields.
2195 */
2196
2197typedef struct JoinPath
2198{
2200
2201 Path path;
2202
2204
2205 bool inner_unique; /* each outer tuple provably matches no more
2206 * than one inner tuple */
2207
2208 Path *outerjoinpath; /* path for the outer side of the join */
2209 Path *innerjoinpath; /* path for the inner side of the join */
2210
2211 List *joinrestrictinfo; /* RestrictInfos to apply to join */
2212
2213 /*
2214 * See the notes for RelOptInfo and ParamPathInfo to understand why
2215 * joinrestrictinfo is needed in JoinPath, and can't be merged into the
2216 * parent RelOptInfo.
2217 */
2219
2220/*
2221 * A nested-loop path needs no special fields.
2222 */
2223
2224typedef struct NestPath
2225{
2228
2229/*
2230 * A mergejoin path has these fields.
2231 *
2232 * Unlike other path types, a MergePath node doesn't represent just a single
2233 * run-time plan node: it can represent up to four. Aside from the MergeJoin
2234 * node itself, there can be a Sort node for the outer input, a Sort node
2235 * for the inner input, and/or a Material node for the inner input. We could
2236 * represent these nodes by separate path nodes, but considering how many
2237 * different merge paths are investigated during a complex join problem,
2238 * it seems better to avoid unnecessary palloc overhead.
2239 *
2240 * path_mergeclauses lists the clauses (in the form of RestrictInfos)
2241 * that will be used in the merge.
2242 *
2243 * Note that the mergeclauses are a subset of the parent relation's
2244 * restriction-clause list. Any join clauses that are not mergejoinable
2245 * appear only in the parent's restrict list, and must be checked by a
2246 * qpqual at execution time.
2247 *
2248 * outersortkeys (resp. innersortkeys) is NIL if the outer path
2249 * (resp. inner path) is already ordered appropriately for the
2250 * mergejoin. If it is not NIL then it is a PathKeys list describing
2251 * the ordering that must be created by an explicit Sort node.
2252 *
2253 * outer_presorted_keys is the number of presorted keys of the outer
2254 * path that match outersortkeys. It is used to determine whether
2255 * explicit incremental sort can be applied when outersortkeys is not
2256 * NIL. We do not track the number of presorted keys of the inner
2257 * path, as incremental sort currently does not support mark/restore.
2258 *
2259 * skip_mark_restore is true if the executor need not do mark/restore calls.
2260 * Mark/restore overhead is usually required, but can be skipped if we know
2261 * that the executor need find only one match per outer tuple, and that the
2262 * mergeclauses are sufficient to identify a match. In such cases the
2263 * executor can immediately advance the outer relation after processing a
2264 * match, and therefore it need never back up the inner relation.
2265 *
2266 * materialize_inner is true if a Material node should be placed atop the
2267 * inner input. This may appear with or without an inner Sort step.
2268 */
2269
2270typedef struct MergePath
2271{
2273 List *path_mergeclauses; /* join clauses to be used for merge */
2274 List *outersortkeys; /* keys for explicit sort, if any */
2275 List *innersortkeys; /* keys for explicit sort, if any */
2276 int outer_presorted_keys; /* number of presorted keys of the
2277 * outer path */
2278 bool skip_mark_restore; /* can executor skip mark/restore? */
2279 bool materialize_inner; /* add Materialize to inner? */
2281
2282/*
2283 * A hashjoin path has these fields.
2284 *
2285 * The remarks above for mergeclauses apply for hashclauses as well.
2286 *
2287 * Hashjoin does not care what order its inputs appear in, so we have
2288 * no need for sortkeys.
2289 */
2290
2291typedef struct HashPath
2292{
2294 List *path_hashclauses; /* join clauses used for hashing */
2295 int num_batches; /* number of batches expected */
2296 Cardinality inner_rows_total; /* total inner rows expected */
2298
2299/*
2300 * ProjectionPath represents a projection (that is, targetlist computation)
2301 *
2302 * Nominally, this path node represents using a Result plan node to do a
2303 * projection step. However, if the input plan node supports projection,
2304 * we can just modify its output targetlist to do the required calculations
2305 * directly, and not need a Result. In some places in the planner we can just
2306 * jam the desired PathTarget into the input path node (and adjust its cost
2307 * accordingly), so we don't need a ProjectionPath. But in other places
2308 * it's necessary to not modify the input path node, so we need a separate
2309 * ProjectionPath node, which is marked dummy to indicate that we intend to
2310 * assign the work to the input plan node. The estimated cost for the
2311 * ProjectionPath node will account for whether a Result will be used or not.
2312 */
2313typedef struct ProjectionPath
2314{
2316 Path *subpath; /* path representing input source */
2317 bool dummypp; /* true if no separate Result is needed */
2319
2320/*
2321 * ProjectSetPath represents evaluation of a targetlist that includes
2322 * set-returning function(s), which will need to be implemented by a
2323 * ProjectSet plan node.
2324 */
2325typedef struct ProjectSetPath
2326{
2328 Path *subpath; /* path representing input source */
2330
2331/*
2332 * SortPath represents an explicit sort step
2333 *
2334 * The sort keys are, by definition, the same as path.pathkeys.
2335 *
2336 * Note: the Sort plan node cannot project, so path.pathtarget must be the
2337 * same as the input's pathtarget.
2338 */
2339typedef struct SortPath
2340{
2342 Path *subpath; /* path representing input source */
2344
2345/*
2346 * IncrementalSortPath represents an incremental sort step
2347 *
2348 * This is like a regular sort, except some leading key columns are assumed
2349 * to be ordered already.
2350 */
2352{
2354 int nPresortedCols; /* number of presorted columns */
2356
2357/*
2358 * GroupPath represents grouping (of presorted input)
2359 *
2360 * groupClause represents the columns to be grouped on; the input path
2361 * must be at least that well sorted.
2362 *
2363 * We can also apply a qual to the grouped rows (equivalent of HAVING)
2364 */
2365typedef struct GroupPath
2366{
2368 Path *subpath; /* path representing input source */
2369 List *groupClause; /* a list of SortGroupClause's */
2370 List *qual; /* quals (HAVING quals), if any */
2372
2373/*
2374 * UpperUniquePath represents adjacent-duplicate removal (in presorted input)
2375 *
2376 * The columns to be compared are the first numkeys columns of the path's
2377 * pathkeys. The input is presumed already sorted that way.
2378 */
2379typedef struct UpperUniquePath
2380{
2382 Path *subpath; /* path representing input source */
2383 int numkeys; /* number of pathkey columns to compare */
2385
2386/*
2387 * AggPath represents generic computation of aggregate functions
2388 *
2389 * This may involve plain grouping (but not grouping sets), using either
2390 * sorted or hashed grouping; for the AGG_SORTED case, the input must be
2391 * appropriately presorted.
2392 */
2393typedef struct AggPath
2394{
2396 Path *subpath; /* path representing input source */
2397 AggStrategy aggstrategy; /* basic strategy, see nodes.h */
2398 AggSplit aggsplit; /* agg-splitting mode, see nodes.h */
2399 Cardinality numGroups; /* estimated number of groups in input */
2400 uint64 transitionSpace; /* for pass-by-ref transition data */
2401 List *groupClause; /* a list of SortGroupClause's */
2402 List *qual; /* quals (HAVING quals), if any */
2404
2405/*
2406 * Various annotations used for grouping sets in the planner.
2407 */
2408
2409typedef struct GroupingSetData
2410{
2411 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
2412
2413 NodeTag type;
2414 List *set; /* grouping set as list of sortgrouprefs */
2415 Cardinality numGroups; /* est. number of result groups */
2417
2418typedef struct RollupData
2419{
2420 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
2421
2422 NodeTag type;
2423 List *groupClause; /* applicable subset of parse->groupClause */
2424 List *gsets; /* lists of integer indexes into groupClause */
2425 List *gsets_data; /* list of GroupingSetData */
2426 Cardinality numGroups; /* est. number of result groups */
2427 bool hashable; /* can be hashed */
2428 bool is_hashed; /* to be implemented as a hashagg */
2430
2431/*
2432 * GroupingSetsPath represents a GROUPING SETS aggregation
2433 */
2434
2435typedef struct GroupingSetsPath
2436{
2438 Path *subpath; /* path representing input source */
2439 AggStrategy aggstrategy; /* basic strategy */
2440 List *rollups; /* list of RollupData */
2441 List *qual; /* quals (HAVING quals), if any */
2442 uint64 transitionSpace; /* for pass-by-ref transition data */
2444
2445/*
2446 * MinMaxAggPath represents computation of MIN/MAX aggregates from indexes
2447 */
2448typedef struct MinMaxAggPath
2449{
2451 List *mmaggregates; /* list of MinMaxAggInfo */
2452 List *quals; /* HAVING quals, if any */
2454
2455/*
2456 * WindowAggPath represents generic computation of window functions
2457 */
2458typedef struct WindowAggPath
2459{
2461 Path *subpath; /* path representing input source */
2462 WindowClause *winclause; /* WindowClause we'll be using */
2463 List *qual; /* lower-level WindowAgg runconditions */
2464 List *runCondition; /* OpExpr List to short-circuit execution */
2465 bool topwindow; /* false for all apart from the WindowAgg
2466 * that's closest to the root of the plan */
2468
2469/*
2470 * SetOpPath represents a set-operation, that is INTERSECT or EXCEPT
2471 */
2472typedef struct SetOpPath
2473{
2475 Path *leftpath; /* paths representing input sources */
2477 SetOpCmd cmd; /* what to do, see nodes.h */
2478 SetOpStrategy strategy; /* how to do it, see nodes.h */
2479 List *groupList; /* SortGroupClauses identifying target cols */
2480 Cardinality numGroups; /* estimated number of groups in left input */
2482
2483/*
2484 * RecursiveUnionPath represents a recursive UNION node
2485 */
2487{
2489 Path *leftpath; /* paths representing input sources */
2491 List *distinctList; /* SortGroupClauses identifying target cols */
2492 int wtParam; /* ID of Param representing work table */
2493 Cardinality numGroups; /* estimated number of groups in input */
2495
2496/*
2497 * LockRowsPath represents acquiring row locks for SELECT FOR UPDATE/SHARE
2498 */
2499typedef struct LockRowsPath
2500{
2502 Path *subpath; /* path representing input source */
2503 List *rowMarks; /* a list of PlanRowMark's */
2504 int epqParam; /* ID of Param for EvalPlanQual re-eval */
2506
2507/*
2508 * ModifyTablePath represents performing INSERT/UPDATE/DELETE/MERGE
2509 *
2510 * We represent most things that will be in the ModifyTable plan node
2511 * literally, except we have a child Path not Plan. But analysis of the
2512 * OnConflictExpr is deferred to createplan.c, as is collection of FDW data.
2513 */
2514typedef struct ModifyTablePath
2515{
2517 Path *subpath; /* Path producing source data */
2518 CmdType operation; /* INSERT, UPDATE, DELETE, or MERGE */
2519 bool canSetTag; /* do we set the command tag/es_processed? */
2520 Index nominalRelation; /* Parent RT index for use of EXPLAIN */
2521 Index rootRelation; /* Root RT index, if partitioned/inherited */
2522 bool partColsUpdated; /* some part key in hierarchy updated? */
2523 List *resultRelations; /* integer list of RT indexes */
2524 List *updateColnosLists; /* per-target-table update_colnos lists */
2525 List *withCheckOptionLists; /* per-target-table WCO lists */
2526 List *returningLists; /* per-target-table RETURNING tlists */
2527 List *rowMarks; /* PlanRowMarks (non-locking only) */
2528 OnConflictExpr *onconflict; /* ON CONFLICT clause, or NULL */
2529 int epqParam; /* ID of Param for EvalPlanQual re-eval */
2530 List *mergeActionLists; /* per-target-table lists of actions for
2531 * MERGE */
2532 List *mergeJoinConditions; /* per-target-table join conditions
2533 * for MERGE */
2535
2536/*
2537 * LimitPath represents applying LIMIT/OFFSET restrictions
2538 */
2539typedef struct LimitPath
2540{
2542 Path *subpath; /* path representing input source */
2543 Node *limitOffset; /* OFFSET parameter, or NULL if none */
2544 Node *limitCount; /* COUNT parameter, or NULL if none */
2545 LimitOption limitOption; /* FETCH FIRST with ties or exact number */
2547
2548
2549/*
2550 * Restriction clause info.
2551 *
2552 * We create one of these for each AND sub-clause of a restriction condition
2553 * (WHERE or JOIN/ON clause). Since the restriction clauses are logically
2554 * ANDed, we can use any one of them or any subset of them to filter out
2555 * tuples, without having to evaluate the rest. The RestrictInfo node itself
2556 * stores data used by the optimizer while choosing the best query plan.
2557 *
2558 * If a restriction clause references a single base relation, it will appear
2559 * in the baserestrictinfo list of the RelOptInfo for that base rel.
2560 *
2561 * If a restriction clause references more than one base+OJ relation, it will
2562 * appear in the joininfo list of every RelOptInfo that describes a strict
2563 * subset of the relations mentioned in the clause. The joininfo lists are
2564 * used to drive join tree building by selecting plausible join candidates.
2565 * The clause cannot actually be applied until we have built a join rel
2566 * containing all the relations it references, however.
2567 *
2568 * When we construct a join rel that includes all the relations referenced
2569 * in a multi-relation restriction clause, we place that clause into the
2570 * joinrestrictinfo lists of paths for the join rel, if neither left nor
2571 * right sub-path includes all relations referenced in the clause. The clause
2572 * will be applied at that join level, and will not propagate any further up
2573 * the join tree. (Note: the "predicate migration" code was once intended to
2574 * push restriction clauses up and down the plan tree based on evaluation
2575 * costs, but it's dead code and is unlikely to be resurrected in the
2576 * foreseeable future.)
2577 *
2578 * Note that in the presence of more than two rels, a multi-rel restriction
2579 * might reach different heights in the join tree depending on the join
2580 * sequence we use. So, these clauses cannot be associated directly with
2581 * the join RelOptInfo, but must be kept track of on a per-join-path basis.
2582 *
2583 * RestrictInfos that represent equivalence conditions (i.e., mergejoinable
2584 * equalities that are not outerjoin-delayed) are handled a bit differently.
2585 * Initially we attach them to the EquivalenceClasses that are derived from
2586 * them. When we construct a scan or join path, we look through all the
2587 * EquivalenceClasses and generate derived RestrictInfos representing the
2588 * minimal set of conditions that need to be checked for this particular scan
2589 * or join to enforce that all members of each EquivalenceClass are in fact
2590 * equal in all rows emitted by the scan or join.
2591 *
2592 * The clause_relids field lists the base plus outer-join RT indexes that
2593 * actually appear in the clause. required_relids lists the minimum set of
2594 * relids needed to evaluate the clause; while this is often equal to
2595 * clause_relids, it can be more. We will add relids to required_relids when
2596 * we need to force an outer join ON clause to be evaluated exactly at the
2597 * level of the outer join, which is true except when it is a "degenerate"
2598 * condition that references only Vars from the nullable side of the join.
2599 *
2600 * RestrictInfo nodes contain a flag to indicate whether a qual has been
2601 * pushed down to a lower level than its original syntactic placement in the
2602 * join tree would suggest. If an outer join prevents us from pushing a qual
2603 * down to its "natural" semantic level (the level associated with just the
2604 * base rels used in the qual) then we mark the qual with a "required_relids"
2605 * value including more than just the base rels it actually uses. By
2606 * pretending that the qual references all the rels required to form the outer
2607 * join, we prevent it from being evaluated below the outer join's joinrel.
2608 * When we do form the outer join's joinrel, we still need to distinguish
2609 * those quals that are actually in that join's JOIN/ON condition from those
2610 * that appeared elsewhere in the tree and were pushed down to the join rel
2611 * because they used no other rels. That's what the is_pushed_down flag is
2612 * for; it tells us that a qual is not an OUTER JOIN qual for the set of base
2613 * rels listed in required_relids. A clause that originally came from WHERE
2614 * or an INNER JOIN condition will *always* have its is_pushed_down flag set.
2615 * It's possible for an OUTER JOIN clause to be marked is_pushed_down too,
2616 * if we decide that it can be pushed down into the nullable side of the join.
2617 * In that case it acts as a plain filter qual for wherever it gets evaluated.
2618 * (In short, is_pushed_down is only false for non-degenerate outer join
2619 * conditions. Possibly we should rename it to reflect that meaning? But
2620 * see also the comments for RINFO_IS_PUSHED_DOWN, below.)
2621 *
2622 * There is also an incompatible_relids field, which is a set of outer-join
2623 * relids above which we cannot evaluate the clause (because they might null
2624 * Vars it uses that should not be nulled yet). In principle this could be
2625 * filled in any RestrictInfo as the set of OJ relids that appear above the
2626 * clause and null Vars that it uses. In practice we only bother to populate
2627 * it for "clone" clauses, as it's currently only needed to prevent multiple
2628 * clones of the same clause from being accepted for evaluation at the same
2629 * join level.
2630 *
2631 * There is also an outer_relids field, which is NULL except for outer join
2632 * clauses; for those, it is the set of relids on the outer side of the
2633 * clause's outer join. (These are rels that the clause cannot be applied to
2634 * in parameterized scans, since pushing it into the join's outer side would
2635 * lead to wrong answers.)
2636 *
2637 * To handle security-barrier conditions efficiently, we mark RestrictInfo
2638 * nodes with a security_level field, in which higher values identify clauses
2639 * coming from less-trusted sources. The exact semantics are that a clause
2640 * cannot be evaluated before another clause with a lower security_level value
2641 * unless the first clause is leakproof. As with outer-join clauses, this
2642 * creates a reason for clauses to sometimes need to be evaluated higher in
2643 * the join tree than their contents would suggest; and even at a single plan
2644 * node, this rule constrains the order of application of clauses.
2645 *
2646 * In general, the referenced clause might be arbitrarily complex. The
2647 * kinds of clauses we can handle as indexscan quals, mergejoin clauses,
2648 * or hashjoin clauses are limited (e.g., no volatile functions). The code
2649 * for each kind of path is responsible for identifying the restrict clauses
2650 * it can use and ignoring the rest. Clauses not implemented by an indexscan,
2651 * mergejoin, or hashjoin will be placed in the plan qual or joinqual field
2652 * of the finished Plan node, where they will be enforced by general-purpose
2653 * qual-expression-evaluation code. (But we are still entitled to count
2654 * their selectivity when estimating the result tuple count, if we
2655 * can guess what it is...)
2656 *
2657 * When the referenced clause is an OR clause, we generate a modified copy
2658 * in which additional RestrictInfo nodes are inserted below the top-level
2659 * OR/AND structure. This is a convenience for OR indexscan processing:
2660 * indexquals taken from either the top level or an OR subclause will have
2661 * associated RestrictInfo nodes.
2662 *
2663 * The can_join flag is set true if the clause looks potentially useful as
2664 * a merge or hash join clause, that is if it is a binary opclause with
2665 * nonoverlapping sets of relids referenced in the left and right sides.
2666 * (Whether the operator is actually merge or hash joinable isn't checked,
2667 * however.)
2668 *
2669 * The pseudoconstant flag is set true if the clause contains no Vars of
2670 * the current query level and no volatile functions. Such a clause can be
2671 * pulled out and used as a one-time qual in a gating Result node. We keep
2672 * pseudoconstant clauses in the same lists as other RestrictInfos so that
2673 * the regular clause-pushing machinery can assign them to the correct join
2674 * level, but they need to be treated specially for cost and selectivity
2675 * estimates. Note that a pseudoconstant clause can never be an indexqual
2676 * or merge or hash join clause, so it's of no interest to large parts of
2677 * the planner.
2678 *
2679 * When we generate multiple versions of a clause so as to have versions
2680 * that will work after commuting some left joins per outer join identity 3,
2681 * we mark the one with the fewest nullingrels bits with has_clone = true,
2682 * and the rest with is_clone = true. This allows proper filtering of
2683 * these redundant clauses, so that we apply only one version of them.
2684 *
2685 * When join clauses are generated from EquivalenceClasses, there may be
2686 * several equally valid ways to enforce join equivalence, of which we need
2687 * apply only one. We mark clauses of this kind by setting parent_ec to
2688 * point to the generating EquivalenceClass. Multiple clauses with the same
2689 * parent_ec in the same join are redundant.
2690 *
2691 * Most fields are ignored for equality, since they may not be set yet, and
2692 * should be derivable from the clause anyway.
2693 *
2694 * parent_ec, left_ec, right_ec are not printed, lest it lead to infinite
2695 * recursion in plan tree dump.
2696 */
2697
2698typedef struct RestrictInfo
2699{
2700 pg_node_attr(no_read, no_query_jumble)
2701
2702 NodeTag type;
2703
2704 /* the represented clause of WHERE or JOIN */
2706
2707 /* true if clause was pushed down in level */
2709
2710 /* see comment above */
2711 bool can_join pg_node_attr(equal_ignore);
2712
2713 /* see comment above */
2714 bool pseudoconstant pg_node_attr(equal_ignore);
2715
2716 /* see comment above */
2719
2720 /* true if known to contain no leaked Vars */
2721 bool leakproof pg_node_attr(equal_ignore);
2722
2723 /* indicates if clause contains any volatile functions */
2724 VolatileFunctionStatus has_volatile pg_node_attr(equal_ignore);
2725
2726 /* see comment above */
2728
2729 /* number of base rels in clause_relids */
2730 int num_base_rels pg_node_attr(equal_ignore);
2731
2732 /* The relids (varnos+varnullingrels) actually referenced in the clause: */
2733 Relids clause_relids pg_node_attr(equal_ignore);
2734
2735 /* The set of relids required to evaluate the clause: */
2737
2738 /* Relids above which we cannot evaluate the clause (see comment above) */
2740
2741 /* If an outer-join clause, the outer-side relations, else NULL: */
2743
2744 /*
2745 * Relids in the left/right side of the clause. These fields are set for
2746 * any binary opclause.
2747 */
2748 Relids left_relids pg_node_attr(equal_ignore);
2749 Relids right_relids pg_node_attr(equal_ignore);
2750
2751 /*
2752 * Modified clause with RestrictInfos. This field is NULL unless clause
2753 * is an OR clause.
2754 */
2755 Expr *orclause pg_node_attr(equal_ignore);
2756
2757 /*----------
2758 * Serial number of this RestrictInfo. This is unique within the current
2759 * PlannerInfo context, with a few critical exceptions:
2760 * 1. When we generate multiple clones of the same qual condition to
2761 * cope with outer join identity 3, all the clones get the same serial
2762 * number. This reflects that we only want to apply one of them in any
2763 * given plan.
2764 * 2. If we manufacture a commuted version of a qual to use as an index
2765 * condition, it copies the original's rinfo_serial, since it is in
2766 * practice the same condition.
2767 * 3. If we reduce a qual to constant-FALSE, the new constant-FALSE qual
2768 * copies the original's rinfo_serial, since it is in practice the same
2769 * condition.
2770 * 4. RestrictInfos made for a child relation copy their parent's
2771 * rinfo_serial. Likewise, when an EquivalenceClass makes a derived
2772 * equality clause for a child relation, it copies the rinfo_serial of
2773 * the matching equality clause for the parent. This allows detection
2774 * of redundant pushed-down equality clauses.
2775 *----------
2776 */
2778
2779 /*
2780 * Generating EquivalenceClass. This field is NULL unless clause is
2781 * potentially redundant.
2782 */
2783 EquivalenceClass *parent_ec pg_node_attr(copy_as_scalar, equal_ignore, read_write_ignore);
2784
2785 /*
2786 * cache space for cost and selectivity
2787 */
2788
2789 /* eval cost of clause; -1 if not yet set */
2790 QualCost eval_cost pg_node_attr(equal_ignore);
2791
2792 /* selectivity for "normal" (JOIN_INNER) semantics; -1 if not yet set */
2793 Selectivity norm_selec pg_node_attr(equal_ignore);
2794 /* selectivity for outer join semantics; -1 if not yet set */
2795 Selectivity outer_selec pg_node_attr(equal_ignore);
2796
2797 /*
2798 * opfamilies containing clause operator; valid if clause is
2799 * mergejoinable, else NIL
2800 */
2801 List *mergeopfamilies pg_node_attr(equal_ignore);
2802
2803 /*
2804 * cache space for mergeclause processing; NULL if not yet set
2805 */
2806
2807 /* EquivalenceClass containing lefthand */
2808 EquivalenceClass *left_ec pg_node_attr(copy_as_scalar, equal_ignore, read_write_ignore);
2809 /* EquivalenceClass containing righthand */
2810 EquivalenceClass *right_ec pg_node_attr(copy_as_scalar, equal_ignore, read_write_ignore);
2811 /* EquivalenceMember for lefthand */
2812 EquivalenceMember *left_em pg_node_attr(copy_as_scalar, equal_ignore);
2813 /* EquivalenceMember for righthand */
2814 EquivalenceMember *right_em pg_node_attr(copy_as_scalar, equal_ignore);
2815
2816 /*
2817 * List of MergeScanSelCache structs. Those aren't Nodes, so hard to
2818 * copy; instead replace with NIL. That has the effect that copying will
2819 * just reset the cache. Likewise, can't compare or print them.
2820 */
2821 List *scansel_cache pg_node_attr(copy_as(NIL), equal_ignore, read_write_ignore);
2822
2823 /*
2824 * transient workspace for use while considering a specific join path; T =
2825 * outer var on left, F = on right
2826 */
2827 bool outer_is_left pg_node_attr(equal_ignore);
2828
2829 /*
2830 * copy of clause operator; valid if clause is hashjoinable, else
2831 * InvalidOid
2832 */
2833 Oid hashjoinoperator pg_node_attr(equal_ignore);
2834
2835 /*
2836 * cache space for hashclause processing; -1 if not yet set
2837 */
2838 /* avg bucketsize of left side */
2839 Selectivity left_bucketsize pg_node_attr(equal_ignore);
2840 /* avg bucketsize of right side */
2841 Selectivity right_bucketsize pg_node_attr(equal_ignore);
2842 /* left side's most common val's freq */
2843 Selectivity left_mcvfreq pg_node_attr(equal_ignore);
2844 /* right side's most common val's freq */
2845 Selectivity right_mcvfreq pg_node_attr(equal_ignore);
2846
2847 /* hash equality operators used for memoize nodes, else InvalidOid */
2848 Oid left_hasheqoperator pg_node_attr(equal_ignore);
2849 Oid right_hasheqoperator pg_node_attr(equal_ignore);
2851
2852/*
2853 * This macro embodies the correct way to test whether a RestrictInfo is
2854 * "pushed down" to a given outer join, that is, should be treated as a filter
2855 * clause rather than a join clause at that outer join. This is certainly so
2856 * if is_pushed_down is true; but examining that is not sufficient anymore,
2857 * because outer-join clauses will get pushed down to lower outer joins when
2858 * we generate a path for the lower outer join that is parameterized by the
2859 * LHS of the upper one. We can detect such a clause by noting that its
2860 * required_relids exceed the scope of the join.
2861 */
2862#define RINFO_IS_PUSHED_DOWN(rinfo, joinrelids) \
2863 ((rinfo)->is_pushed_down || \
2864 !bms_is_subset((rinfo)->required_relids, joinrelids))
2865
2866/*
2867 * Since mergejoinscansel() is a relatively expensive function, and would
2868 * otherwise be invoked many times while planning a large join tree,
2869 * we go out of our way to cache its results. Each mergejoinable
2870 * RestrictInfo carries a list of the specific sort orderings that have
2871 * been considered for use with it, and the resulting selectivities.
2872 */
2873typedef struct MergeScanSelCache
2874{
2875 /* Ordering details (cache lookup key) */
2876 Oid opfamily; /* index opfamily defining the ordering */
2877 Oid collation; /* collation for the ordering */
2878 CompareType cmptype; /* sort direction (ASC or DESC) */
2879 bool nulls_first; /* do NULLs come before normal values? */
2880 /* Results */
2881 Selectivity leftstartsel; /* first-join fraction for clause left side */
2882 Selectivity leftendsel; /* last-join fraction for clause left side */
2883 Selectivity rightstartsel; /* first-join fraction for clause right side */
2884 Selectivity rightendsel; /* last-join fraction for clause right side */
2886
2887/*
2888 * Placeholder node for an expression to be evaluated below the top level
2889 * of a plan tree. This is used during planning to represent the contained
2890 * expression. At the end of the planning process it is replaced by either
2891 * the contained expression or a Var referring to a lower-level evaluation of
2892 * the contained expression. Generally the evaluation occurs below an outer
2893 * join, and Var references above the outer join might thereby yield NULL
2894 * instead of the expression value.
2895 *
2896 * phrels and phlevelsup correspond to the varno/varlevelsup fields of a
2897 * plain Var, except that phrels has to be a relid set since the evaluation
2898 * level of a PlaceHolderVar might be a join rather than a base relation.
2899 * Likewise, phnullingrels corresponds to varnullingrels.
2900 *
2901 * Although the planner treats this as an expression node type, it is not
2902 * recognized by the parser or executor, so we declare it here rather than
2903 * in primnodes.h.
2904 *
2905 * We intentionally do not compare phexpr. Two PlaceHolderVars with the
2906 * same ID and levelsup should be considered equal even if the contained
2907 * expressions have managed to mutate to different states. This will
2908 * happen during final plan construction when there are nested PHVs, since
2909 * the inner PHV will get replaced by a Param in some copies of the outer
2910 * PHV. Another way in which it can happen is that initplan sublinks
2911 * could get replaced by differently-numbered Params when sublink folding
2912 * is done. (The end result of such a situation would be some
2913 * unreferenced initplans, which is annoying but not really a problem.)
2914 * On the same reasoning, there is no need to examine phrels. But we do
2915 * need to compare phnullingrels, as that represents effects that are
2916 * external to the original value of the PHV.
2917 */
2918
2919typedef struct PlaceHolderVar
2920{
2921 pg_node_attr(no_query_jumble)
2922
2923 Expr xpr;
2924
2925 /* the represented expression */
2926 Expr *phexpr pg_node_attr(equal_ignore);
2927
2928 /* base+OJ relids syntactically within expr src */
2929 Relids phrels pg_node_attr(equal_ignore);
2930
2931 /* RT indexes of outer joins that can null PHV's value */
2933
2934 /* ID for PHV (unique within planner run) */
2936
2937 /* > 0 if PHV belongs to outer query */
2940
2941/*
2942 * "Special join" info.
2943 *
2944 * One-sided outer joins constrain the order of joining partially but not
2945 * completely. We flatten such joins into the planner's top-level list of
2946 * relations to join, but record information about each outer join in a
2947 * SpecialJoinInfo struct. These structs are kept in the PlannerInfo node's
2948 * join_info_list.
2949 *
2950 * Similarly, semijoins and antijoins created by flattening IN (subselect)
2951 * and EXISTS(subselect) clauses create partial constraints on join order.
2952 * These are likewise recorded in SpecialJoinInfo structs.
2953 *
2954 * We make SpecialJoinInfos for FULL JOINs even though there is no flexibility
2955 * of planning for them, because this simplifies make_join_rel()'s API.
2956 *
2957 * min_lefthand and min_righthand are the sets of base+OJ relids that must be
2958 * available on each side when performing the special join.
2959 * It is not valid for either min_lefthand or min_righthand to be empty sets;
2960 * if they were, this would break the logic that enforces join order.
2961 *
2962 * syn_lefthand and syn_righthand are the sets of base+OJ relids that are
2963 * syntactically below this special join. (These are needed to help compute
2964 * min_lefthand and min_righthand for higher joins.)
2965 *
2966 * jointype is never JOIN_RIGHT; a RIGHT JOIN is handled by switching
2967 * the inputs to make it a LEFT JOIN. It's never JOIN_RIGHT_SEMI or
2968 * JOIN_RIGHT_ANTI either. So the allowed values of jointype in a
2969 * join_info_list member are only LEFT, FULL, SEMI, or ANTI.
2970 *
2971 * ojrelid is the RT index of the join RTE representing this outer join,
2972 * if there is one. It is zero when jointype is INNER or SEMI, and can be
2973 * zero for jointype ANTI (if the join was transformed from a SEMI join).
2974 * One use for this field is that when constructing the output targetlist of a
2975 * join relation that implements this OJ, we add ojrelid to the varnullingrels
2976 * and phnullingrels fields of nullable (RHS) output columns, so that the
2977 * output Vars and PlaceHolderVars correctly reflect the nulling that has
2978 * potentially happened to them.
2979 *
2980 * commute_above_l is filled with the relids of syntactically-higher outer
2981 * joins that have been found to commute with this one per outer join identity
2982 * 3 (see optimizer/README), when this join is in the LHS of the upper join
2983 * (so, this is the lower join in the first form of the identity).
2984 *
2985 * commute_above_r is filled with the relids of syntactically-higher outer
2986 * joins that have been found to commute with this one per outer join identity
2987 * 3, when this join is in the RHS of the upper join (so, this is the lower
2988 * join in the second form of the identity).
2989 *
2990 * commute_below_l is filled with the relids of syntactically-lower outer
2991 * joins that have been found to commute with this one per outer join identity
2992 * 3 and are in the LHS of this join (so, this is the upper join in the first
2993 * form of the identity).
2994 *
2995 * commute_below_r is filled with the relids of syntactically-lower outer
2996 * joins that have been found to commute with this one per outer join identity
2997 * 3 and are in the RHS of this join (so, this is the upper join in the second
2998 * form of the identity).
2999 *
3000 * lhs_strict is true if the special join's condition cannot succeed when the
3001 * LHS variables are all NULL (this means that an outer join can commute with
3002 * upper-level outer joins even if it appears in their RHS). We don't bother
3003 * to set lhs_strict for FULL JOINs, however.
3004 *
3005 * For a semijoin, we also extract the join operators and their RHS arguments
3006 * and set semi_operators, semi_rhs_exprs, semi_can_btree, and semi_can_hash.
3007 * This is done in support of possibly unique-ifying the RHS, so we don't
3008 * bother unless at least one of semi_can_btree and semi_can_hash can be set
3009 * true. (You might expect that this information would be computed during
3010 * join planning; but it's helpful to have it available during planning of
3011 * parameterized table scans, so we store it in the SpecialJoinInfo structs.)
3012 *
3013 * For purposes of join selectivity estimation, we create transient
3014 * SpecialJoinInfo structures for regular inner joins; so it is possible
3015 * to have jointype == JOIN_INNER in such a structure, even though this is
3016 * not allowed within join_info_list. We also create transient
3017 * SpecialJoinInfos with jointype == JOIN_INNER for outer joins, since for
3018 * cost estimation purposes it is sometimes useful to know the join size under
3019 * plain innerjoin semantics. Note that lhs_strict and the semi_xxx fields
3020 * are not set meaningfully within such structs.
3021 *
3022 * We also create transient SpecialJoinInfos for child joins during
3023 * partitionwise join planning, which are also not present in join_info_list.
3024 */
3025#ifndef HAVE_SPECIALJOININFO_TYPEDEF
3027#define HAVE_SPECIALJOININFO_TYPEDEF 1
3028#endif
3029
3031{
3032 pg_node_attr(no_read, no_query_jumble)
3033
3034 NodeTag type;
3035 Relids min_lefthand; /* base+OJ relids in minimum LHS for join */
3036 Relids min_righthand; /* base+OJ relids in minimum RHS for join */
3037 Relids syn_lefthand; /* base+OJ relids syntactically within LHS */
3038 Relids syn_righthand; /* base+OJ relids syntactically within RHS */
3039 JoinType jointype; /* always INNER, LEFT, FULL, SEMI, or ANTI */
3040 Index ojrelid; /* outer join's RT index; 0 if none */
3041 Relids commute_above_l; /* commuting OJs above this one, if LHS */
3042 Relids commute_above_r; /* commuting OJs above this one, if RHS */
3043 Relids commute_below_l; /* commuting OJs in this one's LHS */
3044 Relids commute_below_r; /* commuting OJs in this one's RHS */
3045 bool lhs_strict; /* joinclause is strict for some LHS rel */
3046 /* Remaining fields are set only for JOIN_SEMI jointype: */
3047 bool semi_can_btree; /* true if semi_operators are all btree */
3048 bool semi_can_hash; /* true if semi_operators are all hash */
3049 List *semi_operators; /* OIDs of equality join operators */
3050 List *semi_rhs_exprs; /* righthand-side expressions of these ops */
3051};
3052
3053/*
3054 * Transient outer-join clause info.
3055 *
3056 * We set aside every outer join ON clause that looks mergejoinable,
3057 * and process it specially at the end of qual distribution.
3058 */
3060{
3061 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3062
3063 NodeTag type;
3064 RestrictInfo *rinfo; /* a mergejoinable outer-join clause */
3065 SpecialJoinInfo *sjinfo; /* the outer join's SpecialJoinInfo */
3067
3068/*
3069 * Append-relation info.
3070 *
3071 * When we expand an inheritable table or a UNION-ALL subselect into an
3072 * "append relation" (essentially, a list of child RTEs), we build an
3073 * AppendRelInfo for each child RTE. The list of AppendRelInfos indicates
3074 * which child RTEs must be included when expanding the parent, and each node
3075 * carries information needed to translate between columns of the parent and
3076 * columns of the child.
3077 *
3078 * These structs are kept in the PlannerInfo node's append_rel_list, with
3079 * append_rel_array[] providing a convenient lookup method for the struct
3080 * associated with a particular child relid (there can be only one, though
3081 * parent rels may have many entries in append_rel_list).
3082 *
3083 * Note: after completion of the planner prep phase, any given RTE is an
3084 * append parent having entries in append_rel_list if and only if its
3085 * "inh" flag is set. We clear "inh" for plain tables that turn out not
3086 * to have inheritance children, and (in an abuse of the original meaning
3087 * of the flag) we set "inh" for subquery RTEs that turn out to be
3088 * flattenable UNION ALL queries. This lets us avoid useless searches
3089 * of append_rel_list.
3090 *
3091 * Note: the data structure assumes that append-rel members are single
3092 * baserels. This is OK for inheritance, but it prevents us from pulling
3093 * up a UNION ALL member subquery if it contains a join. While that could
3094 * be fixed with a more complex data structure, at present there's not much
3095 * point because no improvement in the plan could result.
3096 */
3097
3098typedef struct AppendRelInfo
3099{
3100 pg_node_attr(no_query_jumble)
3101
3102 NodeTag type;
3103
3104 /*
3105 * These fields uniquely identify this append relationship. There can be
3106 * (in fact, always should be) multiple AppendRelInfos for the same
3107 * parent_relid, but never more than one per child_relid, since a given
3108 * RTE cannot be a child of more than one append parent.
3109 */
3110 Index parent_relid; /* RT index of append parent rel */
3111 Index child_relid; /* RT index of append child rel */
3112
3113 /*
3114 * For an inheritance appendrel, the parent and child are both regular
3115 * relations, and we store their rowtype OIDs here for use in translating
3116 * whole-row Vars. For a UNION-ALL appendrel, the parent and child are
3117 * both subqueries with no named rowtype, and we store InvalidOid here.
3118 */
3119 Oid parent_reltype; /* OID of parent's composite type */
3120 Oid child_reltype; /* OID of child's composite type */
3121
3122 /*
3123 * The N'th element of this list is a Var or expression representing the
3124 * child column corresponding to the N'th column of the parent. This is
3125 * used to translate Vars referencing the parent rel into references to
3126 * the child. A list element is NULL if it corresponds to a dropped
3127 * column of the parent (this is only possible for inheritance cases, not
3128 * UNION ALL). The list elements are always simple Vars for inheritance
3129 * cases, but can be arbitrary expressions in UNION ALL cases.
3130 *
3131 * Notice we only store entries for user columns (attno > 0). Whole-row
3132 * Vars are special-cased, and system columns (attno < 0) need no special
3133 * translation since their attnos are the same for all tables.
3134 *
3135 * Caution: the Vars have varlevelsup = 0. Be careful to adjust as needed
3136 * when copying into a subquery.
3137 */
3138 List *translated_vars; /* Expressions in the child's Vars */
3139
3140 /*
3141 * This array simplifies translations in the reverse direction, from
3142 * child's column numbers to parent's. The entry at [ccolno - 1] is the
3143 * 1-based parent column number for child column ccolno, or zero if that
3144 * child column is dropped or doesn't exist in the parent.
3145 */
3146 int num_child_cols; /* length of array */
3147 AttrNumber *parent_colnos pg_node_attr(array_size(num_child_cols));
3148
3149 /*
3150 * We store the parent table's OID here for inheritance, or InvalidOid for
3151 * UNION ALL. This is only needed to help in generating error messages if
3152 * an attempt is made to reference a dropped parent column.
3153 */
3154 Oid parent_reloid; /* OID of parent relation */
3156
3157/*
3158 * Information about a row-identity "resjunk" column in UPDATE/DELETE/MERGE.
3159 *
3160 * In partitioned UPDATE/DELETE/MERGE it's important for child partitions to
3161 * share row-identity columns whenever possible, so as not to chew up too many
3162 * targetlist columns. We use these structs to track which identity columns
3163 * have been requested. In the finished plan, each of these will give rise
3164 * to one resjunk entry in the targetlist of the ModifyTable's subplan node.
3165 *
3166 * All the Vars stored in RowIdentityVarInfos must have varno ROWID_VAR, for
3167 * convenience of detecting duplicate requests. We'll replace that, in the
3168 * final plan, with the varno of the generating rel.
3169 *
3170 * Outside this list, a Var with varno ROWID_VAR and varattno k is a reference
3171 * to the k-th element of the row_identity_vars list (k counting from 1).
3172 * We add such a reference to root->processed_tlist when creating the entry,
3173 * and it propagates into the plan tree from there.
3174 */
3176{
3177 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3178
3179 NodeTag type;
3180
3181 Var *rowidvar; /* Var to be evaluated (but varno=ROWID_VAR) */
3182 int32 rowidwidth; /* estimated average width */
3183 char *rowidname; /* name of the resjunk column */
3184 Relids rowidrels; /* RTE indexes of target rels using this */
3186
3187/*
3188 * For each distinct placeholder expression generated during planning, we
3189 * store a PlaceHolderInfo node in the PlannerInfo node's placeholder_list.
3190 * This stores info that is needed centrally rather than in each copy of the
3191 * PlaceHolderVar. The phid fields identify which PlaceHolderInfo goes with
3192 * each PlaceHolderVar. Note that phid is unique throughout a planner run,
3193 * not just within a query level --- this is so that we need not reassign ID's
3194 * when pulling a subquery into its parent.
3195 *
3196 * The idea is to evaluate the expression at (only) the ph_eval_at join level,
3197 * then allow it to bubble up like a Var until the ph_needed join level.
3198 * ph_needed has the same definition as attr_needed for a regular Var.
3199 *
3200 * The PlaceHolderVar's expression might contain LATERAL references to vars
3201 * coming from outside its syntactic scope. If so, those rels are *not*
3202 * included in ph_eval_at, but they are recorded in ph_lateral.
3203 *
3204 * Notice that when ph_eval_at is a join rather than a single baserel, the
3205 * PlaceHolderInfo may create constraints on join order: the ph_eval_at join
3206 * has to be formed below any outer joins that should null the PlaceHolderVar.
3207 *
3208 * We create a PlaceHolderInfo only after determining that the PlaceHolderVar
3209 * is actually referenced in the plan tree, so that unreferenced placeholders
3210 * don't result in unnecessary constraints on join order.
3211 */
3212
3213typedef struct PlaceHolderInfo
3214{
3215 pg_node_attr(no_read, no_query_jumble)
3216
3217 NodeTag type;
3218
3219 /* ID for PH (unique within planner run) */
3221
3222 /*
3223 * copy of PlaceHolderVar tree (should be redundant for comparison, could
3224 * be ignored)
3225 */
3227
3228 /* lowest level we can evaluate value at */
3230
3231 /* relids of contained lateral refs, if any */
3233
3234 /* highest level the value is needed at */
3236
3237 /* estimated attribute width */
3240
3241/*
3242 * This struct describes one potentially index-optimizable MIN/MAX aggregate
3243 * function. MinMaxAggPath contains a list of these, and if we accept that
3244 * path, the list is stored into root->minmax_aggs for use during setrefs.c.
3245 */
3246typedef struct MinMaxAggInfo
3247{
3248 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3249
3250 NodeTag type;
3251
3252 /* pg_proc Oid of the aggregate */
3254
3255 /* Oid of its sort operator */
3257
3258 /* expression we are aggregating on */
3260
3261 /*
3262 * modified "root" for planning the subquery; not printed, too large, not
3263 * interesting enough
3264 */
3265 PlannerInfo *subroot pg_node_attr(read_write_ignore);
3266
3267 /* access path for subquery */
3269
3270 /* estimated cost to fetch first row */
3272
3273 /* param for subplan's output */
3276
3277/*
3278 * At runtime, PARAM_EXEC slots are used to pass values around from one plan
3279 * node to another. They can be used to pass values down into subqueries (for
3280 * outer references in subqueries), or up out of subqueries (for the results
3281 * of a subplan), or from a NestLoop plan node into its inner relation (when
3282 * the inner scan is parameterized with values from the outer relation).
3283 * The planner is responsible for assigning nonconflicting PARAM_EXEC IDs to
3284 * the PARAM_EXEC Params it generates.
3285 *
3286 * Outer references are managed via root->plan_params, which is a list of
3287 * PlannerParamItems. While planning a subquery, each parent query level's
3288 * plan_params contains the values required from it by the current subquery.
3289 * During create_plan(), we use plan_params to track values that must be
3290 * passed from outer to inner sides of NestLoop plan nodes.
3291 *
3292 * The item a PlannerParamItem represents can be one of three kinds:
3293 *
3294 * A Var: the slot represents a variable of this level that must be passed
3295 * down because subqueries have outer references to it, or must be passed
3296 * from a NestLoop node to its inner scan. The varlevelsup value in the Var
3297 * will always be zero.
3298 *
3299 * A PlaceHolderVar: this works much like the Var case, except that the
3300 * entry is a PlaceHolderVar node with a contained expression. The PHV
3301 * will have phlevelsup = 0, and the contained expression is adjusted
3302 * to match in level.
3303 *
3304 * An Aggref (with an expression tree representing its argument): the slot
3305 * represents an aggregate expression that is an outer reference for some
3306 * subquery. The Aggref itself has agglevelsup = 0, and its argument tree
3307 * is adjusted to match in level.
3308 *
3309 * Note: we detect duplicate Var and PlaceHolderVar parameters and coalesce
3310 * them into one slot, but we do not bother to do that for Aggrefs.
3311 * The scope of duplicate-elimination only extends across the set of
3312 * parameters passed from one query level into a single subquery, or for
3313 * nestloop parameters across the set of nestloop parameters used in a single
3314 * query level. So there is no possibility of a PARAM_EXEC slot being used
3315 * for conflicting purposes.
3316 *
3317 * In addition, PARAM_EXEC slots are assigned for Params representing outputs
3318 * from subplans (values that are setParam items for those subplans). These
3319 * IDs need not be tracked via PlannerParamItems, since we do not need any
3320 * duplicate-elimination nor later processing of the represented expressions.
3321 * Instead, we just record the assignment of the slot number by appending to
3322 * root->glob->paramExecTypes.
3323 */
3324typedef struct PlannerParamItem
3325{
3326 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3327
3328 NodeTag type;
3329
3330 Node *item; /* the Var, PlaceHolderVar, or Aggref */
3331 int paramId; /* its assigned PARAM_EXEC slot number */
3333
3334/*
3335 * When making cost estimates for a SEMI/ANTI/inner_unique join, there are
3336 * some correction factors that are needed in both nestloop and hash joins
3337 * to account for the fact that the executor can stop scanning inner rows
3338 * as soon as it finds a match to the current outer row. These numbers
3339 * depend only on the selected outer and inner join relations, not on the
3340 * particular paths used for them, so it's worthwhile to calculate them
3341 * just once per relation pair not once per considered path. This struct
3342 * is filled by compute_semi_anti_join_factors and must be passed along
3343 * to the join cost estimation functions.
3344 *
3345 * outer_match_frac is the fraction of the outer tuples that are
3346 * expected to have at least one match.
3347 * match_count is the average number of matches expected for
3348 * outer tuples that have at least one match.
3349 */
3351{
3355
3356/*
3357 * Struct for extra information passed to subroutines of add_paths_to_joinrel
3358 *
3359 * restrictlist contains all of the RestrictInfo nodes for restriction
3360 * clauses that apply to this join
3361 * mergeclause_list is a list of RestrictInfo nodes for available
3362 * mergejoin clauses in this join
3363 * inner_unique is true if each outer tuple provably matches no more
3364 * than one inner tuple
3365 * sjinfo is extra info about special joins for selectivity estimation
3366 * semifactors is as shown above (only valid for SEMI/ANTI/inner_unique joins)
3367 * param_source_rels are OK targets for parameterization of result paths
3368 */
3369typedef struct JoinPathExtraData
3370{
3378
3379/*
3380 * Various flags indicating what kinds of grouping are possible.
3381 *
3382 * GROUPING_CAN_USE_SORT should be set if it's possible to perform
3383 * sort-based implementations of grouping. When grouping sets are in use,
3384 * this will be true if sorting is potentially usable for any of the grouping
3385 * sets, even if it's not usable for all of them.
3386 *
3387 * GROUPING_CAN_USE_HASH should be set if it's possible to perform
3388 * hash-based implementations of grouping.
3389 *
3390 * GROUPING_CAN_PARTIAL_AGG should be set if the aggregation is of a type
3391 * for which we support partial aggregation (not, for example, grouping sets).
3392 * It says nothing about parallel-safety or the availability of suitable paths.
3393 */
3394#define GROUPING_CAN_USE_SORT 0x0001
3395#define GROUPING_CAN_USE_HASH 0x0002
3396#define GROUPING_CAN_PARTIAL_AGG 0x0004
3397
3398/*
3399 * What kind of partitionwise aggregation is in use?
3400 *
3401 * PARTITIONWISE_AGGREGATE_NONE: Not used.
3402 *
3403 * PARTITIONWISE_AGGREGATE_FULL: Aggregate each partition separately, and
3404 * append the results.
3405 *
3406 * PARTITIONWISE_AGGREGATE_PARTIAL: Partially aggregate each partition
3407 * separately, append the results, and then finalize aggregation.
3408 */
3409typedef enum
3410{
3415
3416/*
3417 * Struct for extra information passed to subroutines of create_grouping_paths
3418 *
3419 * flags indicating what kinds of grouping are possible.
3420 * partial_costs_set is true if the agg_partial_costs and agg_final_costs
3421 * have been initialized.
3422 * agg_partial_costs gives partial aggregation costs.
3423 * agg_final_costs gives finalization costs.
3424 * target_parallel_safe is true if target is parallel safe.
3425 * havingQual gives list of quals to be applied after aggregation.
3426 * targetList gives list of columns to be projected.
3427 * patype is the type of partitionwise aggregation that is being performed.
3428 */
3429typedef struct
3430{
3431 /* Data which remains constant once set. */
3436
3437 /* Data which may differ across partitions. */
3443
3444/*
3445 * Struct for extra information passed to subroutines of grouping_planner
3446 *
3447 * limit_needed is true if we actually need a Limit plan node.
3448 * limit_tuples is an estimated bound on the number of output tuples,
3449 * or -1 if no LIMIT or couldn't estimate.
3450 * count_est and offset_est are the estimated values of the LIMIT and OFFSET
3451 * expressions computed by preprocess_limit() (see comments for
3452 * preprocess_limit() for more information).
3453 */
3454typedef struct
3455{
3461
3462/*
3463 * For speed reasons, cost estimation for join paths is performed in two
3464 * phases: the first phase tries to quickly derive a lower bound for the
3465 * join cost, and then we check if that's sufficient to reject the path.
3466 * If not, we come back for a more refined cost estimate. The first phase
3467 * fills a JoinCostWorkspace struct with its preliminary cost estimates
3468 * and possibly additional intermediate values. The second phase takes
3469 * these values as inputs to avoid repeating work.
3470 *
3471 * (Ideally we'd declare this in cost.h, but it's also needed in pathnode.h,
3472 * so seems best to put it here.)
3473 */
3474typedef struct JoinCostWorkspace
3475{
3476 /* Preliminary cost estimates --- must not be larger than final ones! */
3478 Cost startup_cost; /* cost expended before fetching any tuples */
3479 Cost total_cost; /* total cost (assuming all tuples fetched) */
3480
3481 /* Fields below here should be treated as private to costsize.c */
3482 Cost run_cost; /* non-startup cost components */
3483
3484 /* private for cost_nestloop code */
3485 Cost inner_run_cost; /* also used by cost_mergejoin code */
3487
3488 /* private for cost_mergejoin code */
3493
3494 /* private for cost_hashjoin code */
3499
3500/*
3501 * AggInfo holds information about an aggregate that needs to be computed.
3502 * Multiple Aggrefs in a query can refer to the same AggInfo by having the
3503 * same 'aggno' value, so that the aggregate is computed only once.
3504 */
3505typedef struct AggInfo
3506{
3507 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3508
3509 NodeTag type;
3510
3511 /*
3512 * List of Aggref exprs that this state value is for.
3513 *
3514 * There will always be at least one, but there can be multiple identical
3515 * Aggref's sharing the same per-agg.
3516 */
3518
3519 /* Transition state number for this aggregate */
3521
3522 /*
3523 * "shareable" is false if this agg cannot share state values with other
3524 * aggregates because the final function is read-write.
3525 */
3527
3528 /* Oid of the final function, or InvalidOid if none */
3531
3532/*
3533 * AggTransInfo holds information about transition state that is used by one
3534 * or more aggregates in the query. Multiple aggregates can share the same
3535 * transition state, if they have the same inputs and the same transition
3536 * function. Aggrefs that share the same transition info have the same
3537 * 'aggtransno' value.
3538 */
3539typedef struct AggTransInfo
3540{
3541 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3542
3543 NodeTag type;
3544
3545 /* Inputs for this transition state */
3548
3549 /* Oid of the state transition function */
3551
3552 /* Oid of the serialization function, or InvalidOid if none */
3554
3555 /* Oid of the deserialization function, or InvalidOid if none */
3557
3558 /* Oid of the combine function, or InvalidOid if none */
3560
3561 /* Oid of state value's datatype */
3563
3564 /* Additional data about transtype */
3568
3569 /* Space-consumption estimate */
3571
3572 /* Initial value from pg_aggregate entry */
3573 Datum initValue pg_node_attr(read_write_ignore);
3576
3577/*
3578 * UniqueRelInfo caches a fact that a relation is unique when being joined
3579 * to other relation(s).
3580 */
3581typedef struct UniqueRelInfo
3582{
3583 pg_node_attr(no_copy_equal, no_read, no_query_jumble)
3584
3585 NodeTag type;
3586
3587 /*
3588 * The relation in consideration is unique when being joined with this set
3589 * of other relation(s).
3590 */
3592
3593 /*
3594 * The relation in consideration is unique when considering only clauses
3595 * suitable for self-join (passed split_selfjoin_quals()).
3596 */
3598
3599 /*
3600 * Additional clauses from a baserestrictinfo list that were used to prove
3601 * the uniqueness. We cache it for the self-join checking procedure: a
3602 * self-join can be removed if the outer relation contains strictly the
3603 * same set of clauses.
3604 */
3607
3608#endif /* PATHNODES_H */
int16 AttrNumber
Definition: attnum.h:21
uint32 BlockNumber
Definition: block.h:31
int64_t int64
Definition: c.h:499
int16_t int16
Definition: c.h:497
int32_t int32
Definition: c.h:498
uint64_t uint64
Definition: c.h:503
uint32_t uint32
Definition: c.h:502
unsigned int Index
Definition: c.h:585
size_t Size
Definition: c.h:576
CompareType
Definition: cmptype.h:32
static int initValue(long lng_val)
Definition: informix.c:702
SetOpCmd
Definition: nodes.h:403
SetOpStrategy
Definition: nodes.h:411
double Cost
Definition: nodes.h:257
double Cardinality
Definition: nodes.h:258
CmdType
Definition: nodes.h:269
AggStrategy
Definition: nodes.h:359
NodeTag
Definition: nodes.h:27
double Selectivity
Definition: nodes.h:256
AggSplit
Definition: nodes.h:381
LimitOption
Definition: nodes.h:436
JoinType
Definition: nodes.h:294
RTEKind
Definition: parsenodes.h:1025
struct AggTransInfo AggTransInfo
struct MergeScanSelCache MergeScanSelCache
struct IndexPath IndexPath
struct TidRangePath TidRangePath
struct JoinCostWorkspace JoinCostWorkspace
bool is_dummy_rel(RelOptInfo *rel)
Definition: joinrels.c:1336
PartitionwiseAggregateType
Definition: pathnodes.h:3410
@ PARTITIONWISE_AGGREGATE_PARTIAL
Definition: pathnodes.h:3413
@ PARTITIONWISE_AGGREGATE_FULL
Definition: pathnodes.h:3412
@ PARTITIONWISE_AGGREGATE_NONE
Definition: pathnodes.h:3411
struct ForeignPath ForeignPath
struct OuterJoinClauseInfo OuterJoinClauseInfo
struct StatisticExtInfo StatisticExtInfo
struct SetOpPath SetOpPath
struct Path Path
struct RollupData RollupData
struct BitmapOrPath BitmapOrPath
UniquePathMethod
Definition: pathnodes.h:2153
@ UNIQUE_PATH_SORT
Definition: pathnodes.h:2156
@ UNIQUE_PATH_NOOP
Definition: pathnodes.h:2154
@ UNIQUE_PATH_HASH
Definition: pathnodes.h:2155
struct PlannerGlobal PlannerGlobal
struct ParamPathInfo ParamPathInfo
struct PathKey PathKey
struct SubqueryScanPath SubqueryScanPath
struct HashPath HashPath
struct UniquePath UniquePath
CostSelector
Definition: pathnodes.h:37
@ TOTAL_COST
Definition: pathnodes.h:38
@ STARTUP_COST
Definition: pathnodes.h:38
struct AggClauseCosts AggClauseCosts
struct EquivalenceClass EquivalenceClass
VolatileFunctionStatus
Definition: pathnodes.h:1630
@ VOLATILITY_NOVOLATILE
Definition: pathnodes.h:1633
@ VOLATILITY_UNKNOWN
Definition: pathnodes.h:1631
@ VOLATILITY_VOLATILE
Definition: pathnodes.h:1632
Bitmapset * Relids
Definition: pathnodes.h:30
struct JoinPath JoinPath
struct RecursiveUnionPath RecursiveUnionPath
struct SortPath SortPath
struct EquivalenceMember EquivalenceMember
struct MaterialPath MaterialPath
struct AppendRelInfo AppendRelInfo
struct PartitionSchemeData PartitionSchemeData
struct ProjectionPath ProjectionPath
struct CustomPath CustomPath
struct BitmapAndPath BitmapAndPath
struct PartitionSchemeData * PartitionScheme
Definition: pathnodes.h:628
struct WindowAggPath WindowAggPath
struct GroupByOrdering GroupByOrdering
struct NestPath NestPath
struct MinMaxAggInfo MinMaxAggInfo
struct AggPath AggPath
struct RelOptInfo RelOptInfo
struct GroupingSetsPath GroupingSetsPath
struct IncrementalSortPath IncrementalSortPath
struct ProjectSetPath ProjectSetPath
struct MergePath MergePath
struct LockRowsPath LockRowsPath
struct MergeAppendPath MergeAppendPath
struct UniqueRelInfo UniqueRelInfo
struct TidPath TidPath
struct GroupPath GroupPath
struct GroupResultPath GroupResultPath
struct MemoizePath MemoizePath
UpperRelationKind
Definition: pathnodes.h:70
@ UPPERREL_SETOP
Definition: pathnodes.h:71
@ UPPERREL_GROUP_AGG
Definition: pathnodes.h:74
@ UPPERREL_FINAL
Definition: pathnodes.h:79
@ UPPERREL_DISTINCT
Definition: pathnodes.h:77
@ UPPERREL_PARTIAL_GROUP_AGG
Definition: pathnodes.h:72
@ UPPERREL_ORDERED
Definition: pathnodes.h:78
@ UPPERREL_WINDOW
Definition: pathnodes.h:75
@ UPPERREL_PARTIAL_DISTINCT
Definition: pathnodes.h:76
struct AggInfo AggInfo
struct PlaceHolderVar PlaceHolderVar
RelOptKind
Definition: pathnodes.h:850
@ RELOPT_BASEREL
Definition: pathnodes.h:851
@ RELOPT_OTHER_MEMBER_REL
Definition: pathnodes.h:853
@ RELOPT_UPPER_REL
Definition: pathnodes.h:855
@ RELOPT_JOINREL
Definition: pathnodes.h:852
@ RELOPT_OTHER_UPPER_REL
Definition: pathnodes.h:856
@ RELOPT_OTHER_JOINREL
Definition: pathnodes.h:854
struct RestrictInfo RestrictInfo
struct JoinPathExtraData JoinPathExtraData
struct ModifyTablePath ModifyTablePath
struct LimitPath LimitPath
struct GroupingSetData GroupingSetData
struct UpperUniquePath UpperUniquePath
struct MinMaxAggPath MinMaxAggPath
struct PlannerParamItem PlannerParamItem
struct ForeignKeyOptInfo ForeignKeyOptInfo
struct PathTarget PathTarget
struct IndexClause IndexClause
struct PlaceHolderInfo PlaceHolderInfo
struct QualCost QualCost
struct GatherPath GatherPath
struct SemiAntiJoinFactors SemiAntiJoinFactors
struct JoinDomain JoinDomain
struct RowIdentityVarInfo RowIdentityVarInfo
struct AppendPath AppendPath
struct GatherMergePath GatherMergePath
struct BitmapHeapPath BitmapHeapPath
#define INDEX_MAX_KEYS
#define NIL
Definition: pg_list.h:68
uintptr_t Datum
Definition: postgres.h:69
unsigned int Oid
Definition: postgres_ext.h:30
ScanDirection
Definition: sdir.h:25
QualCost finalCost
Definition: pathnodes.h:61
Size transitionSpace
Definition: pathnodes.h:62
QualCost transCost
Definition: pathnodes.h:60
bool shareable
Definition: pathnodes.h:3526
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
List * aggrefs
Definition: pathnodes.h:3517
int transno
Definition: pathnodes.h:3520
Oid finalfn_oid
Definition: pathnodes.h:3529
Path * subpath
Definition: pathnodes.h:2396
Cardinality numGroups
Definition: pathnodes.h:2399
AggSplit aggsplit
Definition: pathnodes.h:2398
List * groupClause
Definition: pathnodes.h:2401
uint64 transitionSpace
Definition: pathnodes.h:2400
AggStrategy aggstrategy
Definition: pathnodes.h:2397
Path path
Definition: pathnodes.h:2395
List * qual
Definition: pathnodes.h:2402
List * args
Definition: pathnodes.h:3546
int32 aggtransspace
Definition: pathnodes.h:3570
bool transtypeByVal
Definition: pathnodes.h:3567
Oid combinefn_oid
Definition: pathnodes.h:3559
Oid deserialfn_oid
Definition: pathnodes.h:3556
int32 aggtranstypmod
Definition: pathnodes.h:3565
int transtypeLen
Definition: pathnodes.h:3566
bool initValueIsNull
Definition: pathnodes.h:3574
Oid serialfn_oid
Definition: pathnodes.h:3553
Oid aggtranstype
Definition: pathnodes.h:3562
Expr * aggfilter
Definition: pathnodes.h:3547
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Datum initValue pg_node_attr(read_write_ignore)
int first_partial_path
Definition: pathnodes.h:2068
Cardinality limit_tuples
Definition: pathnodes.h:2069
List * subpaths
Definition: pathnodes.h:2066
Index child_relid
Definition: pathnodes.h:3111
List * translated_vars
Definition: pathnodes.h:3138
Index parent_relid
Definition: pathnodes.h:3110
int num_child_cols
Definition: pathnodes.h:3146
pg_node_attr(no_query_jumble) NodeTag type
Oid parent_reltype
Definition: pathnodes.h:3119
AttrNumber *parent_colnos pg_node_attr(array_size(num_child_cols))
Selectivity bitmapselectivity
Definition: pathnodes.h:1932
List * bitmapquals
Definition: pathnodes.h:1931
Path * bitmapqual
Definition: pathnodes.h:1919
Selectivity bitmapselectivity
Definition: pathnodes.h:1945
List * bitmapquals
Definition: pathnodes.h:1944
const struct CustomPathMethods * methods
Definition: pathnodes.h:2045
List * custom_paths
Definition: pathnodes.h:2042
uint32 flags
Definition: pathnodes.h:2040
List * custom_private
Definition: pathnodes.h:2044
List * custom_restrictinfo
Definition: pathnodes.h:2043
pg_node_attr(custom_read_write, no_copy_equal, no_read, no_query_jumble) NodeTag type
Index ec_min_security
Definition: pathnodes.h:1463
List * ec_opfamilies
Definition: pathnodes.h:1447
int ec_childmembers_size
Definition: pathnodes.h:1449
List ** ec_childmembers
Definition: pathnodes.h:1451
struct EquivalenceClass * ec_merged
Definition: pathnodes.h:1465
struct derives_hash * ec_derives_hash
Definition: pathnodes.h:1454
Index ec_max_security
Definition: pathnodes.h:1464
List * ec_derives_list
Definition: pathnodes.h:1453
EquivalenceClass * ec
Definition: pathnodes.h:1569
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
JoinDomain * em_jdomain
Definition: pathnodes.h:1513
struct EquivalenceMember *em_parent pg_node_attr(read_write_ignore)
Cardinality limit_tuples
Definition: pathnodes.h:3457
Definition: fmgr.h:57
AttrNumber conkey[INDEX_MAX_KEYS] pg_node_attr(array_size(nkeys))
AttrNumber confkey[INDEX_MAX_KEYS] pg_node_attr(array_size(nkeys))
struct EquivalenceClass * eclass[INDEX_MAX_KEYS]
Definition: pathnodes.h:1284
pg_node_attr(custom_read_write, no_copy_equal, no_read, no_query_jumble) NodeTag type
Oid conpfeqop[INDEX_MAX_KEYS] pg_node_attr(array_size(nkeys))
List * rinfos[INDEX_MAX_KEYS]
Definition: pathnodes.h:1288
struct EquivalenceMember * fk_eclass_member[INDEX_MAX_KEYS]
Definition: pathnodes.h:1286
Path * fdw_outerpath
Definition: pathnodes.h:2004
List * fdw_restrictinfo
Definition: pathnodes.h:2005
List * fdw_private
Definition: pathnodes.h:2006
bool single_copy
Definition: pathnodes.h:2177
Path * subpath
Definition: pathnodes.h:2176
int num_workers
Definition: pathnodes.h:2178
PartitionwiseAggregateType patype
Definition: pathnodes.h:3441
AggClauseCosts agg_final_costs
Definition: pathnodes.h:3435
AggClauseCosts agg_partial_costs
Definition: pathnodes.h:3434
List * qual
Definition: pathnodes.h:2370
List * groupClause
Definition: pathnodes.h:2369
Path * subpath
Definition: pathnodes.h:2368
Path path
Definition: pathnodes.h:2367
Cardinality numGroups
Definition: pathnodes.h:2415
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
uint64 transitionSpace
Definition: pathnodes.h:2442
AggStrategy aggstrategy
Definition: pathnodes.h:2439
Definition: dynahash.c:220
List * path_hashclauses
Definition: pathnodes.h:2294
Cardinality inner_rows_total
Definition: pathnodes.h:2296
int num_batches
Definition: pathnodes.h:2295
JoinPath jpath
Definition: pathnodes.h:2293
AttrNumber indexcol
Definition: pathnodes.h:1895
List * indexcols
Definition: pathnodes.h:1896
List * indexquals
Definition: pathnodes.h:1893
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
struct RestrictInfo * rinfo
Definition: pathnodes.h:1892
int *indexkeys pg_node_attr(array_size(ncolumns))
bool amcanparallel
Definition: pathnodes.h:1232
bytea **opclassoptions pg_node_attr(read_write_ignore)
Oid *sortopfamily pg_node_attr(array_size(nkeycolumns))
void(* amcostestimate)(struct PlannerInfo *, struct IndexPath *, double, Cost *, Cost *, Selectivity *, double *, double *) pg_node_attr(read_write_ignore)
Definition: pathnodes.h:1237
List *indexprs pg_node_attr(read_write_ignore)
bool amoptionalkey
Definition: pathnodes.h:1225
Oid reltablespace
Definition: pathnodes.h:1145
bool amcanmarkpos
Definition: pathnodes.h:1234
List * indrestrictinfo
Definition: pathnodes.h:1207
bool amhasgettuple
Definition: pathnodes.h:1229
bool amcanorderbyop
Definition: pathnodes.h:1224
bool *nulls_first pg_node_attr(array_size(nkeycolumns))
bool hypothetical
Definition: pathnodes.h:1218
bool nullsnotdistinct
Definition: pathnodes.h:1214
Oid *opcintype pg_node_attr(array_size(nkeycolumns))
RelOptInfo *rel pg_node_attr(read_write_ignore)
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
List * indpred
Definition: pathnodes.h:1197
Cardinality tuples
Definition: pathnodes.h:1155
bool amsearcharray
Definition: pathnodes.h:1226
Oid *indexcollations pg_node_attr(array_size(nkeycolumns))
bool *reverse_sort pg_node_attr(array_size(nkeycolumns))
Oid *opfamily pg_node_attr(array_size(nkeycolumns))
BlockNumber pages
Definition: pathnodes.h:1153
bool amsearchnulls
Definition: pathnodes.h:1227
bool amhasgetbitmap
Definition: pathnodes.h:1231
List * indextlist
Definition: pathnodes.h:1200
bool immediate
Definition: pathnodes.h:1216
bool *canreturn pg_node_attr(array_size(ncolumns))
List * indexclauses
Definition: pathnodes.h:1845
ScanDirection indexscandir
Definition: pathnodes.h:1848
Path path
Definition: pathnodes.h:1843
List * indexorderbycols
Definition: pathnodes.h:1847
List * indexorderbys
Definition: pathnodes.h:1846
Selectivity indexselectivity
Definition: pathnodes.h:1850
Cost indextotalcost
Definition: pathnodes.h:1849
IndexOptInfo * indexinfo
Definition: pathnodes.h:1844
Cardinality inner_rows
Definition: pathnodes.h:3490
Cardinality outer_rows
Definition: pathnodes.h:3489
Cost inner_rescan_run_cost
Definition: pathnodes.h:3486
Cardinality inner_skip_rows
Definition: pathnodes.h:3492
Cardinality inner_rows_total
Definition: pathnodes.h:3497
Cardinality outer_skip_rows
Definition: pathnodes.h:3491
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Relids jd_relids
Definition: pathnodes.h:1355
List * mergeclause_list
Definition: pathnodes.h:3372
Relids param_source_rels
Definition: pathnodes.h:3376
SemiAntiJoinFactors semifactors
Definition: pathnodes.h:3375
SpecialJoinInfo * sjinfo
Definition: pathnodes.h:3374
pg_node_attr(abstract) Path path
Path * outerjoinpath
Definition: pathnodes.h:2208
Path * innerjoinpath
Definition: pathnodes.h:2209
JoinType jointype
Definition: pathnodes.h:2203
bool inner_unique
Definition: pathnodes.h:2205
List * joinrestrictinfo
Definition: pathnodes.h:2211
Path path
Definition: pathnodes.h:2541
Path * subpath
Definition: pathnodes.h:2542
LimitOption limitOption
Definition: pathnodes.h:2545
Node * limitOffset
Definition: pathnodes.h:2543
Node * limitCount
Definition: pathnodes.h:2544
Definition: pg_list.h:54
Path * subpath
Definition: pathnodes.h:2502
List * rowMarks
Definition: pathnodes.h:2503
Path * subpath
Definition: pathnodes.h:2116
bool singlerow
Definition: pathnodes.h:2130
List * hash_operators
Definition: pathnodes.h:2128
uint32 est_entries
Definition: pathnodes.h:2135
bool binary_mode
Definition: pathnodes.h:2132
Cardinality calls
Definition: pathnodes.h:2134
Path * subpath
Definition: pathnodes.h:2127
List * param_exprs
Definition: pathnodes.h:2129
Cardinality limit_tuples
Definition: pathnodes.h:2091
List * outersortkeys
Definition: pathnodes.h:2274
bool skip_mark_restore
Definition: pathnodes.h:2278
List * innersortkeys
Definition: pathnodes.h:2275
JoinPath jpath
Definition: pathnodes.h:2272
bool materialize_inner
Definition: pathnodes.h:2279
int outer_presorted_keys
Definition: pathnodes.h:2276
List * path_mergeclauses
Definition: pathnodes.h:2273
Selectivity leftstartsel
Definition: pathnodes.h:2881
Selectivity leftendsel
Definition: pathnodes.h:2882
CompareType cmptype
Definition: pathnodes.h:2878
Selectivity rightendsel
Definition: pathnodes.h:2884
Selectivity rightstartsel
Definition: pathnodes.h:2883
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
PlannerInfo *subroot pg_node_attr(read_write_ignore)
Param * param
Definition: pathnodes.h:3274
Expr * target
Definition: pathnodes.h:3259
List * quals
Definition: pathnodes.h:2452
List * mmaggregates
Definition: pathnodes.h:2451
bool partColsUpdated
Definition: pathnodes.h:2522
List * returningLists
Definition: pathnodes.h:2526
List * resultRelations
Definition: pathnodes.h:2523
List * withCheckOptionLists
Definition: pathnodes.h:2525
List * mergeJoinConditions
Definition: pathnodes.h:2532
List * updateColnosLists
Definition: pathnodes.h:2524
OnConflictExpr * onconflict
Definition: pathnodes.h:2528
CmdType operation
Definition: pathnodes.h:2518
Index rootRelation
Definition: pathnodes.h:2521
Index nominalRelation
Definition: pathnodes.h:2520
List * mergeActionLists
Definition: pathnodes.h:2530
JoinPath jpath
Definition: pathnodes.h:2226
Definition: nodes.h:135
RestrictInfo * rinfo
Definition: pathnodes.h:3064
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
SpecialJoinInfo * sjinfo
Definition: pathnodes.h:3065
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Cardinality ppi_rows
Definition: pathnodes.h:1713
List * ppi_clauses
Definition: pathnodes.h:1714
Bitmapset * ppi_serials
Definition: pathnodes.h:1715
Relids ppi_req_outer
Definition: pathnodes.h:1712
struct FmgrInfo * partsupfunc
Definition: pathnodes.h:625
CompareType pk_cmptype
Definition: pathnodes.h:1603
bool pk_nulls_first
Definition: pathnodes.h:1604
EquivalenceClass *pk_eclass pg_node_attr(copy_as_scalar, equal_as_scalar)
pg_node_attr(no_read, no_query_jumble) NodeTag type
Oid pk_opfamily
Definition: pathnodes.h:1602
VolatileFunctionStatus has_volatile_expr
Definition: pathnodes.h:1678
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Index *sortgrouprefs pg_node_attr(array_size(exprs))
List * exprs
Definition: pathnodes.h:1666
QualCost cost
Definition: pathnodes.h:1672
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
List * pathkeys
Definition: pathnodes.h:1799
PathTarget *pathtarget pg_node_attr(write_only_nondefault_pathtarget)
NodeTag pathtype
Definition: pathnodes.h:1759
Cardinality rows
Definition: pathnodes.h:1793
Cost startup_cost
Definition: pathnodes.h:1795
int parallel_workers
Definition: pathnodes.h:1790
ParamPathInfo *param_info pg_node_attr(write_only_req_outer)
int disabled_nodes
Definition: pathnodes.h:1794
RelOptInfo *parent pg_node_attr(write_only_relids)
Cost total_cost
Definition: pathnodes.h:1796
bool parallel_aware
Definition: pathnodes.h:1786
bool parallel_safe
Definition: pathnodes.h:1788
Relids ph_lateral
Definition: pathnodes.h:3232
Relids ph_needed
Definition: pathnodes.h:3235
pg_node_attr(no_read, no_query_jumble) NodeTag type
Relids ph_eval_at
Definition: pathnodes.h:3229
PlaceHolderVar * ph_var
Definition: pathnodes.h:3226
Relids phrels pg_node_attr(equal_ignore)
Relids phnullingrels
Definition: pathnodes.h:2932
pg_node_attr(no_query_jumble) Expr xpr
Expr *phexpr pg_node_attr(equal_ignore)
Index phlevelsup
Definition: pathnodes.h:2938
Bitmapset * prunableRelids
Definition: pathnodes.h:130
int lastPlanNodeId
Definition: pathnodes.h:163
char maxParallelHazard
Definition: pathnodes.h:178
List * subplans
Definition: pathnodes.h:105
PartitionDirectory partition_directory pg_node_attr(read_write_ignore)
bool dependsOnRole
Definition: pathnodes.h:169
Bitmapset * allRelids
Definition: pathnodes.h:123
List * appendRelations
Definition: pathnodes.h:142
List *subroots pg_node_attr(read_write_ignore)
List * finalrowmarks
Definition: pathnodes.h:136
List * invalItems
Definition: pathnodes.h:151
List * relationOids
Definition: pathnodes.h:148
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
List * paramExecTypes
Definition: pathnodes.h:154
bool parallelModeOK
Definition: pathnodes.h:172
bool transientPlan
Definition: pathnodes.h:166
Bitmapset * rewindPlanIDs
Definition: pathnodes.h:114
List * finalrteperminfos
Definition: pathnodes.h:133
List * subpaths
Definition: pathnodes.h:108
Index lastPHId
Definition: pathnodes.h:157
Index lastRowMarkId
Definition: pathnodes.h:160
List * resultRelations
Definition: pathnodes.h:139
List * partPruneInfos
Definition: pathnodes.h:145
List * finalrtable
Definition: pathnodes.h:117
ParamListInfo boundParams pg_node_attr(read_write_ignore)
bool parallelModeNeeded
Definition: pathnodes.h:175
void *join_search_private pg_node_attr(read_write_ignore)
struct HTAB *join_rel_hash pg_node_attr(read_write_ignore)
int num_groupby_pathkeys
Definition: pathnodes.h:416
struct RelOptInfo **simple_rel_array pg_node_attr(array_size(simple_rel_array_size))
List * minmax_aggs
Definition: pathnodes.h:499
bool partColsUpdated
Definition: pathnodes.h:582
AttrNumber *grouping_map pg_node_attr(read_write_ignore)
List * canon_pathkeys
Definition: pathnodes.h:341
List * aggtransinfos
Definition: pathnodes.h:545
bool hasJoinRTEs
Definition: pathnodes.h:519
struct PathTarget *upper_targets[UPPERREL_FINAL+1] pg_node_attr(read_write_ignore)
List * processed_tlist
Definition: pathnodes.h:483
List * distinct_pathkeys
Definition: pathnodes.h:421
List * join_rel_list
Definition: pathnodes.h:301
bool hasRecursion
Definition: pathnodes.h:531
int simple_rel_array_size
Definition: pathnodes.h:253
struct AppendRelInfo **append_rel_array pg_node_attr(read_write_ignore)
Relids all_query_rels
Definition: pathnodes.h:290
Relids curOuterRels
Definition: pathnodes.h:565
int numOrderedAggs
Definition: pathnodes.h:547
Relids outer_join_rels
Definition: pathnodes.h:282
List * cte_plan_ids
Definition: pathnodes.h:326
int last_rinfo_serial
Definition: pathnodes.h:364
bool hasNonPartialAggs
Definition: pathnodes.h:549
bool hasLateralRTEs
Definition: pathnodes.h:521
Index qual_security_level
Definition: pathnodes.h:516
List * init_plans
Definition: pathnodes.h:320
List * multiexpr_params
Definition: pathnodes.h:329
List * row_identity_vars
Definition: pathnodes.h:389
bool hasHavingQual
Definition: pathnodes.h:523
bool ec_merging_done
Definition: pathnodes.h:338
List * left_join_clauses
Definition: pathnodes.h:347
List * full_join_clauses
Definition: pathnodes.h:358
Bitmapset * outer_params
Definition: pathnodes.h:242
Index query_level
Definition: pathnodes.h:229
List * append_rel_list
Definition: pathnodes.h:386
struct PlaceHolderInfo **placeholder_array pg_node_attr(read_write_ignore, array_size(placeholder_array_size))
struct Path * non_recursive_path
Definition: pathnodes.h:559
List * placeholder_list
Definition: pathnodes.h:395
List * sort_pathkeys
Definition: pathnodes.h:423
List **join_rel_level pg_node_attr(read_write_ignore)
PlannerGlobal * glob
Definition: pathnodes.h:226
List * join_domains
Definition: pathnodes.h:332
List * eq_classes
Definition: pathnodes.h:335
MemoryContext planner_cxt pg_node_attr(read_write_ignore)
List * group_pathkeys
Definition: pathnodes.h:409
int wt_param_id
Definition: pathnodes.h:557
List * agginfos
Definition: pathnodes.h:543
List * plan_params
Definition: pathnodes.h:241
RangeTblEntry **simple_rte_array pg_node_attr(read_write_ignore)
List * window_pathkeys
Definition: pathnodes.h:419
List * processed_groupClause
Definition: pathnodes.h:460
List * curOuterParams
Definition: pathnodes.h:567
List *upper_rels[UPPERREL_FINAL+1] pg_node_attr(read_write_ignore)
bool hasAlternativeSubPlans
Definition: pathnodes.h:527
List * right_join_clauses
Definition: pathnodes.h:353
List *part_schemes pg_node_attr(read_write_ignore)
List * partPruneInfos
Definition: pathnodes.h:585
bool hasNonSerialAggs
Definition: pathnodes.h:551
List * fkey_list
Definition: pathnodes.h:403
List * processed_distinctClause
Definition: pathnodes.h:472
Cardinality total_table_pages
Definition: pathnodes.h:505
bool *isUsedSubplan pg_node_attr(read_write_ignore)
Query * parse
Definition: pathnodes.h:223
List * rowMarks
Definition: pathnodes.h:392
Cardinality limit_tuples
Definition: pathnodes.h:510
List * query_pathkeys
Definition: pathnodes.h:406
Selectivity tuple_fraction
Definition: pathnodes.h:508
bool *isAltSubplan pg_node_attr(read_write_ignore)
List * update_colnos
Definition: pathnodes.h:491
bool placeholdersFrozen
Definition: pathnodes.h:529
int group_rtindex
Definition: pathnodes.h:537
int placeholder_array_size pg_node_attr(read_write_ignore)
List * join_info_list
Definition: pathnodes.h:361
bool hasPseudoConstantQuals
Definition: pathnodes.h:525
List *initial_rels pg_node_attr(read_write_ignore)
Relids all_baserels
Definition: pathnodes.h:276
Relids all_result_relids
Definition: pathnodes.h:375
PlannerInfo *parent_root pg_node_attr(read_write_ignore)
List * setop_pathkeys
Definition: pathnodes.h:425
int join_cur_level
Definition: pathnodes.h:317
Relids leaf_result_relids
Definition: pathnodes.h:377
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Path * subpath
Definition: pathnodes.h:2328
Path * subpath
Definition: pathnodes.h:2316
Cost per_tuple
Definition: pathnodes.h:48
Cost startup
Definition: pathnodes.h:47
Cardinality numGroups
Definition: pathnodes.h:2493
List * baserestrictinfo
Definition: pathnodes.h:1009
struct FdwRoutine *fdwroutine pg_node_attr(read_write_ignore)
bool consider_param_startup
Definition: pathnodes.h:909
List * subplan_params
Definition: pathnodes.h:978
List * ppilist
Definition: pathnodes.h:923
bool useridiscurrent
Definition: pathnodes.h:992
uint32 amflags
Definition: pathnodes.h:982
List * joininfo
Definition: pathnodes.h:1015
Bitmapset * notnullattnums
Definition: pathnodes.h:960
List * partition_qual
Definition: pathnodes.h:1051
Relids relids
Definition: pathnodes.h:895
struct PathTarget * reltarget
Definition: pathnodes.h:917
struct PartitionBoundInfoData *boundinfo pg_node_attr(read_write_ignore)
struct RelOptInfo **part_rels pg_node_attr(read_write_ignore)
Index relid
Definition: pathnodes.h:942
int32 *attr_widths pg_node_attr(read_write_ignore)
List * statlist
Definition: pathnodes.h:970
List **partexprs pg_node_attr(read_write_ignore)
List * lateral_vars
Definition: pathnodes.h:964
List * unique_for_rels
Definition: pathnodes.h:1001
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Cardinality tuples
Definition: pathnodes.h:973
bool consider_parallel
Definition: pathnodes.h:911
Relids top_parent_relids
Definition: pathnodes.h:1033
PartitionScheme part_scheme pg_node_attr(read_write_ignore)
bool partbounds_merged
Definition: pathnodes.h:1049
BlockNumber pages
Definition: pathnodes.h:972
Relids lateral_relids
Definition: pathnodes.h:937
List * cheapest_parameterized_paths
Definition: pathnodes.h:928
List * pathlist
Definition: pathnodes.h:922
struct RelOptInfo *parent pg_node_attr(read_write_ignore)
RelOptKind reloptkind
Definition: pathnodes.h:889
List * indexlist
Definition: pathnodes.h:968
struct Path * cheapest_unique_path
Definition: pathnodes.h:927
Oid reltablespace
Definition: pathnodes.h:944
Relids lateral_referencers
Definition: pathnodes.h:966
struct Path * cheapest_startup_path
Definition: pathnodes.h:925
QualCost baserestrictcost
Definition: pathnodes.h:1011
Relids *attr_needed pg_node_attr(read_write_ignore)
struct Path * cheapest_total_path
Definition: pathnodes.h:926
struct RelOptInfo *top_parent pg_node_attr(read_write_ignore)
Oid userid
Definition: pathnodes.h:990
List * non_unique_for_rels
Definition: pathnodes.h:1003
Bitmapset * eclass_indexes
Definition: pathnodes.h:976
Relids all_partrels
Definition: pathnodes.h:1065
Relids direct_lateral_relids
Definition: pathnodes.h:935
bool has_eclass_joins
Definition: pathnodes.h:1017
Oid serverid
Definition: pathnodes.h:988
bool consider_startup
Definition: pathnodes.h:907
Bitmapset * live_parts
Definition: pathnodes.h:1063
int rel_parallel_workers
Definition: pathnodes.h:980
bool consider_partitionwise_join
Definition: pathnodes.h:1023
List * partial_pathlist
Definition: pathnodes.h:924
PlannerInfo * subroot
Definition: pathnodes.h:977
AttrNumber max_attr
Definition: pathnodes.h:950
Relids nulling_relids
Definition: pathnodes.h:962
Index baserestrict_min_security
Definition: pathnodes.h:1013
double allvisfrac
Definition: pathnodes.h:974
Cardinality rows
Definition: pathnodes.h:901
AttrNumber min_attr
Definition: pathnodes.h:948
RTEKind rtekind
Definition: pathnodes.h:946
List **nullable_partexprs pg_node_attr(read_write_ignore)
void *fdw_private pg_node_attr(read_write_ignore)
bool is_pushed_down
Definition: pathnodes.h:2708
Index security_level
Definition: pathnodes.h:2727
Relids required_relids
Definition: pathnodes.h:2736
Selectivity norm_selec pg_node_attr(equal_ignore)
EquivalenceClass *parent_ec pg_node_attr(copy_as_scalar, equal_ignore, read_write_ignore)
bool leakproof pg_node_attr(equal_ignore)
Oid hashjoinoperator pg_node_attr(equal_ignore)
Selectivity outer_selec pg_node_attr(equal_ignore)
int rinfo_serial
Definition: pathnodes.h:2777
EquivalenceClass *right_ec pg_node_attr(copy_as_scalar, equal_ignore, read_write_ignore)
EquivalenceMember *left_em pg_node_attr(copy_as_scalar, equal_ignore)
Selectivity left_mcvfreq pg_node_attr(equal_ignore)
Relids left_relids pg_node_attr(equal_ignore)
VolatileFunctionStatus has_volatile pg_node_attr(equal_ignore)
bool can_join pg_node_attr(equal_ignore)
Selectivity right_bucketsize pg_node_attr(equal_ignore)
bool pseudoconstant pg_node_attr(equal_ignore)
Relids outer_relids
Definition: pathnodes.h:2742
Expr *orclause pg_node_attr(equal_ignore)
Relids incompatible_relids
Definition: pathnodes.h:2739
int num_base_rels pg_node_attr(equal_ignore)
List *scansel_cache pg_node_attr(copy_as(NIL), equal_ignore, read_write_ignore)
Selectivity right_mcvfreq pg_node_attr(equal_ignore)
Expr * clause
Definition: pathnodes.h:2705
EquivalenceClass *left_ec pg_node_attr(copy_as_scalar, equal_ignore, read_write_ignore)
EquivalenceMember *right_em pg_node_attr(copy_as_scalar, equal_ignore)
pg_node_attr(no_read, no_query_jumble) NodeTag type
bool outer_is_left pg_node_attr(equal_ignore)
QualCost eval_cost pg_node_attr(equal_ignore)
List *mergeopfamilies pg_node_attr(equal_ignore)
Selectivity left_bucketsize pg_node_attr(equal_ignore)
Oid right_hasheqoperator pg_node_attr(equal_ignore)
Oid left_hasheqoperator pg_node_attr(equal_ignore)
Relids clause_relids pg_node_attr(equal_ignore)
Relids right_relids pg_node_attr(equal_ignore)
bool has_clone
Definition: pathnodes.h:2717
Cardinality numGroups
Definition: pathnodes.h:2426
List * groupClause
Definition: pathnodes.h:2423
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
List * gsets_data
Definition: pathnodes.h:2425
bool hashable
Definition: pathnodes.h:2427
List * gsets
Definition: pathnodes.h:2424
bool is_hashed
Definition: pathnodes.h:2428
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Selectivity outer_match_frac
Definition: pathnodes.h:3352
Selectivity match_count
Definition: pathnodes.h:3353
Path * rightpath
Definition: pathnodes.h:2476
Cardinality numGroups
Definition: pathnodes.h:2480
Path * leftpath
Definition: pathnodes.h:2475
SetOpCmd cmd
Definition: pathnodes.h:2477
Path path
Definition: pathnodes.h:2474
SetOpStrategy strategy
Definition: pathnodes.h:2478
List * groupList
Definition: pathnodes.h:2479
Path path
Definition: pathnodes.h:2341
Path * subpath
Definition: pathnodes.h:2342
Relids commute_above_r
Definition: pathnodes.h:3042
Relids syn_lefthand
Definition: pathnodes.h:3037
Relids min_righthand
Definition: pathnodes.h:3036
List * semi_rhs_exprs
Definition: pathnodes.h:3050
Relids commute_above_l
Definition: pathnodes.h:3041
JoinType jointype
Definition: pathnodes.h:3039
Relids commute_below_l
Definition: pathnodes.h:3043
Relids min_lefthand
Definition: pathnodes.h:3035
Relids syn_righthand
Definition: pathnodes.h:3038
pg_node_attr(no_read, no_query_jumble) NodeTag type
Relids commute_below_r
Definition: pathnodes.h:3044
List * semi_operators
Definition: pathnodes.h:3049
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Bitmapset * keys
Definition: pathnodes.h:1317
RelOptInfo *rel pg_node_attr(read_write_ignore)
List * tidquals
Definition: pathnodes.h:1958
Path path
Definition: pathnodes.h:1957
List * tidrangequals
Definition: pathnodes.h:1970
Path * subpath
Definition: pathnodes.h:2162
List * uniq_exprs
Definition: pathnodes.h:2165
UniquePathMethod umethod
Definition: pathnodes.h:2163
List * in_operators
Definition: pathnodes.h:2164
pg_node_attr(no_copy_equal, no_read, no_query_jumble) NodeTag type
Relids outerrelids
Definition: pathnodes.h:3591
List * extra_clauses
Definition: pathnodes.h:3605
Definition: primnodes.h:262
List * runCondition
Definition: pathnodes.h:2464
Path * subpath
Definition: pathnodes.h:2461
WindowClause * winclause
Definition: pathnodes.h:2462
Definition: c.h:658
const char * type