PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pathnode.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * pathnode.c
4 * Routines to manipulate pathlists and create path nodes
5 *
6 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 *
10 * IDENTIFICATION
11 * src/backend/optimizer/util/pathnode.c
12 *
13 *-------------------------------------------------------------------------
14 */
15#include "postgres.h"
16
17#include "access/htup_details.h"
18#include "executor/nodeSetOp.h"
19#include "foreign/fdwapi.h"
20#include "miscadmin.h"
21#include "nodes/extensible.h"
23#include "optimizer/clauses.h"
24#include "optimizer/cost.h"
25#include "optimizer/optimizer.h"
26#include "optimizer/pathnode.h"
27#include "optimizer/paths.h"
28#include "optimizer/planmain.h"
29#include "optimizer/tlist.h"
30#include "parser/parsetree.h"
31#include "utils/memutils.h"
32#include "utils/selfuncs.h"
33
34typedef enum
35{
36 COSTS_EQUAL, /* path costs are fuzzily equal */
37 COSTS_BETTER1, /* first path is cheaper than second */
38 COSTS_BETTER2, /* second path is cheaper than first */
39 COSTS_DIFFERENT, /* neither path dominates the other on cost */
41
42/*
43 * STD_FUZZ_FACTOR is the normal fuzz factor for compare_path_costs_fuzzily.
44 * XXX is it worth making this user-controllable? It provides a tradeoff
45 * between planner runtime and the accuracy of path cost comparisons.
46 */
47#define STD_FUZZ_FACTOR 1.01
48
49static int append_total_cost_compare(const ListCell *a, const ListCell *b);
50static int append_startup_cost_compare(const ListCell *a, const ListCell *b);
52 List *pathlist,
56
57
58/*****************************************************************************
59 * MISC. PATH UTILITIES
60 *****************************************************************************/
61
62/*
63 * compare_path_costs
64 * Return -1, 0, or +1 according as path1 is cheaper, the same cost,
65 * or more expensive than path2 for the specified criterion.
66 */
67int
69{
70 /* Number of disabled nodes, if different, trumps all else. */
71 if (unlikely(path1->disabled_nodes != path2->disabled_nodes))
72 {
73 if (path1->disabled_nodes < path2->disabled_nodes)
74 return -1;
75 else
76 return +1;
77 }
78
80 {
81 if (path1->startup_cost < path2->startup_cost)
82 return -1;
83 if (path1->startup_cost > path2->startup_cost)
84 return +1;
85
86 /*
87 * If paths have the same startup cost (not at all unlikely), order
88 * them by total cost.
89 */
90 if (path1->total_cost < path2->total_cost)
91 return -1;
92 if (path1->total_cost > path2->total_cost)
93 return +1;
94 }
95 else
96 {
97 if (path1->total_cost < path2->total_cost)
98 return -1;
99 if (path1->total_cost > path2->total_cost)
100 return +1;
101
102 /*
103 * If paths have the same total cost, order them by startup cost.
104 */
105 if (path1->startup_cost < path2->startup_cost)
106 return -1;
107 if (path1->startup_cost > path2->startup_cost)
108 return +1;
109 }
110 return 0;
111}
112
113/*
114 * compare_fractional_path_costs
115 * Return -1, 0, or +1 according as path1 is cheaper, the same cost,
116 * or more expensive than path2 for fetching the specified fraction
117 * of the total tuples.
118 *
119 * If fraction is <= 0 or > 1, we interpret it as 1, ie, we select the
120 * path with the cheaper total_cost.
121 */
122int
124 double fraction)
125{
126 Cost cost1,
127 cost2;
128
129 /* Number of disabled nodes, if different, trumps all else. */
130 if (unlikely(path1->disabled_nodes != path2->disabled_nodes))
131 {
132 if (path1->disabled_nodes < path2->disabled_nodes)
133 return -1;
134 else
135 return +1;
136 }
137
140 cost1 = path1->startup_cost +
141 fraction * (path1->total_cost - path1->startup_cost);
142 cost2 = path2->startup_cost +
143 fraction * (path2->total_cost - path2->startup_cost);
144 if (cost1 < cost2)
145 return -1;
146 if (cost1 > cost2)
147 return +1;
148 return 0;
149}
150
151/*
152 * compare_path_costs_fuzzily
153 * Compare the costs of two paths to see if either can be said to
154 * dominate the other.
155 *
156 * We use fuzzy comparisons so that add_path() can avoid keeping both of
157 * a pair of paths that really have insignificantly different cost.
158 *
159 * The fuzz_factor argument must be 1.0 plus delta, where delta is the
160 * fraction of the smaller cost that is considered to be a significant
161 * difference. For example, fuzz_factor = 1.01 makes the fuzziness limit
162 * be 1% of the smaller cost.
163 *
164 * The two paths are said to have "equal" costs if both startup and total
165 * costs are fuzzily the same. Path1 is said to be better than path2 if
166 * it has fuzzily better startup cost and fuzzily no worse total cost,
167 * or if it has fuzzily better total cost and fuzzily no worse startup cost.
168 * Path2 is better than path1 if the reverse holds. Finally, if one path
169 * is fuzzily better than the other on startup cost and fuzzily worse on
170 * total cost, we just say that their costs are "different", since neither
171 * dominates the other across the whole performance spectrum.
172 *
173 * This function also enforces a policy rule that paths for which the relevant
174 * one of parent->consider_startup and parent->consider_param_startup is false
175 * cannot survive comparisons solely on the grounds of good startup cost, so
176 * we never return COSTS_DIFFERENT when that is true for the total-cost loser.
177 * (But if total costs are fuzzily equal, we compare startup costs anyway,
178 * in hopes of eliminating one path or the other.)
179 */
182{
183#define CONSIDER_PATH_STARTUP_COST(p) \
184 ((p)->param_info == NULL ? (p)->parent->consider_startup : (p)->parent->consider_param_startup)
185
186 /* Number of disabled nodes, if different, trumps all else. */
187 if (unlikely(path1->disabled_nodes != path2->disabled_nodes))
188 {
189 if (path1->disabled_nodes < path2->disabled_nodes)
190 return COSTS_BETTER1;
191 else
192 return COSTS_BETTER2;
193 }
194
195 /*
196 * Check total cost first since it's more likely to be different; many
197 * paths have zero startup cost.
198 */
199 if (path1->total_cost > path2->total_cost * fuzz_factor)
200 {
201 /* path1 fuzzily worse on total cost */
203 path2->startup_cost > path1->startup_cost * fuzz_factor)
204 {
205 /* ... but path2 fuzzily worse on startup, so DIFFERENT */
206 return COSTS_DIFFERENT;
207 }
208 /* else path2 dominates */
209 return COSTS_BETTER2;
210 }
211 if (path2->total_cost > path1->total_cost * fuzz_factor)
212 {
213 /* path2 fuzzily worse on total cost */
215 path1->startup_cost > path2->startup_cost * fuzz_factor)
216 {
217 /* ... but path1 fuzzily worse on startup, so DIFFERENT */
218 return COSTS_DIFFERENT;
219 }
220 /* else path1 dominates */
221 return COSTS_BETTER1;
222 }
223 /* fuzzily the same on total cost ... */
224 if (path1->startup_cost > path2->startup_cost * fuzz_factor)
225 {
226 /* ... but path1 fuzzily worse on startup, so path2 wins */
227 return COSTS_BETTER2;
228 }
229 if (path2->startup_cost > path1->startup_cost * fuzz_factor)
230 {
231 /* ... but path2 fuzzily worse on startup, so path1 wins */
232 return COSTS_BETTER1;
233 }
234 /* fuzzily the same on both costs */
235 return COSTS_EQUAL;
236
237#undef CONSIDER_PATH_STARTUP_COST
238}
239
240/*
241 * set_cheapest
242 * Find the minimum-cost paths from among a relation's paths,
243 * and save them in the rel's cheapest-path fields.
244 *
245 * cheapest_total_path is normally the cheapest-total-cost unparameterized
246 * path; but if there are no unparameterized paths, we assign it to be the
247 * best (cheapest least-parameterized) parameterized path. However, only
248 * unparameterized paths are considered candidates for cheapest_startup_path,
249 * so that will be NULL if there are no unparameterized paths.
250 *
251 * The cheapest_parameterized_paths list collects all parameterized paths
252 * that have survived the add_path() tournament for this relation. (Since
253 * add_path ignores pathkeys for a parameterized path, these will be paths
254 * that have best cost or best row count for their parameterization. We
255 * may also have both a parallel-safe and a non-parallel-safe path in some
256 * cases for the same parameterization in some cases, but this should be
257 * relatively rare since, most typically, all paths for the same relation
258 * will be parallel-safe or none of them will.)
259 *
260 * cheapest_parameterized_paths always includes the cheapest-total
261 * unparameterized path, too, if there is one; the users of that list find
262 * it more convenient if that's included.
263 *
264 * This is normally called only after we've finished constructing the path
265 * list for the rel node.
266 */
267void
269{
270 Path *cheapest_startup_path;
271 Path *cheapest_total_path;
274 ListCell *p;
275
277
278 if (parent_rel->pathlist == NIL)
279 elog(ERROR, "could not devise a query plan for the given query");
280
281 cheapest_startup_path = cheapest_total_path = best_param_path = NULL;
283
284 foreach(p, parent_rel->pathlist)
285 {
286 Path *path = (Path *) lfirst(p);
287 int cmp;
288
289 if (path->param_info)
290 {
291 /* Parameterized path, so add it to parameterized_paths */
293
294 /*
295 * If we have an unparameterized cheapest-total, we no longer care
296 * about finding the best parameterized path, so move on.
297 */
298 if (cheapest_total_path)
299 continue;
300
301 /*
302 * Otherwise, track the best parameterized path, which is the one
303 * with least total cost among those of the minimum
304 * parameterization.
305 */
306 if (best_param_path == NULL)
307 best_param_path = path;
308 else
309 {
312 {
313 case BMS_EQUAL:
314 /* keep the cheaper one */
316 TOTAL_COST) < 0)
317 best_param_path = path;
318 break;
319 case BMS_SUBSET1:
320 /* new path is less-parameterized */
321 best_param_path = path;
322 break;
323 case BMS_SUBSET2:
324 /* old path is less-parameterized, keep it */
325 break;
326 case BMS_DIFFERENT:
327
328 /*
329 * This means that neither path has the least possible
330 * parameterization for the rel. We'll sit on the old
331 * path until something better comes along.
332 */
333 break;
334 }
335 }
336 }
337 else
338 {
339 /* Unparameterized path, so consider it for cheapest slots */
340 if (cheapest_total_path == NULL)
341 {
342 cheapest_startup_path = cheapest_total_path = path;
343 continue;
344 }
345
346 /*
347 * If we find two paths of identical costs, try to keep the
348 * better-sorted one. The paths might have unrelated sort
349 * orderings, in which case we can only guess which might be
350 * better to keep, but if one is superior then we definitely
351 * should keep that one.
352 */
353 cmp = compare_path_costs(cheapest_startup_path, path, STARTUP_COST);
354 if (cmp > 0 ||
355 (cmp == 0 &&
356 compare_pathkeys(cheapest_startup_path->pathkeys,
357 path->pathkeys) == PATHKEYS_BETTER2))
358 cheapest_startup_path = path;
359
360 cmp = compare_path_costs(cheapest_total_path, path, TOTAL_COST);
361 if (cmp > 0 ||
362 (cmp == 0 &&
363 compare_pathkeys(cheapest_total_path->pathkeys,
364 path->pathkeys) == PATHKEYS_BETTER2))
365 cheapest_total_path = path;
366 }
367 }
368
369 /* Add cheapest unparameterized path, if any, to parameterized_paths */
370 if (cheapest_total_path)
371 parameterized_paths = lcons(cheapest_total_path, parameterized_paths);
372
373 /*
374 * If there is no unparameterized path, use the best parameterized path as
375 * cheapest_total_path (but not as cheapest_startup_path).
376 */
377 if (cheapest_total_path == NULL)
378 cheapest_total_path = best_param_path;
379 Assert(cheapest_total_path != NULL);
380
381 parent_rel->cheapest_startup_path = cheapest_startup_path;
382 parent_rel->cheapest_total_path = cheapest_total_path;
383 parent_rel->cheapest_parameterized_paths = parameterized_paths;
384}
385
386/*
387 * add_path
388 * Consider a potential implementation path for the specified parent rel,
389 * and add it to the rel's pathlist if it is worthy of consideration.
390 *
391 * A path is worthy if it has a better sort order (better pathkeys) or
392 * cheaper cost (as defined below), or generates fewer rows, than any
393 * existing path that has the same or superset parameterization rels. We
394 * also consider parallel-safe paths more worthy than others.
395 *
396 * Cheaper cost can mean either a cheaper total cost or a cheaper startup
397 * cost; if one path is cheaper in one of these aspects and another is
398 * cheaper in the other, we keep both. However, when some path type is
399 * disabled (e.g. due to enable_seqscan=false), the number of times that
400 * a disabled path type is used is considered to be a higher-order
401 * component of the cost. Hence, if path A uses no disabled path type,
402 * and path B uses 1 or more disabled path types, A is cheaper, no matter
403 * what we estimate for the startup and total costs. The startup and total
404 * cost essentially act as a tiebreak when comparing paths that use equal
405 * numbers of disabled path nodes; but in practice this tiebreak is almost
406 * always used, since normally no path types are disabled.
407 *
408 * In addition to possibly adding new_path, we also remove from the rel's
409 * pathlist any old paths that are dominated by new_path --- that is,
410 * new_path is cheaper, at least as well ordered, generates no more rows,
411 * requires no outer rels not required by the old path, and is no less
412 * parallel-safe.
413 *
414 * In most cases, a path with a superset parameterization will generate
415 * fewer rows (since it has more join clauses to apply), so that those two
416 * figures of merit move in opposite directions; this means that a path of
417 * one parameterization can seldom dominate a path of another. But such
418 * cases do arise, so we make the full set of checks anyway.
419 *
420 * There are two policy decisions embedded in this function, along with
421 * its sibling add_path_precheck. First, we treat all parameterized paths
422 * as having NIL pathkeys, so that they cannot win comparisons on the
423 * basis of sort order. This is to reduce the number of parameterized
424 * paths that are kept; see discussion in src/backend/optimizer/README.
425 *
426 * Second, we only consider cheap startup cost to be interesting if
427 * parent_rel->consider_startup is true for an unparameterized path, or
428 * parent_rel->consider_param_startup is true for a parameterized one.
429 * Again, this allows discarding useless paths sooner.
430 *
431 * The pathlist is kept sorted by disabled_nodes and then by total_cost,
432 * with cheaper paths at the front. Within this routine, that's simply a
433 * speed hack: doing it that way makes it more likely that we will reject
434 * an inferior path after a few comparisons, rather than many comparisons.
435 * However, add_path_precheck relies on this ordering to exit early
436 * when possible.
437 *
438 * NOTE: discarded Path objects are immediately pfree'd to reduce planner
439 * memory consumption. We dare not try to free the substructure of a Path,
440 * since much of it may be shared with other Paths or the query tree itself;
441 * but just recycling discarded Path nodes is a very useful savings in
442 * a large join tree. We can recycle the List nodes of pathlist, too.
443 *
444 * As noted in optimizer/README, deleting a previously-accepted Path is
445 * safe because we know that Paths of this rel cannot yet be referenced
446 * from any other rel, such as a higher-level join. However, in some cases
447 * it is possible that a Path is referenced by another Path for its own
448 * rel; we must not delete such a Path, even if it is dominated by the new
449 * Path. Currently this occurs only for IndexPath objects, which may be
450 * referenced as children of BitmapHeapPaths as well as being paths in
451 * their own right. Hence, we don't pfree IndexPaths when rejecting them.
452 *
453 * 'parent_rel' is the relation entry to which the path corresponds.
454 * 'new_path' is a potential path for parent_rel.
455 *
456 * Returns nothing, but modifies parent_rel->pathlist.
457 */
458void
460{
461 bool accept_new = true; /* unless we find a superior old path */
462 int insert_at = 0; /* where to insert new item */
464 ListCell *p1;
465
466 /*
467 * This is a convenient place to check for query cancel --- no part of the
468 * planner goes very long without calling add_path().
469 */
471
472 /* Pretend parameterized paths have no pathkeys, per comment above */
473 new_path_pathkeys = new_path->param_info ? NIL : new_path->pathkeys;
474
475 /*
476 * Loop to check proposed new path against old paths. Note it is possible
477 * for more than one old path to be tossed out because new_path dominates
478 * it.
479 */
480 foreach(p1, parent_rel->pathlist)
481 {
482 Path *old_path = (Path *) lfirst(p1);
483 bool remove_old = false; /* unless new proves superior */
487
488 /*
489 * Do a fuzzy cost comparison with standard fuzziness limit.
490 */
493
494 /*
495 * If the two paths compare differently for startup and total cost,
496 * then we want to keep both, and we can skip comparing pathkeys and
497 * required_outer rels. If they compare the same, proceed with the
498 * other comparisons. Row count is checked last. (We make the tests
499 * in this order because the cost comparison is most likely to turn
500 * out "different", and the pathkeys comparison next most likely. As
501 * explained above, row count very seldom makes a difference, so even
502 * though it's cheap to compare there's not much point in checking it
503 * earlier.)
504 */
506 {
507 /* Similarly check to see if either dominates on pathkeys */
509
510 old_path_pathkeys = old_path->param_info ? NIL : old_path->pathkeys;
514 {
515 switch (costcmp)
516 {
517 case COSTS_EQUAL:
521 {
522 if ((outercmp == BMS_EQUAL ||
523 outercmp == BMS_SUBSET1) &&
524 new_path->rows <= old_path->rows &&
525 new_path->parallel_safe >= old_path->parallel_safe)
526 remove_old = true; /* new dominates old */
527 }
528 else if (keyscmp == PATHKEYS_BETTER2)
529 {
530 if ((outercmp == BMS_EQUAL ||
531 outercmp == BMS_SUBSET2) &&
532 new_path->rows >= old_path->rows &&
533 new_path->parallel_safe <= old_path->parallel_safe)
534 accept_new = false; /* old dominates new */
535 }
536 else /* keyscmp == PATHKEYS_EQUAL */
537 {
538 if (outercmp == BMS_EQUAL)
539 {
540 /*
541 * Same pathkeys and outer rels, and fuzzily
542 * the same cost, so keep just one; to decide
543 * which, first check parallel-safety, then
544 * rows, then do a fuzzy cost comparison with
545 * very small fuzz limit. (We used to do an
546 * exact cost comparison, but that results in
547 * annoying platform-specific plan variations
548 * due to roundoff in the cost estimates.) If
549 * things are still tied, arbitrarily keep
550 * only the old path. Notice that we will
551 * keep only the old path even if the
552 * less-fuzzy comparison decides the startup
553 * and total costs compare differently.
554 */
555 if (new_path->parallel_safe >
556 old_path->parallel_safe)
557 remove_old = true; /* new dominates old */
558 else if (new_path->parallel_safe <
559 old_path->parallel_safe)
560 accept_new = false; /* old dominates new */
561 else if (new_path->rows < old_path->rows)
562 remove_old = true; /* new dominates old */
563 else if (new_path->rows > old_path->rows)
564 accept_new = false; /* old dominates new */
566 old_path,
567 1.0000000001) == COSTS_BETTER1)
568 remove_old = true; /* new dominates old */
569 else
570 accept_new = false; /* old equals or
571 * dominates new */
572 }
573 else if (outercmp == BMS_SUBSET1 &&
574 new_path->rows <= old_path->rows &&
575 new_path->parallel_safe >= old_path->parallel_safe)
576 remove_old = true; /* new dominates old */
577 else if (outercmp == BMS_SUBSET2 &&
578 new_path->rows >= old_path->rows &&
579 new_path->parallel_safe <= old_path->parallel_safe)
580 accept_new = false; /* old dominates new */
581 /* else different parameterizations, keep both */
582 }
583 break;
584 case COSTS_BETTER1:
586 {
589 if ((outercmp == BMS_EQUAL ||
590 outercmp == BMS_SUBSET1) &&
591 new_path->rows <= old_path->rows &&
592 new_path->parallel_safe >= old_path->parallel_safe)
593 remove_old = true; /* new dominates old */
594 }
595 break;
596 case COSTS_BETTER2:
598 {
601 if ((outercmp == BMS_EQUAL ||
602 outercmp == BMS_SUBSET2) &&
603 new_path->rows >= old_path->rows &&
604 new_path->parallel_safe <= old_path->parallel_safe)
605 accept_new = false; /* old dominates new */
606 }
607 break;
608 case COSTS_DIFFERENT:
609
610 /*
611 * can't get here, but keep this case to keep compiler
612 * quiet
613 */
614 break;
615 }
616 }
617 }
618
619 /*
620 * Remove current element from pathlist if dominated by new.
621 */
622 if (remove_old)
623 {
624 parent_rel->pathlist = foreach_delete_current(parent_rel->pathlist,
625 p1);
626
627 /*
628 * Delete the data pointed-to by the deleted cell, if possible
629 */
630 if (!IsA(old_path, IndexPath))
632 }
633 else
634 {
635 /*
636 * new belongs after this old path if it has more disabled nodes
637 * or if it has the same number of nodes but a greater total cost
638 */
639 if (new_path->disabled_nodes > old_path->disabled_nodes ||
640 (new_path->disabled_nodes == old_path->disabled_nodes &&
641 new_path->total_cost >= old_path->total_cost))
643 }
644
645 /*
646 * If we found an old path that dominates new_path, we can quit
647 * scanning the pathlist; we will not add new_path, and we assume
648 * new_path cannot dominate any other elements of the pathlist.
649 */
650 if (!accept_new)
651 break;
652 }
653
654 if (accept_new)
655 {
656 /* Accept the new path: insert it at proper place in pathlist */
657 parent_rel->pathlist =
659 }
660 else
661 {
662 /* Reject and recycle the new path */
663 if (!IsA(new_path, IndexPath))
665 }
666}
667
668/*
669 * add_path_precheck
670 * Check whether a proposed new path could possibly get accepted.
671 * We assume we know the path's pathkeys and parameterization accurately,
672 * and have lower bounds for its costs.
673 *
674 * Note that we do not know the path's rowcount, since getting an estimate for
675 * that is too expensive to do before prechecking. We assume here that paths
676 * of a superset parameterization will generate fewer rows; if that holds,
677 * then paths with different parameterizations cannot dominate each other
678 * and so we can simply ignore existing paths of another parameterization.
679 * (In the infrequent cases where that rule of thumb fails, add_path will
680 * get rid of the inferior path.)
681 *
682 * At the time this is called, we haven't actually built a Path structure,
683 * so the required information has to be passed piecemeal.
684 */
685bool
687 Cost startup_cost, Cost total_cost,
688 List *pathkeys, Relids required_outer)
689{
691 bool consider_startup;
692 ListCell *p1;
693
694 /* Pretend parameterized paths have no pathkeys, per add_path policy */
695 new_path_pathkeys = required_outer ? NIL : pathkeys;
696
697 /* Decide whether new path's startup cost is interesting */
698 consider_startup = required_outer ? parent_rel->consider_param_startup : parent_rel->consider_startup;
699
700 foreach(p1, parent_rel->pathlist)
701 {
702 Path *old_path = (Path *) lfirst(p1);
704
705 /*
706 * Since the pathlist is sorted by disabled_nodes and then by
707 * total_cost, we can stop looking once we reach a path with more
708 * disabled nodes, or the same number of disabled nodes plus a
709 * total_cost larger than the new path's.
710 */
711 if (unlikely(old_path->disabled_nodes != disabled_nodes))
712 {
713 if (disabled_nodes < old_path->disabled_nodes)
714 break;
715 }
716 else if (total_cost <= old_path->total_cost * STD_FUZZ_FACTOR)
717 break;
718
719 /*
720 * We are looking for an old_path with the same parameterization (and
721 * by assumption the same rowcount) that dominates the new path on
722 * pathkeys as well as both cost metrics. If we find one, we can
723 * reject the new path.
724 *
725 * Cost comparisons here should match compare_path_costs_fuzzily.
726 */
727 /* new path can win on startup cost only if consider_startup */
728 if (startup_cost > old_path->startup_cost * STD_FUZZ_FACTOR ||
729 !consider_startup)
730 {
731 /* new path loses on cost, so check pathkeys... */
733
734 old_path_pathkeys = old_path->param_info ? NIL : old_path->pathkeys;
737 if (keyscmp == PATHKEYS_EQUAL ||
739 {
740 /* new path does not win on pathkeys... */
742 {
743 /* Found an old path that dominates the new one */
744 return false;
745 }
746 }
747 }
748 }
749
750 return true;
751}
752
753/*
754 * add_partial_path
755 * Like add_path, our goal here is to consider whether a path is worthy
756 * of being kept around, but the considerations here are a bit different.
757 * A partial path is one which can be executed in any number of workers in
758 * parallel such that each worker will generate a subset of the path's
759 * overall result.
760 *
761 * As in add_path, the partial_pathlist is kept sorted first by smallest
762 * number of disabled nodes and then by lowest total cost. This is depended
763 * on by multiple places, which just take the front entry as the cheapest
764 * path without searching.
765 *
766 * We don't generate parameterized partial paths for several reasons. Most
767 * importantly, they're not safe to execute, because there's nothing to
768 * make sure that a parallel scan within the parameterized portion of the
769 * plan is running with the same value in every worker at the same time.
770 * Fortunately, it seems unlikely to be worthwhile anyway, because having
771 * each worker scan the entire outer relation and a subset of the inner
772 * relation will generally be a terrible plan. The inner (parameterized)
773 * side of the plan will be small anyway. There could be rare cases where
774 * this wins big - e.g. if join order constraints put a 1-row relation on
775 * the outer side of the topmost join with a parameterized plan on the inner
776 * side - but we'll have to be content not to handle such cases until
777 * somebody builds an executor infrastructure that can cope with them.
778 *
779 * Because we don't consider parameterized paths here, we also don't
780 * need to consider the row counts as a measure of quality: every path will
781 * produce the same number of rows. However, we do need to consider the
782 * startup costs: this partial path could be used beneath a Limit node,
783 * so a fast-start plan could be correct.
784 *
785 * As with add_path, we pfree paths that are found to be dominated by
786 * another partial path; this requires that there be no other references to
787 * such paths yet. Hence, GatherPaths must not be created for a rel until
788 * we're done creating all partial paths for it. Unlike add_path, we don't
789 * take an exception for IndexPaths as partial index paths won't be
790 * referenced by partial BitmapHeapPaths.
791 */
792void
794{
795 bool accept_new = true; /* unless we find a superior old path */
796 int insert_at = 0; /* where to insert new item */
797 ListCell *p1;
798
799 /* Check for query cancel. */
801
802 /* Path to be added must be parallel safe. */
803 Assert(new_path->parallel_safe);
804
805 /* Relation should be OK for parallelism, too. */
806 Assert(parent_rel->consider_parallel);
807
808 /*
809 * As in add_path, throw out any paths which are dominated by the new
810 * path, but throw out the new path if some existing path dominates it.
811 */
812 foreach(p1, parent_rel->partial_pathlist)
813 {
814 Path *old_path = (Path *) lfirst(p1);
815 bool remove_old = false; /* unless new proves superior */
817
818 /* Compare pathkeys. */
819 keyscmp = compare_pathkeys(new_path->pathkeys, old_path->pathkeys);
820
821 /*
822 * Unless pathkeys are incompatible, see if one of the paths dominates
823 * the other (both in startup and total cost). It may happen that one
824 * path has lower startup cost, the other has lower total cost.
825 */
827 {
829
830 /*
831 * Do a fuzzy cost comparison with standard fuzziness limit.
832 */
835 if (costcmp == COSTS_BETTER1)
836 {
838 remove_old = true;
839 }
840 else if (costcmp == COSTS_BETTER2)
841 {
843 accept_new = false;
844 }
845 else if (costcmp == COSTS_EQUAL)
846 {
848 remove_old = true;
849 else if (keyscmp == PATHKEYS_BETTER2)
850 accept_new = false;
852 1.0000000001) == COSTS_BETTER1)
853 remove_old = true;
854 else
855 accept_new = false;
856 }
857 }
858
859 /*
860 * Remove current element from partial_pathlist if dominated by new.
861 */
862 if (remove_old)
863 {
864 parent_rel->partial_pathlist =
865 foreach_delete_current(parent_rel->partial_pathlist, p1);
867 }
868 else
869 {
870 /*
871 * new belongs after this old path if it has more disabled nodes
872 * or if it has the same number of nodes but a greater total cost
873 */
874 if (new_path->disabled_nodes > old_path->disabled_nodes ||
875 (new_path->disabled_nodes == old_path->disabled_nodes &&
876 new_path->total_cost >= old_path->total_cost))
878 }
879
880 /*
881 * If we found an old path that dominates new_path, we can quit
882 * scanning the partial_pathlist; we will not add new_path, and we
883 * assume new_path cannot dominate any later path.
884 */
885 if (!accept_new)
886 break;
887 }
888
889 if (accept_new)
890 {
891 /* Accept the new path: insert it at proper place */
892 parent_rel->partial_pathlist =
893 list_insert_nth(parent_rel->partial_pathlist, insert_at, new_path);
894 }
895 else
896 {
897 /* Reject and recycle the new path */
899 }
900}
901
902/*
903 * add_partial_path_precheck
904 * Check whether a proposed new partial path could possibly get accepted.
905 *
906 * Unlike add_path_precheck, we can ignore parameterization, since it doesn't
907 * matter for partial paths (see add_partial_path). But we do want to make
908 * sure we don't add a partial path if there's already a complete path that
909 * dominates it, since in that case the proposed path is surely a loser.
910 */
911bool
913 Cost startup_cost, Cost total_cost, List *pathkeys)
914{
915 bool consider_startup = parent_rel->consider_startup;
916 ListCell *p1;
917
918 /*
919 * Our goal here is twofold. First, we want to find out whether this path
920 * is clearly inferior to some existing partial path. If so, we want to
921 * reject it immediately. Second, we want to find out whether this path
922 * is clearly superior to some existing partial path -- at least, modulo
923 * final cost computations. If so, we definitely want to consider it.
924 *
925 * Unlike add_path(), we never try to exit this loop early. This is
926 * because we expect partial_pathlist to be very short, and getting a
927 * definitive answer at this stage avoids the need to call
928 * add_path_precheck.
929 */
930 foreach(p1, parent_rel->partial_pathlist)
931 {
932 Path *old_path = (Path *) lfirst(p1);
935
936 /*
937 * First, compare costs and disabled nodes. This logic should be
938 * identical to compare_path_costs_fuzzily, except that one of the
939 * paths hasn't been created yet, and the fuzz factor is always
940 * STD_FUZZ_FACTOR.
941 */
942 if (unlikely(old_path->disabled_nodes != disabled_nodes))
943 {
944 if (disabled_nodes < old_path->disabled_nodes)
946 else
948 }
949 else if (total_cost > old_path->total_cost * STD_FUZZ_FACTOR)
950 {
951 if (consider_startup &&
952 old_path->startup_cost > startup_cost * STD_FUZZ_FACTOR)
954 else
956 }
957 else if (old_path->total_cost > total_cost * STD_FUZZ_FACTOR)
958 {
959 if (consider_startup &&
960 startup_cost > old_path->startup_cost * STD_FUZZ_FACTOR)
962 else
964 }
965 else if (startup_cost > old_path->startup_cost * STD_FUZZ_FACTOR)
967 else if (old_path->startup_cost > startup_cost * STD_FUZZ_FACTOR)
969 else
971
972 /*
973 * If one path wins on startup cost and the other on total cost, we
974 * can't say for sure which is better.
975 */
977 continue;
978
979 /*
980 * If the two paths have different pathkeys, we can't say for sure
981 * which is better.
982 */
983 keyscmp = compare_pathkeys(pathkeys, old_path->pathkeys);
985 continue;
986
987 /*
988 * If the existing path is cheaper and the pathkeys are equal or
989 * worse, the new path is not interesting.
990 */
992 return false;
993
994 /*
995 * If the new path is cheaper and the pathkeys are equal or better, it
996 * is definitely interesting.
997 */
999 return true;
1000 }
1001
1002 /*
1003 * This path is neither clearly inferior to an existing partial path nor
1004 * clearly good enough that it might replace one. Compare it to
1005 * non-parallel plans. If it loses even before accounting for the cost of
1006 * the Gather node, we should definitely reject it.
1007 */
1008 if (!add_path_precheck(parent_rel, disabled_nodes, startup_cost,
1009 total_cost, pathkeys, NULL))
1010 return false;
1011
1012 return true;
1013}
1014
1015
1016/*****************************************************************************
1017 * PATH NODE CREATION ROUTINES
1018 *****************************************************************************/
1019
1020/*
1021 * create_seqscan_path
1022 * Creates a path corresponding to a sequential scan, returning the
1023 * pathnode.
1024 */
1025Path *
1027 Relids required_outer, int parallel_workers)
1028{
1030
1031 pathnode->pathtype = T_SeqScan;
1032 pathnode->parent = rel;
1033 pathnode->pathtarget = rel->reltarget;
1034 pathnode->param_info = get_baserel_parampathinfo(root, rel,
1036 pathnode->parallel_aware = (parallel_workers > 0);
1037 pathnode->parallel_safe = rel->consider_parallel;
1038 pathnode->parallel_workers = parallel_workers;
1039 pathnode->pathkeys = NIL; /* seqscan has unordered result */
1040
1041 cost_seqscan(pathnode, root, rel, pathnode->param_info);
1042
1043 return pathnode;
1044}
1045
1046/*
1047 * create_samplescan_path
1048 * Creates a path node for a sampled table scan.
1049 */
1050Path *
1052{
1054
1055 pathnode->pathtype = T_SampleScan;
1056 pathnode->parent = rel;
1057 pathnode->pathtarget = rel->reltarget;
1058 pathnode->param_info = get_baserel_parampathinfo(root, rel,
1060 pathnode->parallel_aware = false;
1061 pathnode->parallel_safe = rel->consider_parallel;
1062 pathnode->parallel_workers = 0;
1063 pathnode->pathkeys = NIL; /* samplescan has unordered result */
1064
1065 cost_samplescan(pathnode, root, rel, pathnode->param_info);
1066
1067 return pathnode;
1068}
1069
1070/*
1071 * create_index_path
1072 * Creates a path node for an index scan.
1073 *
1074 * 'index' is a usable index.
1075 * 'indexclauses' is a list of IndexClause nodes representing clauses
1076 * to be enforced as qual conditions in the scan.
1077 * 'indexorderbys' is a list of bare expressions (no RestrictInfos)
1078 * to be used as index ordering operators in the scan.
1079 * 'indexorderbycols' is an integer list of index column numbers (zero based)
1080 * the ordering operators can be used with.
1081 * 'pathkeys' describes the ordering of the path.
1082 * 'indexscandir' is either ForwardScanDirection or BackwardScanDirection.
1083 * 'indexonly' is true if an index-only scan is wanted.
1084 * 'required_outer' is the set of outer relids for a parameterized path.
1085 * 'loop_count' is the number of repetitions of the indexscan to factor into
1086 * estimates of caching behavior.
1087 * 'partial_path' is true if constructing a parallel index scan path.
1088 *
1089 * Returns the new path node.
1090 */
1091IndexPath *
1094 List *indexclauses,
1095 List *indexorderbys,
1096 List *indexorderbycols,
1097 List *pathkeys,
1098 ScanDirection indexscandir,
1099 bool indexonly,
1101 double loop_count,
1102 bool partial_path)
1103{
1105 RelOptInfo *rel = index->rel;
1106
1107 pathnode->path.pathtype = indexonly ? T_IndexOnlyScan : T_IndexScan;
1108 pathnode->path.parent = rel;
1109 pathnode->path.pathtarget = rel->reltarget;
1110 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1112 pathnode->path.parallel_aware = false;
1113 pathnode->path.parallel_safe = rel->consider_parallel;
1114 pathnode->path.parallel_workers = 0;
1115 pathnode->path.pathkeys = pathkeys;
1116
1117 pathnode->indexinfo = index;
1118 pathnode->indexclauses = indexclauses;
1119 pathnode->indexorderbys = indexorderbys;
1120 pathnode->indexorderbycols = indexorderbycols;
1121 pathnode->indexscandir = indexscandir;
1122
1124
1125 /*
1126 * cost_index will set disabled_nodes to 1 if this rel is not allowed to
1127 * use index scans in general, but it doesn't have the IndexOptInfo to
1128 * know whether this specific index has been disabled.
1129 */
1130 if (index->disabled)
1131 pathnode->path.disabled_nodes = 1;
1132
1133 return pathnode;
1134}
1135
1136/*
1137 * create_bitmap_heap_path
1138 * Creates a path node for a bitmap scan.
1139 *
1140 * 'bitmapqual' is a tree of IndexPath, BitmapAndPath, and BitmapOrPath nodes.
1141 * 'required_outer' is the set of outer relids for a parameterized path.
1142 * 'loop_count' is the number of repetitions of the indexscan to factor into
1143 * estimates of caching behavior.
1144 *
1145 * loop_count should match the value used when creating the component
1146 * IndexPaths.
1147 */
1150 RelOptInfo *rel,
1151 Path *bitmapqual,
1153 double loop_count,
1154 int parallel_degree)
1155{
1157
1158 pathnode->path.pathtype = T_BitmapHeapScan;
1159 pathnode->path.parent = rel;
1160 pathnode->path.pathtarget = rel->reltarget;
1161 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1163 pathnode->path.parallel_aware = (parallel_degree > 0);
1164 pathnode->path.parallel_safe = rel->consider_parallel;
1165 pathnode->path.parallel_workers = parallel_degree;
1166 pathnode->path.pathkeys = NIL; /* always unordered */
1167
1168 pathnode->bitmapqual = bitmapqual;
1169
1170 cost_bitmap_heap_scan(&pathnode->path, root, rel,
1171 pathnode->path.param_info,
1172 bitmapqual, loop_count);
1173
1174 return pathnode;
1175}
1176
1177/*
1178 * create_bitmap_and_path
1179 * Creates a path node representing a BitmapAnd.
1180 */
1183 RelOptInfo *rel,
1184 List *bitmapquals)
1185{
1188 ListCell *lc;
1189
1190 pathnode->path.pathtype = T_BitmapAnd;
1191 pathnode->path.parent = rel;
1192 pathnode->path.pathtarget = rel->reltarget;
1193
1194 /*
1195 * Identify the required outer rels as the union of what the child paths
1196 * depend on. (Alternatively, we could insist that the caller pass this
1197 * in, but it's more convenient and reliable to compute it here.)
1198 */
1199 foreach(lc, bitmapquals)
1200 {
1201 Path *bitmapqual = (Path *) lfirst(lc);
1202
1204 PATH_REQ_OUTER(bitmapqual));
1205 }
1206 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1208
1209 /*
1210 * Currently, a BitmapHeapPath, BitmapAndPath, or BitmapOrPath will be
1211 * parallel-safe if and only if rel->consider_parallel is set. So, we can
1212 * set the flag for this path based only on the relation-level flag,
1213 * without actually iterating over the list of children.
1214 */
1215 pathnode->path.parallel_aware = false;
1216 pathnode->path.parallel_safe = rel->consider_parallel;
1217 pathnode->path.parallel_workers = 0;
1218
1219 pathnode->path.pathkeys = NIL; /* always unordered */
1220
1221 pathnode->bitmapquals = bitmapquals;
1222
1223 /* this sets bitmapselectivity as well as the regular cost fields: */
1225
1226 return pathnode;
1227}
1228
1229/*
1230 * create_bitmap_or_path
1231 * Creates a path node representing a BitmapOr.
1232 */
1235 RelOptInfo *rel,
1236 List *bitmapquals)
1237{
1240 ListCell *lc;
1241
1242 pathnode->path.pathtype = T_BitmapOr;
1243 pathnode->path.parent = rel;
1244 pathnode->path.pathtarget = rel->reltarget;
1245
1246 /*
1247 * Identify the required outer rels as the union of what the child paths
1248 * depend on. (Alternatively, we could insist that the caller pass this
1249 * in, but it's more convenient and reliable to compute it here.)
1250 */
1251 foreach(lc, bitmapquals)
1252 {
1253 Path *bitmapqual = (Path *) lfirst(lc);
1254
1256 PATH_REQ_OUTER(bitmapqual));
1257 }
1258 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1260
1261 /*
1262 * Currently, a BitmapHeapPath, BitmapAndPath, or BitmapOrPath will be
1263 * parallel-safe if and only if rel->consider_parallel is set. So, we can
1264 * set the flag for this path based only on the relation-level flag,
1265 * without actually iterating over the list of children.
1266 */
1267 pathnode->path.parallel_aware = false;
1268 pathnode->path.parallel_safe = rel->consider_parallel;
1269 pathnode->path.parallel_workers = 0;
1270
1271 pathnode->path.pathkeys = NIL; /* always unordered */
1272
1273 pathnode->bitmapquals = bitmapquals;
1274
1275 /* this sets bitmapselectivity as well as the regular cost fields: */
1277
1278 return pathnode;
1279}
1280
1281/*
1282 * create_tidscan_path
1283 * Creates a path corresponding to a scan by TID, returning the pathnode.
1284 */
1285TidPath *
1288{
1290
1291 pathnode->path.pathtype = T_TidScan;
1292 pathnode->path.parent = rel;
1293 pathnode->path.pathtarget = rel->reltarget;
1294 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1296 pathnode->path.parallel_aware = false;
1297 pathnode->path.parallel_safe = rel->consider_parallel;
1298 pathnode->path.parallel_workers = 0;
1299 pathnode->path.pathkeys = NIL; /* always unordered */
1300
1301 pathnode->tidquals = tidquals;
1302
1303 cost_tidscan(&pathnode->path, root, rel, tidquals,
1304 pathnode->path.param_info);
1305
1306 return pathnode;
1307}
1308
1309/*
1310 * create_tidrangescan_path
1311 * Creates a path corresponding to a scan by a range of TIDs, returning
1312 * the pathnode.
1313 */
1316 List *tidrangequals, Relids required_outer,
1317 int parallel_workers)
1318{
1320
1321 pathnode->path.pathtype = T_TidRangeScan;
1322 pathnode->path.parent = rel;
1323 pathnode->path.pathtarget = rel->reltarget;
1324 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1326 pathnode->path.parallel_aware = (parallel_workers > 0);
1327 pathnode->path.parallel_safe = rel->consider_parallel;
1328 pathnode->path.parallel_workers = parallel_workers;
1329 pathnode->path.pathkeys = NIL; /* always unordered */
1330
1331 pathnode->tidrangequals = tidrangequals;
1332
1333 cost_tidrangescan(&pathnode->path, root, rel, tidrangequals,
1334 pathnode->path.param_info);
1335
1336 return pathnode;
1337}
1338
1339/*
1340 * create_append_path
1341 * Creates a path corresponding to an Append plan, returning the
1342 * pathnode.
1343 *
1344 * Note that we must handle subpaths = NIL, representing a dummy access path.
1345 * Also, there are callers that pass root = NULL.
1346 *
1347 * 'rows', when passed as a non-negative number, will be used to overwrite the
1348 * returned path's row estimate. Otherwise, the row estimate is calculated
1349 * by totalling the row estimates from the 'subpaths' list.
1350 */
1351AppendPath *
1353 RelOptInfo *rel,
1355 List *pathkeys, Relids required_outer,
1356 int parallel_workers, bool parallel_aware,
1357 double rows)
1358{
1360 ListCell *l;
1361
1362 Assert(!parallel_aware || parallel_workers > 0);
1363
1364 pathnode->child_append_relid_sets = input.child_append_relid_sets;
1365 pathnode->path.pathtype = T_Append;
1366 pathnode->path.parent = rel;
1367 pathnode->path.pathtarget = rel->reltarget;
1368
1369 /*
1370 * If this is for a baserel (not a join or non-leaf partition), we prefer
1371 * to apply get_baserel_parampathinfo to construct a full ParamPathInfo
1372 * for the path. This supports building a Memoize path atop this path,
1373 * and if this is a partitioned table the info may be useful for run-time
1374 * pruning (cf make_partition_pruneinfo()).
1375 *
1376 * However, if we don't have "root" then that won't work and we fall back
1377 * on the simpler get_appendrel_parampathinfo. There's no point in doing
1378 * the more expensive thing for a dummy path, either.
1379 */
1380 if (rel->reloptkind == RELOPT_BASEREL && root && input.subpaths != NIL)
1381 pathnode->path.param_info = get_baserel_parampathinfo(root,
1382 rel,
1384 else
1385 pathnode->path.param_info = get_appendrel_parampathinfo(rel,
1387
1388 pathnode->path.parallel_aware = parallel_aware;
1389 pathnode->path.parallel_safe = rel->consider_parallel;
1390 pathnode->path.parallel_workers = parallel_workers;
1391 pathnode->path.pathkeys = pathkeys;
1392
1393 /*
1394 * For parallel append, non-partial paths are sorted by descending total
1395 * costs. That way, the total time to finish all non-partial paths is
1396 * minimized. Also, the partial paths are sorted by descending startup
1397 * costs. There may be some paths that require to do startup work by a
1398 * single worker. In such case, it's better for workers to choose the
1399 * expensive ones first, whereas the leader should choose the cheapest
1400 * startup plan.
1401 */
1402 if (pathnode->path.parallel_aware)
1403 {
1404 /*
1405 * We mustn't fiddle with the order of subpaths when the Append has
1406 * pathkeys. The order they're listed in is critical to keeping the
1407 * pathkeys valid.
1408 */
1409 Assert(pathkeys == NIL);
1410
1412 list_sort(input.partial_subpaths, append_startup_cost_compare);
1413 }
1414 pathnode->first_partial_path = list_length(input.subpaths);
1415 pathnode->subpaths = list_concat(input.subpaths, input.partial_subpaths);
1416
1417 /*
1418 * Apply query-wide LIMIT if known and path is for sole base relation.
1419 * (Handling this at this low level is a bit klugy.)
1420 */
1421 if (root != NULL && bms_equal(rel->relids, root->all_query_rels))
1422 pathnode->limit_tuples = root->limit_tuples;
1423 else
1424 pathnode->limit_tuples = -1.0;
1425
1426 foreach(l, pathnode->subpaths)
1427 {
1428 Path *subpath = (Path *) lfirst(l);
1429
1430 pathnode->path.parallel_safe = pathnode->path.parallel_safe &&
1431 subpath->parallel_safe;
1432
1433 /* All child paths must have same parameterization */
1435 }
1436
1437 Assert(!parallel_aware || pathnode->path.parallel_safe);
1438
1439 /*
1440 * If there's exactly one child path then the output of the Append is
1441 * necessarily ordered the same as the child's, so we can inherit the
1442 * child's pathkeys if any, overriding whatever the caller might've said.
1443 * Furthermore, if the child's parallel awareness matches the Append's,
1444 * then the Append is a no-op and will be discarded later (in setrefs.c).
1445 * Then we can inherit the child's size and cost too, effectively charging
1446 * zero for the Append. Otherwise, we must do the normal costsize
1447 * calculation.
1448 */
1449 if (list_length(pathnode->subpaths) == 1)
1450 {
1451 Path *child = (Path *) linitial(pathnode->subpaths);
1452
1453 if (child->parallel_aware == parallel_aware)
1454 {
1455 pathnode->path.rows = child->rows;
1456 pathnode->path.startup_cost = child->startup_cost;
1457 pathnode->path.total_cost = child->total_cost;
1458 }
1459 else
1461 /* Must do this last, else cost_append complains */
1462 pathnode->path.pathkeys = child->pathkeys;
1463 }
1464 else
1466
1467 /* If the caller provided a row estimate, override the computed value. */
1468 if (rows >= 0)
1469 pathnode->path.rows = rows;
1470
1471 return pathnode;
1472}
1473
1474/*
1475 * append_total_cost_compare
1476 * list_sort comparator for sorting append child paths
1477 * by total_cost descending
1478 *
1479 * For equal total costs, we fall back to comparing startup costs; if those
1480 * are equal too, break ties using bms_compare on the paths' relids.
1481 * (This is to avoid getting unpredictable results from list_sort.)
1482 */
1483static int
1485{
1486 Path *path1 = (Path *) lfirst(a);
1487 Path *path2 = (Path *) lfirst(b);
1488 int cmp;
1489
1491 if (cmp != 0)
1492 return -cmp;
1493 return bms_compare(path1->parent->relids, path2->parent->relids);
1494}
1495
1496/*
1497 * append_startup_cost_compare
1498 * list_sort comparator for sorting append child paths
1499 * by startup_cost descending
1500 *
1501 * For equal startup costs, we fall back to comparing total costs; if those
1502 * are equal too, break ties using bms_compare on the paths' relids.
1503 * (This is to avoid getting unpredictable results from list_sort.)
1504 */
1505static int
1507{
1508 Path *path1 = (Path *) lfirst(a);
1509 Path *path2 = (Path *) lfirst(b);
1510 int cmp;
1511
1513 if (cmp != 0)
1514 return -cmp;
1515 return bms_compare(path1->parent->relids, path2->parent->relids);
1516}
1517
1518/*
1519 * create_merge_append_path
1520 * Creates a path corresponding to a MergeAppend plan, returning the
1521 * pathnode.
1522 */
1525 RelOptInfo *rel,
1526 List *subpaths,
1527 List *child_append_relid_sets,
1528 List *pathkeys,
1530{
1535 ListCell *l;
1536
1537 /*
1538 * We don't currently support parameterized MergeAppend paths, as
1539 * explained in the comments for generate_orderedappend_paths.
1540 */
1542
1543 pathnode->child_append_relid_sets = child_append_relid_sets;
1544 pathnode->path.pathtype = T_MergeAppend;
1545 pathnode->path.parent = rel;
1546 pathnode->path.pathtarget = rel->reltarget;
1547 pathnode->path.param_info = NULL;
1548 pathnode->path.parallel_aware = false;
1549 pathnode->path.parallel_safe = rel->consider_parallel;
1550 pathnode->path.parallel_workers = 0;
1551 pathnode->path.pathkeys = pathkeys;
1552 pathnode->subpaths = subpaths;
1553
1554 /*
1555 * Apply query-wide LIMIT if known and path is for sole base relation.
1556 * (Handling this at this low level is a bit klugy.)
1557 */
1558 if (bms_equal(rel->relids, root->all_query_rels))
1559 pathnode->limit_tuples = root->limit_tuples;
1560 else
1561 pathnode->limit_tuples = -1.0;
1562
1563 /*
1564 * Add up the sizes and costs of the input paths.
1565 */
1566 pathnode->path.rows = 0;
1569 input_total_cost = 0;
1570 foreach(l, subpaths)
1571 {
1572 Path *subpath = (Path *) lfirst(l);
1573 int presorted_keys;
1574 Path sort_path; /* dummy for result of
1575 * cost_sort/cost_incremental_sort */
1576
1577 /* All child paths should be unparameterized */
1579
1580 pathnode->path.rows += subpath->rows;
1581 pathnode->path.parallel_safe = pathnode->path.parallel_safe &&
1582 subpath->parallel_safe;
1583
1584 if (!pathkeys_count_contained_in(pathkeys, subpath->pathkeys,
1585 &presorted_keys))
1586 {
1587 /*
1588 * We'll need to insert a Sort node, so include costs for that. We
1589 * choose to use incremental sort if it is enabled and there are
1590 * presorted keys; otherwise we use full sort.
1591 *
1592 * We can use the parent's LIMIT if any, since we certainly won't
1593 * pull more than that many tuples from any child.
1594 */
1595 if (enable_incremental_sort && presorted_keys > 0)
1596 {
1598 root,
1599 pathkeys,
1600 presorted_keys,
1601 subpath->disabled_nodes,
1602 subpath->startup_cost,
1603 subpath->total_cost,
1604 subpath->rows,
1605 subpath->pathtarget->width,
1606 0.0,
1607 work_mem,
1608 pathnode->limit_tuples);
1609 }
1610 else
1611 {
1613 root,
1614 pathkeys,
1615 subpath->disabled_nodes,
1616 subpath->total_cost,
1617 subpath->rows,
1618 subpath->pathtarget->width,
1619 0.0,
1620 work_mem,
1621 pathnode->limit_tuples);
1622 }
1623
1624 subpath = &sort_path;
1625 }
1626
1627 input_disabled_nodes += subpath->disabled_nodes;
1628 input_startup_cost += subpath->startup_cost;
1629 input_total_cost += subpath->total_cost;
1630 }
1631
1632 /*
1633 * Now we can compute total costs of the MergeAppend. If there's exactly
1634 * one child path and its parallel awareness matches that of the
1635 * MergeAppend, then the MergeAppend is a no-op and will be discarded
1636 * later (in setrefs.c); otherwise we do the normal cost calculation.
1637 */
1638 if (list_length(subpaths) == 1 &&
1639 ((Path *) linitial(subpaths))->parallel_aware ==
1640 pathnode->path.parallel_aware)
1641 {
1642 pathnode->path.disabled_nodes = input_disabled_nodes;
1643 pathnode->path.startup_cost = input_startup_cost;
1644 pathnode->path.total_cost = input_total_cost;
1645 }
1646 else
1648 pathkeys, list_length(subpaths),
1651 pathnode->path.rows);
1652
1653 return pathnode;
1654}
1655
1656/*
1657 * create_group_result_path
1658 * Creates a path representing a Result-and-nothing-else plan.
1659 *
1660 * This is only used for degenerate grouping cases, in which we know we
1661 * need to produce one result row, possibly filtered by a HAVING qual.
1662 */
1665 PathTarget *target, List *havingqual)
1666{
1668
1669 pathnode->path.pathtype = T_Result;
1670 pathnode->path.parent = rel;
1671 pathnode->path.pathtarget = target;
1672 pathnode->path.param_info = NULL; /* there are no other rels... */
1673 pathnode->path.parallel_aware = false;
1674 pathnode->path.parallel_safe = rel->consider_parallel;
1675 pathnode->path.parallel_workers = 0;
1676 pathnode->path.pathkeys = NIL;
1677 pathnode->quals = havingqual;
1678
1679 /*
1680 * We can't quite use cost_resultscan() because the quals we want to
1681 * account for are not baserestrict quals of the rel. Might as well just
1682 * hack it here.
1683 */
1684 pathnode->path.rows = 1;
1685 pathnode->path.startup_cost = target->cost.startup;
1686 pathnode->path.total_cost = target->cost.startup +
1687 cpu_tuple_cost + target->cost.per_tuple;
1688
1689 /*
1690 * Add cost of qual, if any --- but we ignore its selectivity, since our
1691 * rowcount estimate should be 1 no matter what the qual is.
1692 */
1693 if (havingqual)
1694 {
1696
1698 /* havingqual is evaluated once at startup */
1699 pathnode->path.startup_cost += qual_cost.startup + qual_cost.per_tuple;
1700 pathnode->path.total_cost += qual_cost.startup + qual_cost.per_tuple;
1701 }
1702
1703 return pathnode;
1704}
1705
1706/*
1707 * create_material_path
1708 * Creates a path corresponding to a Material plan, returning the
1709 * pathnode.
1710 */
1713{
1715
1716 Assert(subpath->parent == rel);
1717
1718 pathnode->path.pathtype = T_Material;
1719 pathnode->path.parent = rel;
1720 pathnode->path.pathtarget = rel->reltarget;
1721 pathnode->path.param_info = subpath->param_info;
1722 pathnode->path.parallel_aware = false;
1723 pathnode->path.parallel_safe = rel->consider_parallel &&
1724 subpath->parallel_safe;
1725 pathnode->path.parallel_workers = subpath->parallel_workers;
1726 pathnode->path.pathkeys = subpath->pathkeys;
1727
1728 pathnode->subpath = subpath;
1729
1730 cost_material(&pathnode->path,
1731 enabled,
1732 subpath->disabled_nodes,
1733 subpath->startup_cost,
1734 subpath->total_cost,
1735 subpath->rows,
1736 subpath->pathtarget->width);
1737
1738 return pathnode;
1739}
1740
1741/*
1742 * create_memoize_path
1743 * Creates a path corresponding to a Memoize plan, returning the pathnode.
1744 */
1747 List *param_exprs, List *hash_operators,
1748 bool singlerow, bool binary_mode, Cardinality est_calls)
1749{
1751
1752 Assert(subpath->parent == rel);
1753
1754 pathnode->path.pathtype = T_Memoize;
1755 pathnode->path.parent = rel;
1756 pathnode->path.pathtarget = rel->reltarget;
1757 pathnode->path.param_info = subpath->param_info;
1758 pathnode->path.parallel_aware = false;
1759 pathnode->path.parallel_safe = rel->consider_parallel &&
1760 subpath->parallel_safe;
1761 pathnode->path.parallel_workers = subpath->parallel_workers;
1762 pathnode->path.pathkeys = subpath->pathkeys;
1763
1764 pathnode->subpath = subpath;
1765 pathnode->hash_operators = hash_operators;
1766 pathnode->param_exprs = param_exprs;
1767 pathnode->singlerow = singlerow;
1768 pathnode->binary_mode = binary_mode;
1769
1770 /*
1771 * For now we set est_entries to 0. cost_memoize_rescan() does all the
1772 * hard work to determine how many cache entries there are likely to be,
1773 * so it seems best to leave it up to that function to fill this field in.
1774 * If left at 0, the executor will make a guess at a good value.
1775 */
1776 pathnode->est_entries = 0;
1777
1778 pathnode->est_calls = clamp_row_est(est_calls);
1779
1780 /* These will also be set later in cost_memoize_rescan() */
1781 pathnode->est_unique_keys = 0.0;
1782 pathnode->est_hit_ratio = 0.0;
1783
1784 /*
1785 * We should not be asked to generate this path type when memoization is
1786 * disabled, so set our count of disabled nodes equal to the subpath's
1787 * count.
1788 *
1789 * It would be nice to also Assert that memoization is enabled, but the
1790 * value of enable_memoize is not controlling: what we would need to check
1791 * is that the JoinPathExtraData's pgs_mask included PGS_NESTLOOP_MEMOIZE.
1792 */
1793 pathnode->path.disabled_nodes = subpath->disabled_nodes;
1794
1795 /*
1796 * Add a small additional charge for caching the first entry. All the
1797 * harder calculations for rescans are performed in cost_memoize_rescan().
1798 */
1799 pathnode->path.startup_cost = subpath->startup_cost + cpu_tuple_cost;
1800 pathnode->path.total_cost = subpath->total_cost + cpu_tuple_cost;
1801 pathnode->path.rows = subpath->rows;
1802
1803 return pathnode;
1804}
1805
1806/*
1807 * create_gather_merge_path
1808 *
1809 * Creates a path corresponding to a gather merge scan, returning
1810 * the pathnode.
1811 */
1814 PathTarget *target, List *pathkeys,
1815 Relids required_outer, double *rows)
1816{
1818 int input_disabled_nodes = 0;
1821
1822 Assert(subpath->parallel_safe);
1823 Assert(pathkeys);
1824
1825 /*
1826 * The subpath should guarantee that it is adequately ordered either by
1827 * adding an explicit sort node or by using presorted input. We cannot
1828 * add an explicit Sort node for the subpath in createplan.c on additional
1829 * pathkeys, because we can't guarantee the sort would be safe. For
1830 * example, expressions may be volatile or otherwise parallel unsafe.
1831 */
1832 if (!pathkeys_contained_in(pathkeys, subpath->pathkeys))
1833 elog(ERROR, "gather merge input not sufficiently sorted");
1834
1835 pathnode->path.pathtype = T_GatherMerge;
1836 pathnode->path.parent = rel;
1837 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1839 pathnode->path.parallel_aware = false;
1840
1841 pathnode->subpath = subpath;
1842 pathnode->num_workers = subpath->parallel_workers;
1843 pathnode->path.pathkeys = pathkeys;
1844 pathnode->path.pathtarget = target ? target : rel->reltarget;
1845
1846 input_disabled_nodes += subpath->disabled_nodes;
1847 input_startup_cost += subpath->startup_cost;
1848 input_total_cost += subpath->total_cost;
1849
1850 cost_gather_merge(pathnode, root, rel, pathnode->path.param_info,
1852 input_total_cost, rows);
1853
1854 return pathnode;
1855}
1856
1857/*
1858 * create_gather_path
1859 * Creates a path corresponding to a gather scan, returning the
1860 * pathnode.
1861 *
1862 * 'rows' may optionally be set to override row estimates from other sources.
1863 */
1864GatherPath *
1866 PathTarget *target, Relids required_outer, double *rows)
1867{
1869
1870 Assert(subpath->parallel_safe);
1871
1872 pathnode->path.pathtype = T_Gather;
1873 pathnode->path.parent = rel;
1874 pathnode->path.pathtarget = target;
1875 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1877 pathnode->path.parallel_aware = false;
1878 pathnode->path.parallel_safe = false;
1879 pathnode->path.parallel_workers = 0;
1880 pathnode->path.pathkeys = NIL; /* Gather has unordered result */
1881
1882 pathnode->subpath = subpath;
1883 pathnode->num_workers = subpath->parallel_workers;
1884 pathnode->single_copy = false;
1885
1886 if (pathnode->num_workers == 0)
1887 {
1888 pathnode->path.pathkeys = subpath->pathkeys;
1889 pathnode->num_workers = 1;
1890 pathnode->single_copy = true;
1891 }
1892
1893 cost_gather(pathnode, root, rel, pathnode->path.param_info, rows);
1894
1895 return pathnode;
1896}
1897
1898/*
1899 * create_subqueryscan_path
1900 * Creates a path corresponding to a scan of a subquery,
1901 * returning the pathnode.
1902 *
1903 * Caller must pass trivial_pathtarget = true if it believes rel->reltarget to
1904 * be trivial, ie just a fetch of all the subquery output columns in order.
1905 * While we could determine that here, the caller can usually do it more
1906 * efficiently (or at least amortize it over multiple calls).
1907 */
1910 bool trivial_pathtarget,
1911 List *pathkeys, Relids required_outer)
1912{
1914
1915 pathnode->path.pathtype = T_SubqueryScan;
1916 pathnode->path.parent = rel;
1917 pathnode->path.pathtarget = rel->reltarget;
1918 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
1920 pathnode->path.parallel_aware = false;
1921 pathnode->path.parallel_safe = rel->consider_parallel &&
1922 subpath->parallel_safe;
1923 pathnode->path.parallel_workers = subpath->parallel_workers;
1924 pathnode->path.pathkeys = pathkeys;
1925 pathnode->subpath = subpath;
1926
1927 cost_subqueryscan(pathnode, root, rel, pathnode->path.param_info,
1929
1930 return pathnode;
1931}
1932
1933/*
1934 * create_functionscan_path
1935 * Creates a path corresponding to a sequential scan of a function,
1936 * returning the pathnode.
1937 */
1938Path *
1940 List *pathkeys, Relids required_outer)
1941{
1943
1944 pathnode->pathtype = T_FunctionScan;
1945 pathnode->parent = rel;
1946 pathnode->pathtarget = rel->reltarget;
1947 pathnode->param_info = get_baserel_parampathinfo(root, rel,
1949 pathnode->parallel_aware = false;
1950 pathnode->parallel_safe = rel->consider_parallel;
1951 pathnode->parallel_workers = 0;
1952 pathnode->pathkeys = pathkeys;
1953
1954 cost_functionscan(pathnode, root, rel, pathnode->param_info);
1955
1956 return pathnode;
1957}
1958
1959/*
1960 * create_tablefuncscan_path
1961 * Creates a path corresponding to a sequential scan of a table function,
1962 * returning the pathnode.
1963 */
1964Path *
1967{
1969
1970 pathnode->pathtype = T_TableFuncScan;
1971 pathnode->parent = rel;
1972 pathnode->pathtarget = rel->reltarget;
1973 pathnode->param_info = get_baserel_parampathinfo(root, rel,
1975 pathnode->parallel_aware = false;
1976 pathnode->parallel_safe = rel->consider_parallel;
1977 pathnode->parallel_workers = 0;
1978 pathnode->pathkeys = NIL; /* result is always unordered */
1979
1980 cost_tablefuncscan(pathnode, root, rel, pathnode->param_info);
1981
1982 return pathnode;
1983}
1984
1985/*
1986 * create_valuesscan_path
1987 * Creates a path corresponding to a scan of a VALUES list,
1988 * returning the pathnode.
1989 */
1990Path *
1993{
1995
1996 pathnode->pathtype = T_ValuesScan;
1997 pathnode->parent = rel;
1998 pathnode->pathtarget = rel->reltarget;
1999 pathnode->param_info = get_baserel_parampathinfo(root, rel,
2001 pathnode->parallel_aware = false;
2002 pathnode->parallel_safe = rel->consider_parallel;
2003 pathnode->parallel_workers = 0;
2004 pathnode->pathkeys = NIL; /* result is always unordered */
2005
2006 cost_valuesscan(pathnode, root, rel, pathnode->param_info);
2007
2008 return pathnode;
2009}
2010
2011/*
2012 * create_ctescan_path
2013 * Creates a path corresponding to a scan of a non-self-reference CTE,
2014 * returning the pathnode.
2015 */
2016Path *
2018 List *pathkeys, Relids required_outer)
2019{
2021
2022 pathnode->pathtype = T_CteScan;
2023 pathnode->parent = rel;
2024 pathnode->pathtarget = rel->reltarget;
2025 pathnode->param_info = get_baserel_parampathinfo(root, rel,
2027 pathnode->parallel_aware = false;
2028 pathnode->parallel_safe = rel->consider_parallel;
2029 pathnode->parallel_workers = 0;
2030 pathnode->pathkeys = pathkeys;
2031
2032 cost_ctescan(pathnode, root, rel, pathnode->param_info);
2033
2034 return pathnode;
2035}
2036
2037/*
2038 * create_namedtuplestorescan_path
2039 * Creates a path corresponding to a scan of a named tuplestore, returning
2040 * the pathnode.
2041 */
2042Path *
2045{
2047
2048 pathnode->pathtype = T_NamedTuplestoreScan;
2049 pathnode->parent = rel;
2050 pathnode->pathtarget = rel->reltarget;
2051 pathnode->param_info = get_baserel_parampathinfo(root, rel,
2053 pathnode->parallel_aware = false;
2054 pathnode->parallel_safe = rel->consider_parallel;
2055 pathnode->parallel_workers = 0;
2056 pathnode->pathkeys = NIL; /* result is always unordered */
2057
2058 cost_namedtuplestorescan(pathnode, root, rel, pathnode->param_info);
2059
2060 return pathnode;
2061}
2062
2063/*
2064 * create_resultscan_path
2065 * Creates a path corresponding to a scan of an RTE_RESULT relation,
2066 * returning the pathnode.
2067 */
2068Path *
2071{
2073
2074 pathnode->pathtype = T_Result;
2075 pathnode->parent = rel;
2076 pathnode->pathtarget = rel->reltarget;
2077 pathnode->param_info = get_baserel_parampathinfo(root, rel,
2079 pathnode->parallel_aware = false;
2080 pathnode->parallel_safe = rel->consider_parallel;
2081 pathnode->parallel_workers = 0;
2082 pathnode->pathkeys = NIL; /* result is always unordered */
2083
2084 cost_resultscan(pathnode, root, rel, pathnode->param_info);
2085
2086 return pathnode;
2087}
2088
2089/*
2090 * create_worktablescan_path
2091 * Creates a path corresponding to a scan of a self-reference CTE,
2092 * returning the pathnode.
2093 */
2094Path *
2097{
2099
2100 pathnode->pathtype = T_WorkTableScan;
2101 pathnode->parent = rel;
2102 pathnode->pathtarget = rel->reltarget;
2103 pathnode->param_info = get_baserel_parampathinfo(root, rel,
2105 pathnode->parallel_aware = false;
2106 pathnode->parallel_safe = rel->consider_parallel;
2107 pathnode->parallel_workers = 0;
2108 pathnode->pathkeys = NIL; /* result is always unordered */
2109
2110 /* Cost is the same as for a regular CTE scan */
2111 cost_ctescan(pathnode, root, rel, pathnode->param_info);
2112
2113 return pathnode;
2114}
2115
2116/*
2117 * create_foreignscan_path
2118 * Creates a path corresponding to a scan of a foreign base table,
2119 * returning the pathnode.
2120 *
2121 * This function is never called from core Postgres; rather, it's expected
2122 * to be called by the GetForeignPaths function of a foreign data wrapper.
2123 * We make the FDW supply all fields of the path, since we do not have any way
2124 * to calculate them in core. However, there is a usually-sane default for
2125 * the pathtarget (rel->reltarget), so we let a NULL for "target" select that.
2126 */
2129 PathTarget *target,
2130 double rows, int disabled_nodes,
2131 Cost startup_cost, Cost total_cost,
2132 List *pathkeys,
2134 Path *fdw_outerpath,
2135 List *fdw_restrictinfo,
2136 List *fdw_private)
2137{
2139
2140 /* Historically some FDWs were confused about when to use this */
2141 Assert(IS_SIMPLE_REL(rel));
2142
2143 pathnode->path.pathtype = T_ForeignScan;
2144 pathnode->path.parent = rel;
2145 pathnode->path.pathtarget = target ? target : rel->reltarget;
2146 pathnode->path.param_info = get_baserel_parampathinfo(root, rel,
2148 pathnode->path.parallel_aware = false;
2149 pathnode->path.parallel_safe = rel->consider_parallel;
2150 pathnode->path.parallel_workers = 0;
2151 pathnode->path.rows = rows;
2152 pathnode->path.disabled_nodes = disabled_nodes;
2153 pathnode->path.startup_cost = startup_cost;
2154 pathnode->path.total_cost = total_cost;
2155 pathnode->path.pathkeys = pathkeys;
2156
2157 pathnode->fdw_outerpath = fdw_outerpath;
2158 pathnode->fdw_restrictinfo = fdw_restrictinfo;
2159 pathnode->fdw_private = fdw_private;
2160
2161 return pathnode;
2162}
2163
2164/*
2165 * create_foreign_join_path
2166 * Creates a path corresponding to a scan of a foreign join,
2167 * returning the pathnode.
2168 *
2169 * This function is never called from core Postgres; rather, it's expected
2170 * to be called by the GetForeignJoinPaths function of a foreign data wrapper.
2171 * We make the FDW supply all fields of the path, since we do not have any way
2172 * to calculate them in core. However, there is a usually-sane default for
2173 * the pathtarget (rel->reltarget), so we let a NULL for "target" select that.
2174 */
2177 PathTarget *target,
2178 double rows, int disabled_nodes,
2179 Cost startup_cost, Cost total_cost,
2180 List *pathkeys,
2182 Path *fdw_outerpath,
2183 List *fdw_restrictinfo,
2184 List *fdw_private)
2185{
2187
2188 /*
2189 * We should use get_joinrel_parampathinfo to handle parameterized paths,
2190 * but the API of this function doesn't support it, and existing
2191 * extensions aren't yet trying to build such paths anyway. For the
2192 * moment just throw an error if someone tries it; eventually we should
2193 * revisit this.
2194 */
2196 elog(ERROR, "parameterized foreign joins are not supported yet");
2197
2198 pathnode->path.pathtype = T_ForeignScan;
2199 pathnode->path.parent = rel;
2200 pathnode->path.pathtarget = target ? target : rel->reltarget;
2201 pathnode->path.param_info = NULL; /* XXX see above */
2202 pathnode->path.parallel_aware = false;
2203 pathnode->path.parallel_safe = rel->consider_parallel;
2204 pathnode->path.parallel_workers = 0;
2205 pathnode->path.rows = rows;
2206 pathnode->path.disabled_nodes = disabled_nodes;
2207 pathnode->path.startup_cost = startup_cost;
2208 pathnode->path.total_cost = total_cost;
2209 pathnode->path.pathkeys = pathkeys;
2210
2211 pathnode->fdw_outerpath = fdw_outerpath;
2212 pathnode->fdw_restrictinfo = fdw_restrictinfo;
2213 pathnode->fdw_private = fdw_private;
2214
2215 return pathnode;
2216}
2217
2218/*
2219 * create_foreign_upper_path
2220 * Creates a path corresponding to an upper relation that's computed
2221 * directly by an FDW, returning the pathnode.
2222 *
2223 * This function is never called from core Postgres; rather, it's expected to
2224 * be called by the GetForeignUpperPaths function of a foreign data wrapper.
2225 * We make the FDW supply all fields of the path, since we do not have any way
2226 * to calculate them in core. However, there is a usually-sane default for
2227 * the pathtarget (rel->reltarget), so we let a NULL for "target" select that.
2228 */
2231 PathTarget *target,
2232 double rows, int disabled_nodes,
2233 Cost startup_cost, Cost total_cost,
2234 List *pathkeys,
2235 Path *fdw_outerpath,
2236 List *fdw_restrictinfo,
2237 List *fdw_private)
2238{
2240
2241 /*
2242 * Upper relations should never have any lateral references, since joining
2243 * is complete.
2244 */
2246
2247 pathnode->path.pathtype = T_ForeignScan;
2248 pathnode->path.parent = rel;
2249 pathnode->path.pathtarget = target ? target : rel->reltarget;
2250 pathnode->path.param_info = NULL;
2251 pathnode->path.parallel_aware = false;
2252 pathnode->path.parallel_safe = rel->consider_parallel;
2253 pathnode->path.parallel_workers = 0;
2254 pathnode->path.rows = rows;
2255 pathnode->path.disabled_nodes = disabled_nodes;
2256 pathnode->path.startup_cost = startup_cost;
2257 pathnode->path.total_cost = total_cost;
2258 pathnode->path.pathkeys = pathkeys;
2259
2260 pathnode->fdw_outerpath = fdw_outerpath;
2261 pathnode->fdw_restrictinfo = fdw_restrictinfo;
2262 pathnode->fdw_private = fdw_private;
2263
2264 return pathnode;
2265}
2266
2267/*
2268 * calc_nestloop_required_outer
2269 * Compute the required_outer set for a nestloop join path
2270 *
2271 * Note: when considering a child join, the inputs nonetheless use top-level
2272 * parent relids
2273 *
2274 * Note: result must not share storage with either input
2275 */
2276Relids
2281{
2283
2284 /* inner_path can require rels from outer path, but not vice versa */
2286 /* easy case if inner path is not parameterized */
2287 if (!inner_paramrels)
2288 return bms_copy(outer_paramrels);
2289 /* else, form the union ... */
2291 /* ... and remove any mention of now-satisfied outer rels */
2293 outerrelids);
2294 return required_outer;
2295}
2296
2297/*
2298 * calc_non_nestloop_required_outer
2299 * Compute the required_outer set for a merge or hash join path
2300 *
2301 * Note: result must not share storage with either input
2302 */
2303Relids
2305{
2309 Relids outerrelids PG_USED_FOR_ASSERTS_ONLY;
2311
2312 /*
2313 * Any parameterization of the input paths refers to topmost parents of
2314 * the relevant relations, because reparameterize_path_by_child() hasn't
2315 * been called yet. So we must consider topmost parents of the relations
2316 * being joined, too, while checking for disallowed parameterization
2317 * cases.
2318 */
2319 if (inner_path->parent->top_parent_relids)
2320 innerrelids = inner_path->parent->top_parent_relids;
2321 else
2322 innerrelids = inner_path->parent->relids;
2323
2324 if (outer_path->parent->top_parent_relids)
2325 outerrelids = outer_path->parent->top_parent_relids;
2326 else
2327 outerrelids = outer_path->parent->relids;
2328
2329 /* neither path can require rels from the other */
2331 Assert(!bms_overlap(inner_paramrels, outerrelids));
2332 /* form the union ... */
2334 /* we do not need an explicit test for empty; bms_union gets it right */
2335 return required_outer;
2336}
2337
2338/*
2339 * create_nestloop_path
2340 * Creates a pathnode corresponding to a nestloop join between two
2341 * relations.
2342 *
2343 * 'joinrel' is the join relation.
2344 * 'jointype' is the type of join required
2345 * 'workspace' is the result from initial_cost_nestloop
2346 * 'extra' contains various information about the join
2347 * 'outer_path' is the outer path
2348 * 'inner_path' is the inner path
2349 * 'restrict_clauses' are the RestrictInfo nodes to apply at the join
2350 * 'pathkeys' are the path keys of the new join path
2351 * 'required_outer' is the set of required outer rels
2352 *
2353 * Returns the resulting path node.
2354 */
2355NestPath *
2357 RelOptInfo *joinrel,
2358 JoinType jointype,
2359 JoinCostWorkspace *workspace,
2360 JoinPathExtraData *extra,
2364 List *pathkeys,
2366{
2369 Relids outerrelids;
2370
2371 /*
2372 * Paths are parameterized by top-level parents, so run parameterization
2373 * tests on the parent relids.
2374 */
2375 if (outer_path->parent->top_parent_relids)
2376 outerrelids = outer_path->parent->top_parent_relids;
2377 else
2378 outerrelids = outer_path->parent->relids;
2379
2380 /*
2381 * If the inner path is parameterized by the outer, we must drop any
2382 * restrict_clauses that are due to be moved into the inner path. We have
2383 * to do this now, rather than postpone the work till createplan time,
2384 * because the restrict_clauses list can affect the size and cost
2385 * estimates for this path. We detect such clauses by checking for serial
2386 * number match to clauses already enforced in the inner path.
2387 */
2388 if (bms_overlap(inner_req_outer, outerrelids))
2389 {
2391 List *jclauses = NIL;
2392 ListCell *lc;
2393
2394 foreach(lc, restrict_clauses)
2395 {
2396 RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
2397
2399 jclauses = lappend(jclauses, rinfo);
2400 }
2402 }
2403
2404 pathnode->jpath.path.pathtype = T_NestLoop;
2405 pathnode->jpath.path.parent = joinrel;
2406 pathnode->jpath.path.pathtarget = joinrel->reltarget;
2407 pathnode->jpath.path.param_info =
2409 joinrel,
2410 outer_path,
2411 inner_path,
2412 extra->sjinfo,
2415 pathnode->jpath.path.parallel_aware = false;
2416 pathnode->jpath.path.parallel_safe = joinrel->consider_parallel &&
2417 outer_path->parallel_safe && inner_path->parallel_safe;
2418 /* This is a foolish way to estimate parallel_workers, but for now... */
2419 pathnode->jpath.path.parallel_workers = outer_path->parallel_workers;
2420 pathnode->jpath.path.pathkeys = pathkeys;
2421 pathnode->jpath.jointype = jointype;
2422 pathnode->jpath.inner_unique = extra->inner_unique;
2423 pathnode->jpath.outerjoinpath = outer_path;
2424 pathnode->jpath.innerjoinpath = inner_path;
2425 pathnode->jpath.joinrestrictinfo = restrict_clauses;
2426
2427 final_cost_nestloop(root, pathnode, workspace, extra);
2428
2429 return pathnode;
2430}
2431
2432/*
2433 * create_mergejoin_path
2434 * Creates a pathnode corresponding to a mergejoin join between
2435 * two relations
2436 *
2437 * 'joinrel' is the join relation
2438 * 'jointype' is the type of join required
2439 * 'workspace' is the result from initial_cost_mergejoin
2440 * 'extra' contains various information about the join
2441 * 'outer_path' is the outer path
2442 * 'inner_path' is the inner path
2443 * 'restrict_clauses' are the RestrictInfo nodes to apply at the join
2444 * 'pathkeys' are the path keys of the new join path
2445 * 'required_outer' is the set of required outer rels
2446 * 'mergeclauses' are the RestrictInfo nodes to use as merge clauses
2447 * (this should be a subset of the restrict_clauses list)
2448 * 'outersortkeys' are the sort varkeys for the outer relation
2449 * 'innersortkeys' are the sort varkeys for the inner relation
2450 * 'outer_presorted_keys' is the number of presorted keys of the outer path
2451 */
2452MergePath *
2454 RelOptInfo *joinrel,
2455 JoinType jointype,
2456 JoinCostWorkspace *workspace,
2457 JoinPathExtraData *extra,
2461 List *pathkeys,
2463 List *mergeclauses,
2464 List *outersortkeys,
2465 List *innersortkeys,
2466 int outer_presorted_keys)
2467{
2469
2470 pathnode->jpath.path.pathtype = T_MergeJoin;
2471 pathnode->jpath.path.parent = joinrel;
2472 pathnode->jpath.path.pathtarget = joinrel->reltarget;
2473 pathnode->jpath.path.param_info =
2475 joinrel,
2476 outer_path,
2477 inner_path,
2478 extra->sjinfo,
2481 pathnode->jpath.path.parallel_aware = false;
2482 pathnode->jpath.path.parallel_safe = joinrel->consider_parallel &&
2483 outer_path->parallel_safe && inner_path->parallel_safe;
2484 /* This is a foolish way to estimate parallel_workers, but for now... */
2485 pathnode->jpath.path.parallel_workers = outer_path->parallel_workers;
2486 pathnode->jpath.path.pathkeys = pathkeys;
2487 pathnode->jpath.jointype = jointype;
2488 pathnode->jpath.inner_unique = extra->inner_unique;
2489 pathnode->jpath.outerjoinpath = outer_path;
2490 pathnode->jpath.innerjoinpath = inner_path;
2491 pathnode->jpath.joinrestrictinfo = restrict_clauses;
2492 pathnode->path_mergeclauses = mergeclauses;
2493 pathnode->outersortkeys = outersortkeys;
2494 pathnode->innersortkeys = innersortkeys;
2495 pathnode->outer_presorted_keys = outer_presorted_keys;
2496 /* pathnode->skip_mark_restore will be set by final_cost_mergejoin */
2497 /* pathnode->materialize_inner will be set by final_cost_mergejoin */
2498
2499 final_cost_mergejoin(root, pathnode, workspace, extra);
2500
2501 return pathnode;
2502}
2503
2504/*
2505 * create_hashjoin_path
2506 * Creates a pathnode corresponding to a hash join between two relations.
2507 *
2508 * 'joinrel' is the join relation
2509 * 'jointype' is the type of join required
2510 * 'workspace' is the result from initial_cost_hashjoin
2511 * 'extra' contains various information about the join
2512 * 'outer_path' is the cheapest outer path
2513 * 'inner_path' is the cheapest inner path
2514 * 'parallel_hash' to select Parallel Hash of inner path (shared hash table)
2515 * 'restrict_clauses' are the RestrictInfo nodes to apply at the join
2516 * 'required_outer' is the set of required outer rels
2517 * 'hashclauses' are the RestrictInfo nodes to use as hash clauses
2518 * (this should be a subset of the restrict_clauses list)
2519 */
2520HashPath *
2522 RelOptInfo *joinrel,
2523 JoinType jointype,
2524 JoinCostWorkspace *workspace,
2525 JoinPathExtraData *extra,
2528 bool parallel_hash,
2531 List *hashclauses)
2532{
2534
2535 pathnode->jpath.path.pathtype = T_HashJoin;
2536 pathnode->jpath.path.parent = joinrel;
2537 pathnode->jpath.path.pathtarget = joinrel->reltarget;
2538 pathnode->jpath.path.param_info =
2540 joinrel,
2541 outer_path,
2542 inner_path,
2543 extra->sjinfo,
2546 pathnode->jpath.path.parallel_aware =
2547 joinrel->consider_parallel && parallel_hash;
2548 pathnode->jpath.path.parallel_safe = joinrel->consider_parallel &&
2549 outer_path->parallel_safe && inner_path->parallel_safe;
2550 /* This is a foolish way to estimate parallel_workers, but for now... */
2551 pathnode->jpath.path.parallel_workers = outer_path->parallel_workers;
2552
2553 /*
2554 * A hashjoin never has pathkeys, since its output ordering is
2555 * unpredictable due to possible batching. XXX If the inner relation is
2556 * small enough, we could instruct the executor that it must not batch,
2557 * and then we could assume that the output inherits the outer relation's
2558 * ordering, which might save a sort step. However there is considerable
2559 * downside if our estimate of the inner relation size is badly off. For
2560 * the moment we don't risk it. (Note also that if we wanted to take this
2561 * seriously, joinpath.c would have to consider many more paths for the
2562 * outer rel than it does now.)
2563 */
2564 pathnode->jpath.path.pathkeys = NIL;
2565 pathnode->jpath.jointype = jointype;
2566 pathnode->jpath.inner_unique = extra->inner_unique;
2567 pathnode->jpath.outerjoinpath = outer_path;
2568 pathnode->jpath.innerjoinpath = inner_path;
2569 pathnode->jpath.joinrestrictinfo = restrict_clauses;
2570 pathnode->path_hashclauses = hashclauses;
2571 /* final_cost_hashjoin will fill in pathnode->num_batches */
2572
2573 final_cost_hashjoin(root, pathnode, workspace, extra);
2574
2575 return pathnode;
2576}
2577
2578/*
2579 * create_projection_path
2580 * Creates a pathnode that represents performing a projection.
2581 *
2582 * 'rel' is the parent relation associated with the result
2583 * 'subpath' is the path representing the source of data
2584 * 'target' is the PathTarget to be computed
2585 */
2588 RelOptInfo *rel,
2589 Path *subpath,
2590 PathTarget *target)
2591{
2594
2595 /*
2596 * We mustn't put a ProjectionPath directly above another; it's useless
2597 * and will confuse create_projection_plan. Rather than making sure all
2598 * callers handle that, let's implement it here, by stripping off any
2599 * ProjectionPath in what we're given. Given this rule, there won't be
2600 * more than one.
2601 */
2603 {
2605
2606 Assert(subpp->path.parent == rel);
2607 subpath = subpp->subpath;
2609 }
2610
2611 pathnode->path.pathtype = T_Result;
2612 pathnode->path.parent = rel;
2613 pathnode->path.pathtarget = target;
2614 pathnode->path.param_info = subpath->param_info;
2615 pathnode->path.parallel_aware = false;
2616 pathnode->path.parallel_safe = rel->consider_parallel &&
2617 subpath->parallel_safe &&
2618 is_parallel_safe(root, (Node *) target->exprs);
2619 pathnode->path.parallel_workers = subpath->parallel_workers;
2620 /* Projection does not change the sort order */
2621 pathnode->path.pathkeys = subpath->pathkeys;
2622
2623 pathnode->subpath = subpath;
2624
2625 /*
2626 * We might not need a separate Result node. If the input plan node type
2627 * can project, we can just tell it to project something else. Or, if it
2628 * can't project but the desired target has the same expression list as
2629 * what the input will produce anyway, we can still give it the desired
2630 * tlist (possibly changing its ressortgroupref labels, but nothing else).
2631 * Note: in the latter case, create_projection_plan has to recheck our
2632 * conclusion; see comments therein.
2633 */
2634 oldtarget = subpath->pathtarget;
2636 equal(oldtarget->exprs, target->exprs))
2637 {
2638 /* No separate Result node needed */
2639 pathnode->dummypp = true;
2640
2641 /*
2642 * Set cost of plan as subpath's cost, adjusted for tlist replacement.
2643 */
2644 pathnode->path.rows = subpath->rows;
2645 pathnode->path.disabled_nodes = subpath->disabled_nodes;
2646 pathnode->path.startup_cost = subpath->startup_cost +
2647 (target->cost.startup - oldtarget->cost.startup);
2648 pathnode->path.total_cost = subpath->total_cost +
2649 (target->cost.startup - oldtarget->cost.startup) +
2650 (target->cost.per_tuple - oldtarget->cost.per_tuple) * subpath->rows;
2651 }
2652 else
2653 {
2654 /* We really do need the Result node */
2655 pathnode->dummypp = false;
2656
2657 /*
2658 * The Result node's cost is cpu_tuple_cost per row, plus the cost of
2659 * evaluating the tlist. There is no qual to worry about.
2660 */
2661 pathnode->path.rows = subpath->rows;
2662 pathnode->path.disabled_nodes = subpath->disabled_nodes;
2663 pathnode->path.startup_cost = subpath->startup_cost +
2664 target->cost.startup;
2665 pathnode->path.total_cost = subpath->total_cost +
2666 target->cost.startup +
2667 (cpu_tuple_cost + target->cost.per_tuple) * subpath->rows;
2668 }
2669
2670 return pathnode;
2671}
2672
2673/*
2674 * apply_projection_to_path
2675 * Add a projection step, or just apply the target directly to given path.
2676 *
2677 * This has the same net effect as create_projection_path(), except that if
2678 * a separate Result plan node isn't needed, we just replace the given path's
2679 * pathtarget with the desired one. This must be used only when the caller
2680 * knows that the given path isn't referenced elsewhere and so can be modified
2681 * in-place.
2682 *
2683 * If the input path is a GatherPath or GatherMergePath, we try to push the
2684 * new target down to its input as well; this is a yet more invasive
2685 * modification of the input path, which create_projection_path() can't do.
2686 *
2687 * Note that we mustn't change the source path's parent link; so when it is
2688 * add_path'd to "rel" things will be a bit inconsistent. So far that has
2689 * not caused any trouble.
2690 *
2691 * 'rel' is the parent relation associated with the result
2692 * 'path' is the path representing the source of data
2693 * 'target' is the PathTarget to be computed
2694 */
2695Path *
2697 RelOptInfo *rel,
2698 Path *path,
2699 PathTarget *target)
2700{
2702
2703 /*
2704 * If given path can't project, we might need a Result node, so make a
2705 * separate ProjectionPath.
2706 */
2707 if (!is_projection_capable_path(path))
2708 return (Path *) create_projection_path(root, rel, path, target);
2709
2710 /*
2711 * We can just jam the desired tlist into the existing path, being sure to
2712 * update its cost estimates appropriately.
2713 */
2714 oldcost = path->pathtarget->cost;
2715 path->pathtarget = target;
2716
2717 path->startup_cost += target->cost.startup - oldcost.startup;
2718 path->total_cost += target->cost.startup - oldcost.startup +
2719 (target->cost.per_tuple - oldcost.per_tuple) * path->rows;
2720
2721 /*
2722 * If the path happens to be a Gather or GatherMerge path, we'd like to
2723 * arrange for the subpath to return the required target list so that
2724 * workers can help project. But if there is something that is not
2725 * parallel-safe in the target expressions, then we can't.
2726 */
2727 if ((IsA(path, GatherPath) || IsA(path, GatherMergePath)) &&
2728 is_parallel_safe(root, (Node *) target->exprs))
2729 {
2730 /*
2731 * We always use create_projection_path here, even if the subpath is
2732 * projection-capable, so as to avoid modifying the subpath in place.
2733 * It seems unlikely at present that there could be any other
2734 * references to the subpath, but better safe than sorry.
2735 *
2736 * Note that we don't change the parallel path's cost estimates; it
2737 * might be appropriate to do so, to reflect the fact that the bulk of
2738 * the target evaluation will happen in workers.
2739 */
2740 if (IsA(path, GatherPath))
2741 {
2742 GatherPath *gpath = (GatherPath *) path;
2743
2744 gpath->subpath = (Path *)
2746 gpath->subpath->parent,
2747 gpath->subpath,
2748 target);
2749 }
2750 else
2751 {
2753
2754 gmpath->subpath = (Path *)
2756 gmpath->subpath->parent,
2757 gmpath->subpath,
2758 target);
2759 }
2760 }
2761 else if (path->parallel_safe &&
2762 !is_parallel_safe(root, (Node *) target->exprs))
2763 {
2764 /*
2765 * We're inserting a parallel-restricted target list into a path
2766 * currently marked parallel-safe, so we have to mark it as no longer
2767 * safe.
2768 */
2769 path->parallel_safe = false;
2770 }
2771
2772 return path;
2773}
2774
2775/*
2776 * create_set_projection_path
2777 * Creates a pathnode that represents performing a projection that
2778 * includes set-returning functions.
2779 *
2780 * 'rel' is the parent relation associated with the result
2781 * 'subpath' is the path representing the source of data
2782 * 'target' is the PathTarget to be computed
2783 */
2786 RelOptInfo *rel,
2787 Path *subpath,
2788 PathTarget *target)
2789{
2791 double tlist_rows;
2792 ListCell *lc;
2793
2794 pathnode->path.pathtype = T_ProjectSet;
2795 pathnode->path.parent = rel;
2796 pathnode->path.pathtarget = target;
2797 /* For now, assume we are above any joins, so no parameterization */
2798 pathnode->path.param_info = NULL;
2799 pathnode->path.parallel_aware = false;
2800 pathnode->path.parallel_safe = rel->consider_parallel &&
2801 subpath->parallel_safe &&
2802 is_parallel_safe(root, (Node *) target->exprs);
2803 pathnode->path.parallel_workers = subpath->parallel_workers;
2804 /* Projection does not change the sort order XXX? */
2805 pathnode->path.pathkeys = subpath->pathkeys;
2806
2807 pathnode->subpath = subpath;
2808
2809 /*
2810 * Estimate number of rows produced by SRFs for each row of input; if
2811 * there's more than one in this node, use the maximum.
2812 */
2813 tlist_rows = 1;
2814 foreach(lc, target->exprs)
2815 {
2816 Node *node = (Node *) lfirst(lc);
2817 double itemrows;
2818
2820 if (tlist_rows < itemrows)
2822 }
2823
2824 /*
2825 * In addition to the cost of evaluating the tlist, charge cpu_tuple_cost
2826 * per input row, and half of cpu_tuple_cost for each added output row.
2827 * This is slightly bizarre maybe, but it's what 9.6 did; we may revisit
2828 * this estimate later.
2829 */
2830 pathnode->path.disabled_nodes = subpath->disabled_nodes;
2831 pathnode->path.rows = subpath->rows * tlist_rows;
2832 pathnode->path.startup_cost = subpath->startup_cost +
2833 target->cost.startup;
2834 pathnode->path.total_cost = subpath->total_cost +
2835 target->cost.startup +
2836 (cpu_tuple_cost + target->cost.per_tuple) * subpath->rows +
2837 (pathnode->path.rows - subpath->rows) * cpu_tuple_cost / 2;
2838
2839 return pathnode;
2840}
2841
2842/*
2843 * create_incremental_sort_path
2844 * Creates a pathnode that represents performing an incremental sort.
2845 *
2846 * 'rel' is the parent relation associated with the result
2847 * 'subpath' is the path representing the source of data
2848 * 'pathkeys' represents the desired sort order
2849 * 'presorted_keys' is the number of keys by which the input path is
2850 * already sorted
2851 * 'limit_tuples' is the estimated bound on the number of output tuples,
2852 * or -1 if no LIMIT or couldn't estimate
2853 */
2856 RelOptInfo *rel,
2857 Path *subpath,
2858 List *pathkeys,
2859 int presorted_keys,
2860 double limit_tuples)
2861{
2863 SortPath *pathnode = &sort->spath;
2864
2866 pathnode->path.parent = rel;
2867 /* Sort doesn't project, so use source path's pathtarget */
2868 pathnode->path.pathtarget = subpath->pathtarget;
2869 pathnode->path.param_info = subpath->param_info;
2870 pathnode->path.parallel_aware = false;
2871 pathnode->path.parallel_safe = rel->consider_parallel &&
2872 subpath->parallel_safe;
2873 pathnode->path.parallel_workers = subpath->parallel_workers;
2874 pathnode->path.pathkeys = pathkeys;
2875
2876 pathnode->subpath = subpath;
2877
2879 root, pathkeys, presorted_keys,
2880 subpath->disabled_nodes,
2881 subpath->startup_cost,
2882 subpath->total_cost,
2883 subpath->rows,
2884 subpath->pathtarget->width,
2885 0.0, /* XXX comparison_cost shouldn't be 0? */
2886 work_mem, limit_tuples);
2887
2888 sort->nPresortedCols = presorted_keys;
2889
2890 return sort;
2891}
2892
2893/*
2894 * create_sort_path
2895 * Creates a pathnode that represents performing an explicit sort.
2896 *
2897 * 'rel' is the parent relation associated with the result
2898 * 'subpath' is the path representing the source of data
2899 * 'pathkeys' represents the desired sort order
2900 * 'limit_tuples' is the estimated bound on the number of output tuples,
2901 * or -1 if no LIMIT or couldn't estimate
2902 */
2903SortPath *
2905 RelOptInfo *rel,
2906 Path *subpath,
2907 List *pathkeys,
2908 double limit_tuples)
2909{
2911
2912 pathnode->path.pathtype = T_Sort;
2913 pathnode->path.parent = rel;
2914 /* Sort doesn't project, so use source path's pathtarget */
2915 pathnode->path.pathtarget = subpath->pathtarget;
2916 pathnode->path.param_info = subpath->param_info;
2917 pathnode->path.parallel_aware = false;
2918 pathnode->path.parallel_safe = rel->consider_parallel &&
2919 subpath->parallel_safe;
2920 pathnode->path.parallel_workers = subpath->parallel_workers;
2921 pathnode->path.pathkeys = pathkeys;
2922
2923 pathnode->subpath = subpath;
2924
2925 cost_sort(&pathnode->path, root, pathkeys,
2926 subpath->disabled_nodes,
2927 subpath->total_cost,
2928 subpath->rows,
2929 subpath->pathtarget->width,
2930 0.0, /* XXX comparison_cost shouldn't be 0? */
2931 work_mem, limit_tuples);
2932
2933 return pathnode;
2934}
2935
2936/*
2937 * create_group_path
2938 * Creates a pathnode that represents performing grouping of presorted input
2939 *
2940 * 'rel' is the parent relation associated with the result
2941 * 'subpath' is the path representing the source of data
2942 * 'target' is the PathTarget to be computed
2943 * 'groupClause' is a list of SortGroupClause's representing the grouping
2944 * 'qual' is the HAVING quals if any
2945 * 'numGroups' is the estimated number of groups
2946 */
2947GroupPath *
2949 RelOptInfo *rel,
2950 Path *subpath,
2951 List *groupClause,
2952 List *qual,
2953 double numGroups)
2954{
2956 PathTarget *target = rel->reltarget;
2957
2958 pathnode->path.pathtype = T_Group;
2959 pathnode->path.parent = rel;
2960 pathnode->path.pathtarget = target;
2961 /* For now, assume we are above any joins, so no parameterization */
2962 pathnode->path.param_info = NULL;
2963 pathnode->path.parallel_aware = false;
2964 pathnode->path.parallel_safe = rel->consider_parallel &&
2965 subpath->parallel_safe;
2966 pathnode->path.parallel_workers = subpath->parallel_workers;
2967 /* Group doesn't change sort ordering */
2968 pathnode->path.pathkeys = subpath->pathkeys;
2969
2970 pathnode->subpath = subpath;
2971
2972 pathnode->groupClause = groupClause;
2973 pathnode->qual = qual;
2974
2975 cost_group(&pathnode->path, root,
2976 list_length(groupClause),
2977 numGroups,
2978 qual,
2979 subpath->disabled_nodes,
2980 subpath->startup_cost, subpath->total_cost,
2981 subpath->rows);
2982
2983 /* add tlist eval cost for each output row */
2984 pathnode->path.startup_cost += target->cost.startup;
2985 pathnode->path.total_cost += target->cost.startup +
2986 target->cost.per_tuple * pathnode->path.rows;
2987
2988 return pathnode;
2989}
2990
2991/*
2992 * create_unique_path
2993 * Creates a pathnode that represents performing an explicit Unique step
2994 * on presorted input.
2995 *
2996 * 'rel' is the parent relation associated with the result
2997 * 'subpath' is the path representing the source of data
2998 * 'numCols' is the number of grouping columns
2999 * 'numGroups' is the estimated number of groups
3000 *
3001 * The input path must be sorted on the grouping columns, plus possibly
3002 * additional columns; so the first numCols pathkeys are the grouping columns
3003 */
3004UniquePath *
3006 RelOptInfo *rel,
3007 Path *subpath,
3008 int numCols,
3009 double numGroups)
3010{
3012
3013 pathnode->path.pathtype = T_Unique;
3014 pathnode->path.parent = rel;
3015 /* Unique doesn't project, so use source path's pathtarget */
3016 pathnode->path.pathtarget = subpath->pathtarget;
3017 pathnode->path.param_info = subpath->param_info;
3018 pathnode->path.parallel_aware = false;
3019 pathnode->path.parallel_safe = rel->consider_parallel &&
3020 subpath->parallel_safe;
3021 pathnode->path.parallel_workers = subpath->parallel_workers;
3022 /* Unique doesn't change the input ordering */
3023 pathnode->path.pathkeys = subpath->pathkeys;
3024
3025 pathnode->subpath = subpath;
3026 pathnode->numkeys = numCols;
3027
3028 /*
3029 * Charge one cpu_operator_cost per comparison per input tuple. We assume
3030 * all columns get compared at most of the tuples. (XXX probably this is
3031 * an overestimate.)
3032 */
3033 pathnode->path.disabled_nodes = subpath->disabled_nodes;
3034 pathnode->path.startup_cost = subpath->startup_cost;
3035 pathnode->path.total_cost = subpath->total_cost +
3036 cpu_operator_cost * subpath->rows * numCols;
3037 pathnode->path.rows = numGroups;
3038
3039 /*
3040 * Mark the path as disabled if enable_groupagg is off. While this isn't
3041 * a grouping Agg node, it is the sort-based way of removing duplicates
3042 * and so is the natural counterpart to the AGG_HASHED path that
3043 * enable_hashagg controls; it seems close enough to justify letting that
3044 * switch control it.
3045 */
3046 if (!enable_groupagg)
3047 pathnode->path.disabled_nodes++;
3048
3049 return pathnode;
3050}
3051
3052/*
3053 * create_agg_path
3054 * Creates a pathnode that represents performing aggregation/grouping
3055 *
3056 * 'rel' is the parent relation associated with the result
3057 * 'subpath' is the path representing the source of data
3058 * 'target' is the PathTarget to be computed
3059 * 'aggstrategy' is the Agg node's basic implementation strategy
3060 * 'aggsplit' is the Agg node's aggregate-splitting mode
3061 * 'groupClause' is a list of SortGroupClause's representing the grouping
3062 * 'qual' is the HAVING quals if any
3063 * 'aggcosts' contains cost info about the aggregate functions to be computed
3064 * 'numGroups' is the estimated number of groups (1 if not grouping)
3065 */
3066AggPath *
3068 RelOptInfo *rel,
3069 Path *subpath,
3070 PathTarget *target,
3071 AggStrategy aggstrategy,
3072 AggSplit aggsplit,
3073 List *groupClause,
3074 List *qual,
3075 const AggClauseCosts *aggcosts,
3076 double numGroups)
3077{
3079
3080 pathnode->path.pathtype = T_Agg;
3081 pathnode->path.parent = rel;
3082 pathnode->path.pathtarget = target;
3083 pathnode->path.param_info = subpath->param_info;
3084 pathnode->path.parallel_aware = false;
3085 pathnode->path.parallel_safe = rel->consider_parallel &&
3086 subpath->parallel_safe;
3087 pathnode->path.parallel_workers = subpath->parallel_workers;
3088
3089 if (aggstrategy == AGG_SORTED)
3090 {
3091 /*
3092 * Attempt to preserve the order of the subpath. Additional pathkeys
3093 * may have been added in adjust_group_pathkeys_for_groupagg() to
3094 * support ORDER BY / DISTINCT aggregates. Pathkeys added there
3095 * belong to columns within the aggregate function, so we must strip
3096 * these additional pathkeys off as those columns are unavailable
3097 * above the aggregate node.
3098 */
3099 if (list_length(subpath->pathkeys) > root->num_groupby_pathkeys)
3100 pathnode->path.pathkeys = list_copy_head(subpath->pathkeys,
3101 root->num_groupby_pathkeys);
3102 else
3103 pathnode->path.pathkeys = subpath->pathkeys; /* preserves order */
3104 }
3105 else
3106 pathnode->path.pathkeys = NIL; /* output is unordered */
3107
3108 pathnode->subpath = subpath;
3109
3110 pathnode->aggstrategy = aggstrategy;
3111 pathnode->aggsplit = aggsplit;
3112 pathnode->numGroups = numGroups;
3113 pathnode->transitionSpace = aggcosts ? aggcosts->transitionSpace : 0;
3114 pathnode->groupClause = groupClause;
3115 pathnode->qual = qual;
3116
3117 cost_agg(&pathnode->path, root,
3118 aggstrategy, aggcosts,
3119 list_length(groupClause), numGroups,
3120 qual,
3121 subpath->disabled_nodes,
3122 subpath->startup_cost, subpath->total_cost,
3123 subpath->rows, subpath->pathtarget->width);
3124
3125 /* add tlist eval cost for each output row */
3126 pathnode->path.startup_cost += target->cost.startup;
3127 pathnode->path.total_cost += target->cost.startup +
3128 target->cost.per_tuple * pathnode->path.rows;
3129
3130 return pathnode;
3131}
3132
3133/*
3134 * create_groupingsets_path
3135 * Creates a pathnode that represents performing GROUPING SETS aggregation
3136 *
3137 * GroupingSetsPath represents sorted grouping with one or more grouping sets.
3138 * The input path's result must be sorted to match the last entry in
3139 * rollup_groupclauses.
3140 *
3141 * 'rel' is the parent relation associated with the result
3142 * 'subpath' is the path representing the source of data
3143 * 'target' is the PathTarget to be computed
3144 * 'having_qual' is the HAVING quals if any
3145 * 'rollups' is a list of RollupData nodes
3146 * 'agg_costs' contains cost info about the aggregate functions to be computed
3147 */
3150 RelOptInfo *rel,
3151 Path *subpath,
3153 AggStrategy aggstrategy,
3154 List *rollups,
3156{
3158 PathTarget *target = rel->reltarget;
3159 ListCell *lc;
3160 bool is_first = true;
3161 bool is_first_sort = true;
3162
3163 /* The topmost generated Plan node will be an Agg */
3164 pathnode->path.pathtype = T_Agg;
3165 pathnode->path.parent = rel;
3166 pathnode->path.pathtarget = target;
3167 pathnode->path.param_info = subpath->param_info;
3168 pathnode->path.parallel_aware = false;
3169 pathnode->path.parallel_safe = rel->consider_parallel &&
3170 subpath->parallel_safe;
3171 pathnode->path.parallel_workers = subpath->parallel_workers;
3172 pathnode->subpath = subpath;
3173
3174 /*
3175 * Simplify callers by downgrading AGG_SORTED to AGG_PLAIN, and AGG_MIXED
3176 * to AGG_HASHED, here if possible.
3177 */
3178 if (aggstrategy == AGG_SORTED &&
3179 list_length(rollups) == 1 &&
3180 ((RollupData *) linitial(rollups))->groupClause == NIL)
3181 aggstrategy = AGG_PLAIN;
3182
3183 if (aggstrategy == AGG_MIXED &&
3184 list_length(rollups) == 1)
3185 aggstrategy = AGG_HASHED;
3186
3187 /*
3188 * Output will be in sorted order by group_pathkeys if, and only if, there
3189 * is a single rollup operation on a non-empty list of grouping
3190 * expressions.
3191 */
3192 if (aggstrategy == AGG_SORTED && list_length(rollups) == 1)
3193 pathnode->path.pathkeys = root->group_pathkeys;
3194 else
3195 pathnode->path.pathkeys = NIL;
3196
3197 pathnode->aggstrategy = aggstrategy;
3198 pathnode->rollups = rollups;
3199 pathnode->qual = having_qual;
3200 pathnode->transitionSpace = agg_costs ? agg_costs->transitionSpace : 0;
3201
3202 Assert(rollups != NIL);
3203 Assert(aggstrategy != AGG_PLAIN || list_length(rollups) == 1);
3204 Assert(aggstrategy != AGG_MIXED || list_length(rollups) > 1);
3205
3206 foreach(lc, rollups)
3207 {
3209 List *gsets = rollup->gsets;
3210 int numGroupCols = list_length(linitial(gsets));
3211
3212 /*
3213 * In AGG_SORTED or AGG_PLAIN mode, the first rollup takes the
3214 * (already-sorted) input, and following ones do their own sort.
3215 *
3216 * In AGG_HASHED mode, there is one rollup for each grouping set.
3217 *
3218 * In AGG_MIXED mode, the first rollups are hashed, the first
3219 * non-hashed one takes the (already-sorted) input, and following ones
3220 * do their own sort.
3221 */
3222 if (is_first)
3223 {
3224 cost_agg(&pathnode->path, root,
3225 aggstrategy,
3226 agg_costs,
3228 rollup->numGroups,
3230 subpath->disabled_nodes,
3231 subpath->startup_cost,
3232 subpath->total_cost,
3233 subpath->rows,
3234 subpath->pathtarget->width);
3235 is_first = false;
3236 if (!rollup->is_hashed)
3237 is_first_sort = false;
3238 }
3239 else
3240 {
3241 Path sort_path; /* dummy for result of cost_sort */
3242 Path agg_path; /* dummy for result of cost_agg */
3243
3244 if (rollup->is_hashed || is_first_sort)
3245 {
3246 /*
3247 * Account for cost of aggregation, but don't charge input
3248 * cost again
3249 */
3251 rollup->is_hashed ? AGG_HASHED : AGG_SORTED,
3252 agg_costs,
3254 rollup->numGroups,
3256 0, 0.0, 0.0,
3257 subpath->rows,
3258 subpath->pathtarget->width);
3259 if (!rollup->is_hashed)
3260 is_first_sort = false;
3261 }
3262 else
3263 {
3264 /* Account for cost of sort, but don't charge input cost again */
3266 0.0,
3267 subpath->rows,
3268 subpath->pathtarget->width,
3269 0.0,
3270 work_mem,
3271 -1.0);
3272
3273 /* Account for cost of aggregation */
3274
3276 AGG_SORTED,
3277 agg_costs,
3279 rollup->numGroups,
3281 sort_path.disabled_nodes,
3282 sort_path.startup_cost,
3283 sort_path.total_cost,
3284 sort_path.rows,
3285 subpath->pathtarget->width);
3286 }
3287
3288 pathnode->path.disabled_nodes += agg_path.disabled_nodes;
3289 pathnode->path.total_cost += agg_path.total_cost;
3290 pathnode->path.rows += agg_path.rows;
3291 }
3292 }
3293
3294 /* add tlist eval cost for each output row */
3295 pathnode->path.startup_cost += target->cost.startup;
3296 pathnode->path.total_cost += target->cost.startup +
3297 target->cost.per_tuple * pathnode->path.rows;
3298
3299 return pathnode;
3300}
3301
3302/*
3303 * create_minmaxagg_path
3304 * Creates a pathnode that represents computation of MIN/MAX aggregates
3305 *
3306 * 'rel' is the parent relation associated with the result
3307 * 'target' is the PathTarget to be computed
3308 * 'mmaggregates' is a list of MinMaxAggInfo structs
3309 * 'quals' is the HAVING quals if any
3310 */
3313 RelOptInfo *rel,
3314 PathTarget *target,
3315 List *mmaggregates,
3316 List *quals)
3317{
3321 ListCell *lc;
3322
3323 /* The topmost generated Plan node will be a Result */
3324 pathnode->path.pathtype = T_Result;
3325 pathnode->path.parent = rel;
3326 pathnode->path.pathtarget = target;
3327 /* For now, assume we are above any joins, so no parameterization */
3328 pathnode->path.param_info = NULL;
3329 pathnode->path.parallel_aware = false;
3330 pathnode->path.parallel_safe = true; /* might change below */
3331 pathnode->path.parallel_workers = 0;
3332 /* Result is one unordered row */
3333 pathnode->path.rows = 1;
3334 pathnode->path.pathkeys = NIL;
3335
3336 pathnode->mmaggregates = mmaggregates;
3337 pathnode->quals = quals;
3338
3339 /* Calculate cost of all the initplans, and check parallel safety */
3340 initplan_cost = 0;
3341 foreach(lc, mmaggregates)
3342 {
3344
3346 initplan_cost += mminfo->pathcost;
3347 if (!mminfo->path->parallel_safe)
3348 pathnode->path.parallel_safe = false;
3349 }
3350
3351 /* add tlist eval cost for each output row, plus cpu_tuple_cost */
3352 pathnode->path.disabled_nodes = initplan_disabled_nodes;
3353 pathnode->path.startup_cost = initplan_cost + target->cost.startup;
3354 pathnode->path.total_cost = initplan_cost + target->cost.startup +
3355 target->cost.per_tuple + cpu_tuple_cost;
3356
3357 /*
3358 * Add cost of qual, if any --- but we ignore its selectivity, since our
3359 * rowcount estimate should be 1 no matter what the qual is.
3360 */
3361 if (quals)
3362 {
3364
3365 cost_qual_eval(&qual_cost, quals, root);
3366 pathnode->path.startup_cost += qual_cost.startup;
3367 pathnode->path.total_cost += qual_cost.startup + qual_cost.per_tuple;
3368 }
3369
3370 /*
3371 * If the initplans were all parallel-safe, also check safety of the
3372 * target and quals. (The Result node itself isn't parallelizable, but if
3373 * we are in a subquery then it can be useful for the outer query to know
3374 * that this one is parallel-safe.)
3375 */
3376 if (pathnode->path.parallel_safe)
3377 pathnode->path.parallel_safe =
3378 is_parallel_safe(root, (Node *) target->exprs) &&
3379 is_parallel_safe(root, (Node *) quals);
3380
3381 return pathnode;
3382}
3383
3384/*
3385 * create_windowagg_path
3386 * Creates a pathnode that represents computation of window functions
3387 *
3388 * 'rel' is the parent relation associated with the result
3389 * 'subpath' is the path representing the source of data
3390 * 'target' is the PathTarget to be computed
3391 * 'windowFuncs' is a list of WindowFunc structs
3392 * 'runCondition' is a list of OpExprs to short-circuit WindowAgg execution
3393 * 'winclause' is a WindowClause that is common to all the WindowFuncs
3394 * 'qual' WindowClause.runconditions from lower-level WindowAggPaths.
3395 * Must always be NIL when topwindow == false
3396 * 'topwindow' pass as true only for the top-level WindowAgg. False for all
3397 * intermediate WindowAggs.
3398 *
3399 * The input must be sorted according to the WindowClause's PARTITION keys
3400 * plus ORDER BY keys.
3401 */
3404 RelOptInfo *rel,
3405 Path *subpath,
3406 PathTarget *target,
3407 List *windowFuncs,
3408 List *runCondition,
3409 WindowClause *winclause,
3410 List *qual,
3411 bool topwindow)
3412{
3414
3415 /* qual can only be set for the topwindow */
3416 Assert(qual == NIL || topwindow);
3417
3418 pathnode->path.pathtype = T_WindowAgg;
3419 pathnode->path.parent = rel;
3420 pathnode->path.pathtarget = target;
3421 /* For now, assume we are above any joins, so no parameterization */
3422 pathnode->path.param_info = NULL;
3423 pathnode->path.parallel_aware = false;
3424 pathnode->path.parallel_safe = rel->consider_parallel &&
3425 subpath->parallel_safe;
3426 pathnode->path.parallel_workers = subpath->parallel_workers;
3427 /* WindowAgg preserves the input sort order */
3428 pathnode->path.pathkeys = subpath->pathkeys;
3429
3430 pathnode->subpath = subpath;
3431 pathnode->winclause = winclause;
3432 pathnode->qual = qual;
3433 pathnode->runCondition = runCondition;
3434 pathnode->topwindow = topwindow;
3435
3436 /*
3437 * For costing purposes, assume that there are no redundant partitioning
3438 * or ordering columns; it's not worth the trouble to deal with that
3439 * corner case here. So we just pass the unmodified list lengths to
3440 * cost_windowagg.
3441 */
3443 windowFuncs,
3444 winclause,
3445 subpath->disabled_nodes,
3446 subpath->startup_cost,
3447 subpath->total_cost,
3448 subpath->rows);
3449
3450 /* add tlist eval cost for each output row */
3451 pathnode->path.startup_cost += target->cost.startup;
3452 pathnode->path.total_cost += target->cost.startup +
3453 target->cost.per_tuple * pathnode->path.rows;
3454
3455 return pathnode;
3456}
3457
3458/*
3459 * create_setop_path
3460 * Creates a pathnode that represents computation of INTERSECT or EXCEPT
3461 *
3462 * 'rel' is the parent relation associated with the result
3463 * 'leftpath' is the path representing the left-hand source of data
3464 * 'rightpath' is the path representing the right-hand source of data
3465 * 'cmd' is the specific semantics (INTERSECT or EXCEPT, with/without ALL)
3466 * 'strategy' is the implementation strategy (sorted or hashed)
3467 * 'groupList' is a list of SortGroupClause's representing the grouping
3468 * 'numGroups' is the estimated number of distinct groups in left-hand input
3469 * 'outputRows' is the estimated number of output rows
3470 *
3471 * leftpath and rightpath must produce the same columns. Moreover, if
3472 * strategy is SETOP_SORTED, leftpath and rightpath must both be sorted
3473 * by all the grouping columns.
3474 */
3475SetOpPath *
3477 RelOptInfo *rel,
3478 Path *leftpath,
3479 Path *rightpath,
3480 SetOpCmd cmd,
3481 SetOpStrategy strategy,
3482 List *groupList,
3483 double numGroups,
3484 double outputRows)
3485{
3487
3488 pathnode->path.pathtype = T_SetOp;
3489 pathnode->path.parent = rel;
3490 pathnode->path.pathtarget = rel->reltarget;
3491 /* For now, assume we are above any joins, so no parameterization */
3492 pathnode->path.param_info = NULL;
3493 pathnode->path.parallel_aware = false;
3494 pathnode->path.parallel_safe = rel->consider_parallel &&
3495 leftpath->parallel_safe && rightpath->parallel_safe;
3496 pathnode->path.parallel_workers =
3497 leftpath->parallel_workers + rightpath->parallel_workers;
3498 /* SetOp preserves the input sort order if in sort mode */
3499 pathnode->path.pathkeys =
3500 (strategy == SETOP_SORTED) ? leftpath->pathkeys : NIL;
3501
3502 pathnode->leftpath = leftpath;
3503 pathnode->rightpath = rightpath;
3504 pathnode->cmd = cmd;
3505 pathnode->strategy = strategy;
3506 pathnode->groupList = groupList;
3507 pathnode->numGroups = numGroups;
3508
3509 /*
3510 * Compute cost estimates. As things stand, we end up with the same total
3511 * cost in this node for sort and hash methods, but different startup
3512 * costs. This could be refined perhaps, but it'll do for now.
3513 */
3514 pathnode->path.disabled_nodes =
3515 leftpath->disabled_nodes + rightpath->disabled_nodes;
3516 if (strategy == SETOP_SORTED)
3517 {
3518 /*
3519 * In sorted mode, we can emit output incrementally. Charge one
3520 * cpu_operator_cost per comparison per input tuple. Like cost_group,
3521 * we assume all columns get compared at most of the tuples.
3522 */
3523 pathnode->path.startup_cost =
3524 leftpath->startup_cost + rightpath->startup_cost;
3525 pathnode->path.total_cost =
3526 leftpath->total_cost + rightpath->total_cost +
3527 cpu_operator_cost * (leftpath->rows + rightpath->rows) * list_length(groupList);
3528
3529 /*
3530 * Also charge a small amount per extracted tuple. Like cost_sort,
3531 * charge only operator cost not cpu_tuple_cost, since SetOp does no
3532 * qual-checking or projection.
3533 */
3534 pathnode->path.total_cost += cpu_operator_cost * outputRows;
3535
3536 /*
3537 * Mark the path as disabled if enable_groupagg is off. While this
3538 * isn't a grouping Agg node, it is the sort-based implementation and
3539 * so is the natural counterpart to the SETOP_HASHED path that
3540 * enable_hashagg controls; it seems close enough to justify letting
3541 * that switch control it.
3542 */
3543 if (!enable_groupagg)
3544 pathnode->path.disabled_nodes++;
3545 }
3546 else
3547 {
3549
3550 /*
3551 * In hashed mode, we must read all the input before we can emit
3552 * anything. Also charge comparison costs to represent the cost of
3553 * hash table lookups.
3554 */
3555 pathnode->path.startup_cost =
3556 leftpath->total_cost + rightpath->total_cost +
3557 cpu_operator_cost * (leftpath->rows + rightpath->rows) * list_length(groupList);
3558 pathnode->path.total_cost = pathnode->path.startup_cost;
3559
3560 /*
3561 * Also charge a small amount per extracted tuple. Like cost_sort,
3562 * charge only operator cost not cpu_tuple_cost, since SetOp does no
3563 * qual-checking or projection.
3564 */
3565 pathnode->path.total_cost += cpu_operator_cost * outputRows;
3566
3567 /*
3568 * Mark the path as disabled if enable_hashagg is off. While this
3569 * isn't exactly a HashAgg node, it seems close enough to justify
3570 * letting that switch control it.
3571 */
3572 if (!enable_hashagg)
3573 pathnode->path.disabled_nodes++;
3574
3575 /*
3576 * Also disable if it doesn't look like the hashtable will fit into
3577 * hash_mem. (Note: reject on equality, to ensure that an estimate of
3578 * SIZE_MAX disables hashing regardless of the hash_mem limit.)
3579 */
3581 leftpath->pathtarget->width);
3583 pathnode->path.disabled_nodes++;
3584 }
3585 pathnode->path.rows = outputRows;
3586
3587 return pathnode;
3588}
3589
3590/*
3591 * create_recursiveunion_path
3592 * Creates a pathnode that represents a recursive UNION node
3593 *
3594 * 'rel' is the parent relation associated with the result
3595 * 'leftpath' is the source of data for the non-recursive term
3596 * 'rightpath' is the source of data for the recursive term
3597 * 'target' is the PathTarget to be computed
3598 * 'distinctList' is a list of SortGroupClause's representing the grouping
3599 * 'wtParam' is the ID of Param representing work table
3600 * 'numGroups' is the estimated number of groups
3601 *
3602 * For recursive UNION ALL, distinctList is empty and numGroups is zero
3603 */
3606 RelOptInfo *rel,
3607 Path *leftpath,
3608 Path *rightpath,
3609 PathTarget *target,
3610 List *distinctList,
3611 int wtParam,
3612 double numGroups)
3613{
3615
3616 pathnode->path.pathtype = T_RecursiveUnion;
3617 pathnode->path.parent = rel;
3618 pathnode->path.pathtarget = target;
3619 /* For now, assume we are above any joins, so no parameterization */
3620 pathnode->path.param_info = NULL;
3621 pathnode->path.parallel_aware = false;
3622 pathnode->path.parallel_safe = rel->consider_parallel &&
3623 leftpath->parallel_safe && rightpath->parallel_safe;
3624 /* Foolish, but we'll do it like joins for now: */
3625 pathnode->path.parallel_workers = leftpath->parallel_workers;
3626 /* RecursiveUnion result is always unsorted */
3627 pathnode->path.pathkeys = NIL;
3628
3629 pathnode->leftpath = leftpath;
3630 pathnode->rightpath = rightpath;
3631 pathnode->distinctList = distinctList;
3632 pathnode->wtParam = wtParam;
3633 pathnode->numGroups = numGroups;
3634
3635 cost_recursive_union(&pathnode->path, leftpath, rightpath);
3636
3637 return pathnode;
3638}
3639
3640/*
3641 * create_lockrows_path
3642 * Creates a pathnode that represents acquiring row locks
3643 *
3644 * 'rel' is the parent relation associated with the result
3645 * 'subpath' is the path representing the source of data
3646 * 'rowMarks' is a list of PlanRowMark's
3647 * 'epqParam' is the ID of Param for EvalPlanQual re-eval
3648 */
3651 Path *subpath, List *rowMarks, int epqParam)
3652{
3654
3655 pathnode->path.pathtype = T_LockRows;
3656 pathnode->path.parent = rel;
3657 /* LockRows doesn't project, so use source path's pathtarget */
3658 pathnode->path.pathtarget = subpath->pathtarget;
3659 /* For now, assume we are above any joins, so no parameterization */
3660 pathnode->path.param_info = NULL;
3661 pathnode->path.parallel_aware = false;
3662 pathnode->path.parallel_safe = false;
3663 pathnode->path.parallel_workers = 0;
3664 pathnode->path.rows = subpath->rows;
3665
3666 /*
3667 * The result cannot be assumed sorted, since locking might cause the sort
3668 * key columns to be replaced with new values.
3669 */
3670 pathnode->path.pathkeys = NIL;
3671
3672 pathnode->subpath = subpath;
3673 pathnode->rowMarks = rowMarks;
3674 pathnode->epqParam = epqParam;
3675
3676 /*
3677 * We should charge something extra for the costs of row locking and
3678 * possible refetches, but it's hard to say how much. For now, use
3679 * cpu_tuple_cost per row.
3680 */
3681 pathnode->path.disabled_nodes = subpath->disabled_nodes;
3682 pathnode->path.startup_cost = subpath->startup_cost;
3683 pathnode->path.total_cost = subpath->total_cost +
3684 cpu_tuple_cost * subpath->rows;
3685
3686 return pathnode;
3687}
3688
3689/*
3690 * create_modifytable_path
3691 * Creates a pathnode that represents performing INSERT/UPDATE/DELETE/MERGE
3692 * mods
3693 *
3694 * 'rel' is the parent relation associated with the result
3695 * 'subpath' is a Path producing source data
3696 * 'operation' is the operation type
3697 * 'canSetTag' is true if we set the command tag/es_processed
3698 * 'nominalRelation' is the parent RT index for use of EXPLAIN
3699 * 'rootRelation' is the partitioned/inherited table root RTI, or 0 if none
3700 * 'resultRelations' is an integer list of actual RT indexes of target rel(s)
3701 * 'updateColnosLists' is a list of UPDATE target column number lists
3702 * (one sublist per rel); or NIL if not an UPDATE
3703 * 'withCheckOptionLists' is a list of WCO lists (one per rel)
3704 * 'returningLists' is a list of RETURNING tlists (one per rel)
3705 * 'rowMarks' is a list of PlanRowMarks (non-locking only)
3706 * 'onconflict' is the ON CONFLICT clause, or NULL
3707 * 'epqParam' is the ID of Param for EvalPlanQual re-eval
3708 * 'mergeActionLists' is a list of lists of MERGE actions (one per rel)
3709 * 'mergeJoinConditions' is a list of join conditions for MERGE (one per rel)
3710 */
3713 Path *subpath,
3714 CmdType operation, bool canSetTag,
3715 Index nominalRelation, Index rootRelation,
3716 List *resultRelations,
3717 List *updateColnosLists,
3718 List *withCheckOptionLists, List *returningLists,
3719 List *rowMarks, OnConflictExpr *onconflict,
3720 List *mergeActionLists, List *mergeJoinConditions,
3721 ForPortionOfExpr *forPortionOf, int epqParam)
3722{
3724
3726 (operation == CMD_UPDATE ?
3727 list_length(resultRelations) == list_length(updateColnosLists) :
3728 updateColnosLists == NIL));
3729 Assert(withCheckOptionLists == NIL ||
3730 list_length(resultRelations) == list_length(withCheckOptionLists));
3731 Assert(returningLists == NIL ||
3732 list_length(resultRelations) == list_length(returningLists));
3733
3734 pathnode->path.pathtype = T_ModifyTable;
3735 pathnode->path.parent = rel;
3736 /* pathtarget is not interesting, just make it minimally valid */
3737 pathnode->path.pathtarget = rel->reltarget;
3738 /* For now, assume we are above any joins, so no parameterization */
3739 pathnode->path.param_info = NULL;
3740 pathnode->path.parallel_aware = false;
3741 pathnode->path.parallel_safe = false;
3742 pathnode->path.parallel_workers = 0;
3743 pathnode->path.pathkeys = NIL;
3744
3745 /*
3746 * Compute cost & rowcount as subpath cost & rowcount (if RETURNING)
3747 *
3748 * Currently, we don't charge anything extra for the actual table
3749 * modification work, nor for the WITH CHECK OPTIONS or RETURNING
3750 * expressions if any. It would only be window dressing, since
3751 * ModifyTable is always a top-level node and there is no way for the
3752 * costs to change any higher-level planning choices. But we might want
3753 * to make it look better sometime.
3754 */
3755 pathnode->path.disabled_nodes = subpath->disabled_nodes;
3756 pathnode->path.startup_cost = subpath->startup_cost;
3757 pathnode->path.total_cost = subpath->total_cost;
3758 if (returningLists != NIL)
3759 {
3760 pathnode->path.rows = subpath->rows;
3761
3762 /*
3763 * Set width to match the subpath output. XXX this is totally wrong:
3764 * we should return an average of the RETURNING tlist widths. But
3765 * it's what happened historically, and improving it is a task for
3766 * another day. (Again, it's mostly window dressing.)
3767 */
3768 pathnode->path.pathtarget->width = subpath->pathtarget->width;
3769 }
3770 else
3771 {
3772 pathnode->path.rows = 0;
3773 pathnode->path.pathtarget->width = 0;
3774 }
3775
3776 pathnode->subpath = subpath;
3777 pathnode->operation = operation;
3778 pathnode->canSetTag = canSetTag;
3779 pathnode->nominalRelation = nominalRelation;
3780 pathnode->rootRelation = rootRelation;
3781 pathnode->resultRelations = resultRelations;
3782 pathnode->updateColnosLists = updateColnosLists;
3783 pathnode->withCheckOptionLists = withCheckOptionLists;
3784 pathnode->returningLists = returningLists;
3785 pathnode->rowMarks = rowMarks;
3786 pathnode->onconflict = onconflict;
3787 pathnode->forPortionOf = forPortionOf;
3788 pathnode->epqParam = epqParam;
3789 pathnode->mergeActionLists = mergeActionLists;
3790 pathnode->mergeJoinConditions = mergeJoinConditions;
3791
3792 return pathnode;
3793}
3794
3795/*
3796 * create_limit_path
3797 * Creates a pathnode that represents performing LIMIT/OFFSET
3798 *
3799 * In addition to providing the actual OFFSET and LIMIT expressions,
3800 * the caller must provide estimates of their values for costing purposes.
3801 * The estimates are as computed by preprocess_limit(), ie, 0 represents
3802 * the clause not being present, and -1 means it's present but we could
3803 * not estimate its value.
3804 *
3805 * 'rel' is the parent relation associated with the result
3806 * 'subpath' is the path representing the source of data
3807 * 'limitOffset' is the actual OFFSET expression, or NULL
3808 * 'limitCount' is the actual LIMIT expression, or NULL
3809 * 'offset_est' is the estimated value of the OFFSET expression
3810 * 'count_est' is the estimated value of the LIMIT expression
3811 */
3812LimitPath *
3814 Path *subpath,
3815 Node *limitOffset, Node *limitCount,
3816 LimitOption limitOption,
3817 int64 offset_est, int64 count_est)
3818{
3820
3821 pathnode->path.pathtype = T_Limit;
3822 pathnode->path.parent = rel;
3823 /* Limit doesn't project, so use source path's pathtarget */
3824 pathnode->path.pathtarget = subpath->pathtarget;
3825 /* For now, assume we are above any joins, so no parameterization */
3826 pathnode->path.param_info = NULL;
3827 pathnode->path.parallel_aware = false;
3828 pathnode->path.parallel_safe = rel->consider_parallel &&
3829 subpath->parallel_safe;
3830 pathnode->path.parallel_workers = subpath->parallel_workers;
3831 pathnode->path.rows = subpath->rows;
3832 pathnode->path.disabled_nodes = subpath->disabled_nodes;
3833 pathnode->path.startup_cost = subpath->startup_cost;
3834 pathnode->path.total_cost = subpath->total_cost;
3835 pathnode->path.pathkeys = subpath->pathkeys;
3836 pathnode->subpath = subpath;
3837 pathnode->limitOffset = limitOffset;
3838 pathnode->limitCount = limitCount;
3839 pathnode->limitOption = limitOption;
3840
3841 /*
3842 * Adjust the output rows count and costs according to the offset/limit.
3843 */
3845 &pathnode->path.startup_cost,
3846 &pathnode->path.total_cost,
3847 offset_est, count_est);
3848
3849 return pathnode;
3850}
3851
3852/*
3853 * adjust_limit_rows_costs
3854 * Adjust the size and cost estimates for a LimitPath node according to the
3855 * offset/limit.
3856 *
3857 * This is only a cosmetic issue if we are at top level, but if we are
3858 * building a subquery then it's important to report correct info to the outer
3859 * planner.
3860 *
3861 * When the offset or count couldn't be estimated, use 10% of the estimated
3862 * number of rows emitted from the subpath.
3863 *
3864 * XXX we don't bother to add eval costs of the offset/limit expressions
3865 * themselves to the path costs. In theory we should, but in most cases those
3866 * expressions are trivial and it's just not worth the trouble.
3867 */
3868void
3869adjust_limit_rows_costs(double *rows, /* in/out parameter */
3870 Cost *startup_cost, /* in/out parameter */
3871 Cost *total_cost, /* in/out parameter */
3872 int64 offset_est,
3873 int64 count_est)
3874{
3875 double input_rows = *rows;
3876 Cost input_startup_cost = *startup_cost;
3877 Cost input_total_cost = *total_cost;
3878
3879 if (offset_est != 0)
3880 {
3881 double offset_rows;
3882
3883 if (offset_est > 0)
3884 offset_rows = (double) offset_est;
3885 else
3887 if (offset_rows > *rows)
3888 offset_rows = *rows;
3889 if (input_rows > 0)
3890 *startup_cost +=
3893 *rows -= offset_rows;
3894 if (*rows < 1)
3895 *rows = 1;
3896 }
3897
3898 if (count_est != 0)
3899 {
3900 double count_rows;
3901
3902 if (count_est > 0)
3903 count_rows = (double) count_est;
3904 else
3906 if (count_rows > *rows)
3907 count_rows = *rows;
3908 if (input_rows > 0)
3909 *total_cost = *startup_cost +
3912 *rows = count_rows;
3913 if (*rows < 1)
3914 *rows = 1;
3915 }
3916}
3917
3918
3919/*
3920 * reparameterize_path
3921 * Attempt to modify a Path to have greater parameterization
3922 *
3923 * We use this to attempt to bring all child paths of an appendrel to the
3924 * same parameterization level, ensuring that they all enforce the same set
3925 * of join quals (and thus that that parameterization can be attributed to
3926 * an append path built from such paths). Currently, only a few path types
3927 * are supported here, though more could be added at need. We return NULL
3928 * if we can't reparameterize the given path.
3929 *
3930 * Note: we intentionally do not pass created paths to add_path(); it would
3931 * possibly try to delete them on the grounds of being cost-inferior to the
3932 * paths they were made from, and we don't want that. Paths made here are
3933 * not necessarily of general-purpose usefulness, but they can be useful
3934 * as members of an append path.
3935 */
3936Path *
3939 double loop_count)
3940{
3941 RelOptInfo *rel = path->parent;
3942
3943 /* Can only increase, not decrease, path's parameterization */
3945 return NULL;
3946 switch (path->pathtype)
3947 {
3948 case T_SeqScan:
3949 return create_seqscan_path(root, rel, required_outer, 0);
3950 case T_SampleScan:
3952 case T_IndexScan:
3953 case T_IndexOnlyScan:
3954 {
3955 IndexPath *ipath = (IndexPath *) path;
3957
3958 /*
3959 * We can't use create_index_path directly, and would not want
3960 * to because it would re-compute the indexqual conditions
3961 * which is wasted effort. Instead we hack things a bit:
3962 * flat-copy the path node, revise its param_info, and redo
3963 * the cost estimate.
3964 */
3965 memcpy(newpath, ipath, sizeof(IndexPath));
3966 newpath->path.param_info =
3969 return (Path *) newpath;
3970 }
3971 case T_BitmapHeapScan:
3972 {
3974
3976 rel,
3977 bpath->bitmapqual,
3979 loop_count, 0);
3980 }
3981 case T_SubqueryScan:
3982 {
3983 SubqueryScanPath *spath = (SubqueryScanPath *) path;
3984 Path *subpath = spath->subpath;
3985 bool trivial_pathtarget;
3986
3987 /*
3988 * If existing node has zero extra cost, we must have decided
3989 * its target is trivial. (The converse is not true, because
3990 * it might have a trivial target but quals to enforce; but in
3991 * that case the new node will too, so it doesn't matter
3992 * whether we get the right answer here.)
3993 */
3995 (subpath->total_cost == spath->path.total_cost);
3996
3998 rel,
3999 subpath,
4001 spath->path.pathkeys,
4003 }
4004 case T_Result:
4005 /* Supported only for RTE_RESULT scan paths */
4006 if (IsA(path, Path))
4008 break;
4009 case T_Append:
4010 {
4011 AppendPath *apath = (AppendPath *) path;
4013 int i;
4014 ListCell *lc;
4015
4016 new_append.child_append_relid_sets = apath->child_append_relid_sets;
4017
4018 /* Reparameterize the children */
4019 i = 0;
4020 foreach(lc, apath->subpaths)
4021 {
4022 Path *spath = (Path *) lfirst(lc);
4023
4024 spath = reparameterize_path(root, spath,
4026 loop_count);
4027 if (spath == NULL)
4028 return NULL;
4029 /* We have to re-split the regular and partial paths */
4030 if (i < apath->first_partial_path)
4031 new_append.subpaths = lappend(new_append.subpaths, spath);
4032 else
4033 new_append.partial_subpaths = lappend(new_append.partial_subpaths, spath);
4034 i++;
4035 }
4036 return (Path *)
4038 apath->path.pathkeys, required_outer,
4039 apath->path.parallel_workers,
4040 apath->path.parallel_aware,
4041 -1);
4042 }
4043 case T_Material:
4044 {
4045 MaterialPath *mpath = (MaterialPath *) path;
4046 Path *spath = mpath->subpath;
4047 bool enabled;
4048
4049 spath = reparameterize_path(root, spath,
4051 loop_count);
4052 if (spath == NULL)
4053 return NULL;
4054 enabled =
4055 (mpath->path.disabled_nodes <= spath->disabled_nodes);
4056 return (Path *) create_material_path(rel, spath, enabled);
4057 }
4058 case T_Memoize:
4059 {
4060 MemoizePath *mpath = (MemoizePath *) path;
4061 Path *spath = mpath->subpath;
4062
4063 spath = reparameterize_path(root, spath,
4065 loop_count);
4066 if (spath == NULL)
4067 return NULL;
4068 return (Path *) create_memoize_path(root, rel,
4069 spath,
4070 mpath->param_exprs,
4071 mpath->hash_operators,
4072 mpath->singlerow,
4073 mpath->binary_mode,
4074 mpath->est_calls);
4075 }
4076 default:
4077 break;
4078 }
4079 return NULL;
4080}
4081
4082/*
4083 * reparameterize_path_by_child
4084 * Given a path parameterized by the parent of the given child relation,
4085 * translate the path to be parameterized by the given child relation.
4086 *
4087 * Most fields in the path are not changed, but any expressions must be
4088 * adjusted to refer to the correct varnos, and any subpaths must be
4089 * recursively reparameterized. Other fields that refer to specific relids
4090 * also need adjustment.
4091 *
4092 * The cost, number of rows, width and parallel path properties depend upon
4093 * path->parent, which does not change during the translation. So we need
4094 * not change those.
4095 *
4096 * Currently, only a few path types are supported here, though more could be
4097 * added at need. We return NULL if we can't reparameterize the given path.
4098 *
4099 * Note that this function can change referenced RangeTblEntries, RelOptInfos
4100 * and IndexOptInfos as well as the Path structures. Therefore, it's only safe
4101 * to call during create_plan(), when we have made a final choice of which Path
4102 * to use for each RangeTblEntry/RelOptInfo/IndexOptInfo.
4103 *
4104 * Keep this code in sync with path_is_reparameterizable_by_child()!
4105 */
4106Path *
4109{
4110 Path *new_path;
4114
4115#define ADJUST_CHILD_ATTRS(node) \
4116 ((node) = (void *) adjust_appendrel_attrs_multilevel(root, \
4117 (Node *) (node), \
4118 child_rel, \
4119 child_rel->top_parent))
4120
4121#define REPARAMETERIZE_CHILD_PATH(path) \
4122do { \
4123 (path) = reparameterize_path_by_child(root, (path), child_rel); \
4124 if ((path) == NULL) \
4125 return NULL; \
4126} while(0)
4127
4128#define REPARAMETERIZE_CHILD_PATH_LIST(pathlist) \
4129do { \
4130 if ((pathlist) != NIL) \
4131 { \
4132 (pathlist) = reparameterize_pathlist_by_child(root, (pathlist), \
4133 child_rel); \
4134 if ((pathlist) == NIL) \
4135 return NULL; \
4136 } \
4137} while(0)
4138
4139 /*
4140 * If the path is not parameterized by the parent of the given relation,
4141 * it doesn't need reparameterization.
4142 */
4143 if (!path->param_info ||
4144 !bms_overlap(PATH_REQ_OUTER(path), child_rel->top_parent_relids))
4145 return path;
4146
4147 /*
4148 * If possible, reparameterize the given path.
4149 *
4150 * This function is currently only applied to the inner side of a nestloop
4151 * join that is being partitioned by the partitionwise-join code. Hence,
4152 * we need only support path types that plausibly arise in that context.
4153 * (In particular, supporting sorted path types would be a waste of code
4154 * and cycles: even if we translated them here, they'd just lose in
4155 * subsequent cost comparisons.) If we do see an unsupported path type,
4156 * that just means we won't be able to generate a partitionwise-join plan
4157 * using that path type.
4158 */
4159 switch (nodeTag(path))
4160 {
4161 case T_Path:
4162 new_path = path;
4163 ADJUST_CHILD_ATTRS(new_path->parent->baserestrictinfo);
4164 if (path->pathtype == T_SampleScan)
4165 {
4166 Index scan_relid = path->parent->relid;
4168
4169 /* it should be a base rel with a tablesample clause... */
4170 Assert(scan_relid > 0);
4172 Assert(rte->rtekind == RTE_RELATION);
4173 Assert(rte->tablesample != NULL);
4174
4175 ADJUST_CHILD_ATTRS(rte->tablesample);
4176 }
4177 break;
4178
4179 case T_IndexPath:
4180 {
4181 IndexPath *ipath = (IndexPath *) path;
4182
4183 ADJUST_CHILD_ATTRS(ipath->indexinfo->indrestrictinfo);
4184 ADJUST_CHILD_ATTRS(ipath->indexclauses);
4185 new_path = (Path *) ipath;
4186 }
4187 break;
4188
4189 case T_BitmapHeapPath:
4190 {
4192
4193 ADJUST_CHILD_ATTRS(bhpath->path.parent->baserestrictinfo);
4194 REPARAMETERIZE_CHILD_PATH(bhpath->bitmapqual);
4195 new_path = (Path *) bhpath;
4196 }
4197 break;
4198
4199 case T_BitmapAndPath:
4200 {
4202
4204 new_path = (Path *) bapath;
4205 }
4206 break;
4207
4208 case T_BitmapOrPath:
4209 {
4210 BitmapOrPath *bopath = (BitmapOrPath *) path;
4211
4213 new_path = (Path *) bopath;
4214 }
4215 break;
4216
4217 case T_ForeignPath:
4218 {
4219 ForeignPath *fpath = (ForeignPath *) path;
4221
4222 ADJUST_CHILD_ATTRS(fpath->path.parent->baserestrictinfo);
4223 if (fpath->fdw_outerpath)
4224 REPARAMETERIZE_CHILD_PATH(fpath->fdw_outerpath);
4225 if (fpath->fdw_restrictinfo)
4226 ADJUST_CHILD_ATTRS(fpath->fdw_restrictinfo);
4227
4228 /* Hand over to FDW if needed. */
4229 rfpc_func =
4230 path->parent->fdwroutine->ReparameterizeForeignPathByChild;
4231 if (rfpc_func)
4232 fpath->fdw_private = rfpc_func(root, fpath->fdw_private,
4233 child_rel);
4234 new_path = (Path *) fpath;
4235 }
4236 break;
4237
4238 case T_CustomPath:
4239 {
4240 CustomPath *cpath = (CustomPath *) path;
4241
4242 ADJUST_CHILD_ATTRS(cpath->path.parent->baserestrictinfo);
4244 if (cpath->custom_restrictinfo)
4245 ADJUST_CHILD_ATTRS(cpath->custom_restrictinfo);
4246 if (cpath->methods &&
4247 cpath->methods->ReparameterizeCustomPathByChild)
4248 cpath->custom_private =
4249 cpath->methods->ReparameterizeCustomPathByChild(root,
4250 cpath->custom_private,
4251 child_rel);
4252 new_path = (Path *) cpath;
4253 }
4254 break;
4255
4256 case T_NestPath:
4257 {
4258 NestPath *npath = (NestPath *) path;
4259 JoinPath *jpath = (JoinPath *) npath;
4260
4264 new_path = (Path *) npath;
4265 }
4266 break;
4267
4268 case T_MergePath:
4269 {
4270 MergePath *mpath = (MergePath *) path;
4271 JoinPath *jpath = (JoinPath *) mpath;
4272
4276 ADJUST_CHILD_ATTRS(mpath->path_mergeclauses);
4277 new_path = (Path *) mpath;
4278 }
4279 break;
4280
4281 case T_HashPath:
4282 {
4283 HashPath *hpath = (HashPath *) path;
4284 JoinPath *jpath = (JoinPath *) hpath;
4285
4289 ADJUST_CHILD_ATTRS(hpath->path_hashclauses);
4290 new_path = (Path *) hpath;
4291 }
4292 break;
4293
4294 case T_AppendPath:
4295 {
4296 AppendPath *apath = (AppendPath *) path;
4297
4299 new_path = (Path *) apath;
4300 }
4301 break;
4302
4303 case T_MaterialPath:
4304 {
4305 MaterialPath *mpath = (MaterialPath *) path;
4306
4308 new_path = (Path *) mpath;
4309 }
4310 break;
4311
4312 case T_MemoizePath:
4313 {
4314 MemoizePath *mpath = (MemoizePath *) path;
4315
4317 ADJUST_CHILD_ATTRS(mpath->param_exprs);
4318 new_path = (Path *) mpath;
4319 }
4320 break;
4321
4322 case T_GatherPath:
4323 {
4324 GatherPath *gpath = (GatherPath *) path;
4325
4327 new_path = (Path *) gpath;
4328 }
4329 break;
4330
4331 default:
4332 /* We don't know how to reparameterize this path. */
4333 return NULL;
4334 }
4335
4336 /*
4337 * Adjust the parameterization information, which refers to the topmost
4338 * parent. The topmost parent can be multiple levels away from the given
4339 * child, hence use multi-level expression adjustment routines.
4340 */
4341 old_ppi = new_path->param_info;
4344 child_rel,
4345 child_rel->top_parent);
4346
4347 /* If we already have a PPI for this parameterization, just return it */
4349
4350 /*
4351 * If not, build a new one and link it to the list of PPIs. For the same
4352 * reason as explained in mark_dummy_rel(), allocate new PPI in the same
4353 * context the given RelOptInfo is in.
4354 */
4355 if (new_ppi == NULL)
4356 {
4357 MemoryContext oldcontext;
4358 RelOptInfo *rel = path->parent;
4359
4361
4363 new_ppi->ppi_req_outer = bms_copy(required_outer);
4364 new_ppi->ppi_rows = old_ppi->ppi_rows;
4365 new_ppi->ppi_clauses = old_ppi->ppi_clauses;
4366 ADJUST_CHILD_ATTRS(new_ppi->ppi_clauses);
4367 new_ppi->ppi_serials = bms_copy(old_ppi->ppi_serials);
4368 rel->ppilist = lappend(rel->ppilist, new_ppi);
4369
4370 MemoryContextSwitchTo(oldcontext);
4371 }
4373
4374 new_path->param_info = new_ppi;
4375
4376 /*
4377 * Adjust the path target if the parent of the outer relation is
4378 * referenced in the targetlist. This can happen when only the parent of
4379 * outer relation is laterally referenced in this relation.
4380 */
4381 if (bms_overlap(path->parent->lateral_relids,
4382 child_rel->top_parent_relids))
4383 {
4384 new_path->pathtarget = copy_pathtarget(new_path->pathtarget);
4385 ADJUST_CHILD_ATTRS(new_path->pathtarget->exprs);
4386 }
4387
4388 return new_path;
4389}
4390
4391/*
4392 * path_is_reparameterizable_by_child
4393 * Given a path parameterized by the parent of the given child relation,
4394 * see if it can be translated to be parameterized by the child relation.
4395 *
4396 * This must return true if and only if reparameterize_path_by_child()
4397 * would succeed on this path. Currently it's sufficient to verify that
4398 * the path and all of its subpaths (if any) are of the types handled by
4399 * that function. However, subpaths that are not parameterized can be
4400 * disregarded since they won't require translation.
4401 */
4402bool
4404{
4405#define REJECT_IF_PATH_NOT_REPARAMETERIZABLE(path) \
4406do { \
4407 if (!path_is_reparameterizable_by_child(path, child_rel)) \
4408 return false; \
4409} while(0)
4410
4411#define REJECT_IF_PATH_LIST_NOT_REPARAMETERIZABLE(pathlist) \
4412do { \
4413 if (!pathlist_is_reparameterizable_by_child(pathlist, child_rel)) \
4414 return false; \
4415} while(0)
4416
4417 /*
4418 * If the path is not parameterized by the parent of the given relation,
4419 * it doesn't need reparameterization.
4420 */
4421 if (!path->param_info ||
4422 !bms_overlap(PATH_REQ_OUTER(path), child_rel->top_parent_relids))
4423 return true;
4424
4425 /*
4426 * Check that the path type is one that reparameterize_path_by_child() can
4427 * handle, and recursively check subpaths.
4428 */
4429 switch (nodeTag(path))
4430 {
4431 case T_Path:
4432 case T_IndexPath:
4433 break;
4434
4435 case T_BitmapHeapPath:
4436 {
4438
4440 }
4441 break;
4442
4443 case T_BitmapAndPath:
4444 {
4446
4448 }
4449 break;
4450
4451 case T_BitmapOrPath:
4452 {
4453 BitmapOrPath *bopath = (BitmapOrPath *) path;
4454
4456 }
4457 break;
4458
4459 case T_ForeignPath:
4460 {
4461 ForeignPath *fpath = (ForeignPath *) path;
4462
4463 if (fpath->fdw_outerpath)
4465 }
4466 break;
4467
4468 case T_CustomPath:
4469 {
4470 CustomPath *cpath = (CustomPath *) path;
4471
4473 }
4474 break;
4475
4476 case T_NestPath:
4477 case T_MergePath:
4478 case T_HashPath:
4479 {
4480 JoinPath *jpath = (JoinPath *) path;
4481
4484 }
4485 break;
4486
4487 case T_AppendPath:
4488 {
4489 AppendPath *apath = (AppendPath *) path;
4490
4492 }
4493 break;
4494
4495 case T_MaterialPath:
4496 {
4497 MaterialPath *mpath = (MaterialPath *) path;
4498
4500 }
4501 break;
4502
4503 case T_MemoizePath:
4504 {
4505 MemoizePath *mpath = (MemoizePath *) path;
4506
4508 }
4509 break;
4510
4511 case T_GatherPath:
4512 {
4513 GatherPath *gpath = (GatherPath *) path;
4514
4516 }
4517 break;
4518
4519 default:
4520 /* We don't know how to reparameterize this path. */
4521 return false;
4522 }
4523
4524 return true;
4525}
4526
4527/*
4528 * reparameterize_pathlist_by_child
4529 * Helper function to reparameterize a list of paths by given child rel.
4530 *
4531 * Returns NIL to indicate failure, so pathlist had better not be NIL.
4532 */
4533static List *
4535 List *pathlist,
4537{
4538 ListCell *lc;
4539 List *result = NIL;
4540
4541 foreach(lc, pathlist)
4542 {
4544 child_rel);
4545
4546 if (path == NULL)
4547 {
4549 return NIL;
4550 }
4551
4552 result = lappend(result, path);
4553 }
4554
4555 return result;
4556}
4557
4558/*
4559 * pathlist_is_reparameterizable_by_child
4560 * Helper function to check if a list of paths can be reparameterized.
4561 */
4562static bool
4564{
4565 ListCell *lc;
4566
4567 foreach(lc, pathlist)
4568 {
4569 Path *path = (Path *) lfirst(lc);
4570
4572 return false;
4573 }
4574
4575 return true;
4576}
Datum sort(PG_FUNCTION_ARGS)
Definition _int_op.c:199
Relids adjust_child_relids_multilevel(PlannerInfo *root, Relids relids, RelOptInfo *childrel, RelOptInfo *parentrel)
Definition appendinfo.c:664
bool bms_equal(const Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:143
BMS_Comparison bms_subset_compare(const Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:580
Bitmapset * bms_del_members(Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:1280
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:547
void bms_free(Bitmapset *a)
Definition bitmapset.c:240
bool bms_is_member(int x, const Bitmapset *a)
Definition bitmapset.c:645
Bitmapset * bms_add_members(Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:1036
Bitmapset * bms_union(const Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:252
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:710
int bms_compare(const Bitmapset *a, const Bitmapset *b)
Definition bitmapset.c:184
Bitmapset * bms_copy(const Bitmapset *a)
Definition bitmapset.c:123
#define bms_is_empty(a)
Definition bitmapset.h:119
BMS_Comparison
Definition bitmapset.h:61
@ BMS_DIFFERENT
Definition bitmapset.h:65
@ BMS_SUBSET1
Definition bitmapset.h:63
@ BMS_EQUAL
Definition bitmapset.h:62
@ BMS_SUBSET2
Definition bitmapset.h:64
#define PG_USED_FOR_ASSERTS_ONLY
Definition c.h:308
#define Assert(condition)
Definition c.h:1002
int64_t int64
Definition c.h:680
#define unlikely(x)
Definition c.h:497
unsigned int Index
Definition c.h:757
size_t Size
Definition c.h:748
uint32 result
memcpy(sums, checksumBaseOffsets, sizeof(checksumBaseOffsets))
bool is_parallel_safe(PlannerInfo *root, Node *node)
Definition clauses.c:782
double expression_returns_set_rows(PlannerInfo *root, Node *clause)
Definition clauses.c:318
double cpu_operator_cost
Definition costsize.c:135
void final_cost_hashjoin(PlannerInfo *root, HashPath *path, JoinCostWorkspace *workspace, JoinPathExtraData *extra)
Definition costsize.c:4439
void final_cost_mergejoin(PlannerInfo *root, MergePath *path, JoinCostWorkspace *workspace, JoinPathExtraData *extra)
Definition costsize.c:3978
void cost_material(Path *path, bool enabled, int input_disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double tuples, int width)
Definition costsize.c:2584
void cost_windowagg(Path *path, PlannerInfo *root, List *windowFuncs, WindowClause *winclause, int input_disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double input_tuples)
Definition costsize.c:3227
void cost_functionscan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:1564
void cost_bitmap_heap_scan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info, Path *bitmapqual, double loop_count)
Definition costsize.c:1013
void cost_tidrangescan(Path *path, PlannerInfo *root, RelOptInfo *baserel, List *tidrangequals, ParamPathInfo *param_info)
Definition costsize.c:1362
void cost_agg(Path *path, PlannerInfo *root, AggStrategy aggstrategy, const AggClauseCosts *aggcosts, int numGroupCols, double numGroups, List *quals, int disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double input_tuples, double input_width)
Definition costsize.c:2789
void cost_sort(Path *path, PlannerInfo *root, List *pathkeys, int input_disabled_nodes, Cost input_cost, double tuples, int width, Cost comparison_cost, int sort_mem, double limit_tuples)
Definition costsize.c:2202
void final_cost_nestloop(PlannerInfo *root, NestPath *path, JoinCostWorkspace *workspace, JoinPathExtraData *extra)
Definition costsize.c:3478
void cost_gather_merge(GatherMergePath *path, PlannerInfo *root, RelOptInfo *rel, ParamPathInfo *param_info, int input_disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double *rows)
Definition costsize.c:471
void cost_recursive_union(Path *runion, Path *nrterm, Path *rterm)
Definition costsize.c:1876
void cost_tablefuncscan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:1630
double cpu_tuple_cost
Definition costsize.c:133
void cost_samplescan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:350
void cost_gather(GatherPath *path, PlannerInfo *root, RelOptInfo *rel, ParamPathInfo *param_info, double *rows)
Definition costsize.c:431
void cost_append(AppendPath *apath, PlannerInfo *root)
Definition costsize.c:2312
bool enable_groupagg
Definition costsize.c:154
void cost_namedtuplestorescan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:1792
void cost_seqscan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:271
void cost_valuesscan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:1691
void cost_incremental_sort(Path *path, PlannerInfo *root, List *pathkeys, int presorted_keys, int input_disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double input_tuples, int width, Cost comparison_cost, int sort_mem, double limit_tuples)
Definition costsize.c:2054
void cost_qual_eval(QualCost *cost, List *quals, PlannerInfo *root)
Definition costsize.c:4923
void cost_group(Path *path, PlannerInfo *root, int numGroupCols, double numGroups, List *quals, int input_disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double input_tuples)
Definition costsize.c:3324
void cost_resultscan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:1834
void cost_bitmap_and_node(BitmapAndPath *path, PlannerInfo *root)
Definition costsize.c:1159
void cost_tidscan(Path *path, PlannerInfo *root, RelOptInfo *baserel, List *tidquals, ParamPathInfo *param_info)
Definition costsize.c:1252
void cost_merge_append(Path *path, PlannerInfo *root, List *pathkeys, int n_streams, int input_disabled_nodes, Cost input_startup_cost, Cost input_total_cost, double tuples)
Definition costsize.c:2526
bool enable_hashagg
Definition costsize.c:153
double clamp_row_est(double nrows)
Definition costsize.c:215
void cost_subqueryscan(SubqueryScanPath *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info, bool trivial_pathtarget)
Definition costsize.c:1479
void cost_ctescan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info)
Definition costsize.c:1746
void cost_bitmap_or_node(BitmapOrPath *path, PlannerInfo *root)
Definition costsize.c:1204
void cost_index(IndexPath *path, PlannerInfo *root, double loop_count, bool partial_path)
Definition costsize.c:546
bool enable_incremental_sort
Definition costsize.c:152
bool is_projection_capable_path(Path *path)
static DataChecksumsWorkerOperation operation
#define ERROR
Definition elog.h:40
#define elog(elevel,...)
Definition elog.h:228
bool equal(const void *a, const void *b)
Definition equalfuncs.c:223
List *(* ReparameterizeForeignPathByChild_function)(PlannerInfo *root, List *fdw_private, RelOptInfo *child_rel)
Definition fdwapi.h:186
int work_mem
Definition globals.c:133
FILE * input
int b
Definition isn.c:74
int a
Definition isn.c:73
int i
Definition isn.c:77
List * lappend(List *list, void *datum)
Definition list.c:339
void list_sort(List *list, list_sort_comparator cmp)
Definition list.c:1674
List * list_concat(List *list1, const List *list2)
Definition list.c:561
List * lcons(void *datum, List *list)
Definition list.c:495
void list_free(List *list)
Definition list.c:1546
List * list_copy_head(const List *oldlist, int len)
Definition list.c:1593
List * list_insert_nth(List *list, int pos, void *datum)
Definition list.c:439
Datum subpath(PG_FUNCTION_ARGS)
Definition ltree_op.c:348
void pfree(void *pointer)
Definition mcxt.c:1619
MemoryContext GetMemoryChunkContext(void *pointer)
Definition mcxt.c:759
#define CHECK_FOR_INTERRUPTS()
Definition miscadmin.h:125
size_t get_hash_memory_limit(void)
Definition nodeHash.c:3680
Size EstimateSetOpHashTableSpace(double nentries, Size tupleWidth)
Definition nodeSetOp.c:116
SetOpCmd
Definition nodes.h:405
SetOpStrategy
Definition nodes.h:413
@ SETOP_SORTED
Definition nodes.h:414
#define IsA(nodeptr, _type_)
Definition nodes.h:162
double Cost
Definition nodes.h:259
#define nodeTag(nodeptr)
Definition nodes.h:137
double Cardinality
Definition nodes.h:260
CmdType
Definition nodes.h:271
@ CMD_MERGE
Definition nodes.h:277
@ CMD_UPDATE
Definition nodes.h:274
AggStrategy
Definition nodes.h:361
@ AGG_SORTED
Definition nodes.h:363
@ AGG_HASHED
Definition nodes.h:364
@ AGG_MIXED
Definition nodes.h:365
@ AGG_PLAIN
Definition nodes.h:362
AggSplit
Definition nodes.h:383
LimitOption
Definition nodes.h:439
#define makeNode(_type_)
Definition nodes.h:159
JoinType
Definition nodes.h:296
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition palloc.h:138
@ RTE_RELATION
bool pathkeys_count_contained_in(List *keys1, List *keys2, int *n_common)
Definition pathkeys.c:558
bool pathkeys_contained_in(List *keys1, List *keys2)
Definition pathkeys.c:343
PathKeysComparison compare_pathkeys(List *keys1, List *keys2)
Definition pathkeys.c:304
#define REPARAMETERIZE_CHILD_PATH_LIST(pathlist)
static int append_startup_cost_compare(const ListCell *a, const ListCell *b)
Definition pathnode.c:1506
#define REPARAMETERIZE_CHILD_PATH(path)
Relids calc_non_nestloop_required_outer(Path *outer_path, Path *inner_path)
Definition pathnode.c:2304
static PathCostComparison compare_path_costs_fuzzily(Path *path1, Path *path2, double fuzz_factor)
Definition pathnode.c:181
ForeignPath * create_foreign_upper_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, double rows, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Path *fdw_outerpath, List *fdw_restrictinfo, List *fdw_private)
Definition pathnode.c:2230
BitmapAndPath * create_bitmap_and_path(PlannerInfo *root, RelOptInfo *rel, List *bitmapquals)
Definition pathnode.c:1182
Path * create_functionscan_path(PlannerInfo *root, RelOptInfo *rel, List *pathkeys, Relids required_outer)
Definition pathnode.c:1939
bool path_is_reparameterizable_by_child(Path *path, RelOptInfo *child_rel)
Definition pathnode.c:4403
MemoizePath * create_memoize_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *param_exprs, List *hash_operators, bool singlerow, bool binary_mode, Cardinality est_calls)
Definition pathnode.c:1746
Path * create_valuesscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition pathnode.c:1991
MaterialPath * create_material_path(RelOptInfo *rel, Path *subpath, bool enabled)
Definition pathnode.c:1712
MinMaxAggPath * create_minmaxagg_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, List *mmaggregates, List *quals)
Definition pathnode.c:3312
bool add_partial_path_precheck(RelOptInfo *parent_rel, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys)
Definition pathnode.c:912
Path * create_worktablescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition pathnode.c:2095
static bool pathlist_is_reparameterizable_by_child(List *pathlist, RelOptInfo *child_rel)
Definition pathnode.c:4563
SetOpPath * create_setop_path(PlannerInfo *root, RelOptInfo *rel, Path *leftpath, Path *rightpath, SetOpCmd cmd, SetOpStrategy strategy, List *groupList, double numGroups, double outputRows)
Definition pathnode.c:3476
#define STD_FUZZ_FACTOR
Definition pathnode.c:47
Relids calc_nestloop_required_outer(Relids outerrelids, Relids outer_paramrels, Relids innerrelids, Relids inner_paramrels)
Definition pathnode.c:2277
IndexPath * create_index_path(PlannerInfo *root, IndexOptInfo *index, List *indexclauses, List *indexorderbys, List *indexorderbycols, List *pathkeys, ScanDirection indexscandir, bool indexonly, Relids required_outer, double loop_count, bool partial_path)
Definition pathnode.c:1092
ProjectSetPath * create_set_projection_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target)
Definition pathnode.c:2785
ProjectionPath * create_projection_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target)
Definition pathnode.c:2587
#define REJECT_IF_PATH_LIST_NOT_REPARAMETERIZABLE(pathlist)
TidRangePath * create_tidrangescan_path(PlannerInfo *root, RelOptInfo *rel, List *tidrangequals, Relids required_outer, int parallel_workers)
Definition pathnode.c:1315
static List * reparameterize_pathlist_by_child(PlannerInfo *root, List *pathlist, RelOptInfo *child_rel)
Definition pathnode.c:4534
WindowAggPath * create_windowagg_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, List *windowFuncs, List *runCondition, WindowClause *winclause, List *qual, bool topwindow)
Definition pathnode.c:3403
Path * reparameterize_path_by_child(PlannerInfo *root, Path *path, RelOptInfo *child_rel)
Definition pathnode.c:4107
LockRowsPath * create_lockrows_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *rowMarks, int epqParam)
Definition pathnode.c:3650
Path * apply_projection_to_path(PlannerInfo *root, RelOptInfo *rel, Path *path, PathTarget *target)
Definition pathnode.c:2696
Path * create_seqscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer, int parallel_workers)
Definition pathnode.c:1026
GatherMergePath * create_gather_merge_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, List *pathkeys, Relids required_outer, double *rows)
Definition pathnode.c:1813
HashPath * create_hashjoin_path(PlannerInfo *root, RelOptInfo *joinrel, JoinType jointype, JoinCostWorkspace *workspace, JoinPathExtraData *extra, Path *outer_path, Path *inner_path, bool parallel_hash, List *restrict_clauses, Relids required_outer, List *hashclauses)
Definition pathnode.c:2521
void set_cheapest(RelOptInfo *parent_rel)
Definition pathnode.c:268
void add_partial_path(RelOptInfo *parent_rel, Path *new_path)
Definition pathnode.c:793
LimitPath * create_limit_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, Node *limitOffset, Node *limitCount, LimitOption limitOption, int64 offset_est, int64 count_est)
Definition pathnode.c:3813
Path * create_namedtuplestorescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition pathnode.c:2043
SubqueryScanPath * create_subqueryscan_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, bool trivial_pathtarget, List *pathkeys, Relids required_outer)
Definition pathnode.c:1909
#define ADJUST_CHILD_ATTRS(node)
ModifyTablePath * create_modifytable_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, CmdType operation, bool canSetTag, Index nominalRelation, Index rootRelation, List *resultRelations, List *updateColnosLists, List *withCheckOptionLists, List *returningLists, List *rowMarks, OnConflictExpr *onconflict, List *mergeActionLists, List *mergeJoinConditions, ForPortionOfExpr *forPortionOf, int epqParam)
Definition pathnode.c:3712
int compare_fractional_path_costs(Path *path1, Path *path2, double fraction)
Definition pathnode.c:123
IncrementalSortPath * create_incremental_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, int presorted_keys, double limit_tuples)
Definition pathnode.c:2855
PathCostComparison
Definition pathnode.c:35
@ COSTS_EQUAL
Definition pathnode.c:36
@ COSTS_BETTER1
Definition pathnode.c:37
@ COSTS_BETTER2
Definition pathnode.c:38
@ COSTS_DIFFERENT
Definition pathnode.c:39
BitmapOrPath * create_bitmap_or_path(PlannerInfo *root, RelOptInfo *rel, List *bitmapquals)
Definition pathnode.c:1234
GroupingSetsPath * create_groupingsets_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *having_qual, AggStrategy aggstrategy, List *rollups, const AggClauseCosts *agg_costs)
Definition pathnode.c:3149
BitmapHeapPath * create_bitmap_heap_path(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual, Relids required_outer, double loop_count, int parallel_degree)
Definition pathnode.c:1149
Path * create_tablefuncscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition pathnode.c:1965
#define REJECT_IF_PATH_NOT_REPARAMETERIZABLE(path)
SortPath * create_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, double limit_tuples)
Definition pathnode.c:2904
GroupPath * create_group_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *groupClause, List *qual, double numGroups)
Definition pathnode.c:2948
ForeignPath * create_foreignscan_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, double rows, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Relids required_outer, Path *fdw_outerpath, List *fdw_restrictinfo, List *fdw_private)
Definition pathnode.c:2128
MergeAppendPath * create_merge_append_path(PlannerInfo *root, RelOptInfo *rel, List *subpaths, List *child_append_relid_sets, List *pathkeys, Relids required_outer)
Definition pathnode.c:1524
TidPath * create_tidscan_path(PlannerInfo *root, RelOptInfo *rel, List *tidquals, Relids required_outer)
Definition pathnode.c:1286
#define CONSIDER_PATH_STARTUP_COST(p)
GatherPath * create_gather_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, Relids required_outer, double *rows)
Definition pathnode.c:1865
Path * create_samplescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition pathnode.c:1051
ForeignPath * create_foreign_join_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, double rows, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Relids required_outer, Path *fdw_outerpath, List *fdw_restrictinfo, List *fdw_private)
Definition pathnode.c:2176
void add_path(RelOptInfo *parent_rel, Path *new_path)
Definition pathnode.c:459
int compare_path_costs(Path *path1, Path *path2, CostSelector criterion)
Definition pathnode.c:68
bool add_path_precheck(RelOptInfo *parent_rel, int disabled_nodes, Cost startup_cost, Cost total_cost, List *pathkeys, Relids required_outer)
Definition pathnode.c:686
static int append_total_cost_compare(const ListCell *a, const ListCell *b)
Definition pathnode.c:1484
Path * create_resultscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition pathnode.c:2069
AppendPath * create_append_path(PlannerInfo *root, RelOptInfo *rel, AppendPathInput input, List *pathkeys, Relids required_outer, int parallel_workers, bool parallel_aware, double rows)
Definition pathnode.c:1352
void adjust_limit_rows_costs(double *rows, Cost *startup_cost, Cost *total_cost, int64 offset_est, int64 count_est)
Definition pathnode.c:3869
Path * create_ctescan_path(PlannerInfo *root, RelOptInfo *rel, List *pathkeys, Relids required_outer)
Definition pathnode.c:2017
UniquePath * create_unique_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, int numCols, double numGroups)
Definition pathnode.c:3005
AggPath * create_agg_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, AggStrategy aggstrategy, AggSplit aggsplit, List *groupClause, List *qual, const AggClauseCosts *aggcosts, double numGroups)
Definition pathnode.c:3067
MergePath * create_mergejoin_path(PlannerInfo *root, RelOptInfo *joinrel, JoinType jointype, JoinCostWorkspace *workspace, JoinPathExtraData *extra, Path *outer_path, Path *inner_path, List *restrict_clauses, List *pathkeys, Relids required_outer, List *mergeclauses, List *outersortkeys, List *innersortkeys, int outer_presorted_keys)
Definition pathnode.c:2453
RecursiveUnionPath * create_recursiveunion_path(PlannerInfo *root, RelOptInfo *rel, Path *leftpath, Path *rightpath, PathTarget *target, List *distinctList, int wtParam, double numGroups)
Definition pathnode.c:3605
GroupResultPath * create_group_result_path(PlannerInfo *root, RelOptInfo *rel, PathTarget *target, List *havingqual)
Definition pathnode.c:1664
Path * reparameterize_path(PlannerInfo *root, Path *path, Relids required_outer, double loop_count)
Definition pathnode.c:3937
NestPath * create_nestloop_path(PlannerInfo *root, RelOptInfo *joinrel, JoinType jointype, JoinCostWorkspace *workspace, JoinPathExtraData *extra, Path *outer_path, Path *inner_path, List *restrict_clauses, List *pathkeys, Relids required_outer)
Definition pathnode.c:2356
#define IS_SIMPLE_REL(rel)
Definition pathnodes.h:989
CostSelector
Definition pathnodes.h:110
@ TOTAL_COST
Definition pathnodes.h:111
@ STARTUP_COST
Definition pathnodes.h:111
#define PATH_REQ_OUTER(path)
Definition pathnodes.h:2015
#define planner_rt_fetch(rti, root)
Definition pathnodes.h:704
@ RELOPT_BASEREL
Definition pathnodes.h:977
PathKeysComparison
Definition paths.h:218
@ PATHKEYS_BETTER2
Definition paths.h:221
@ PATHKEYS_BETTER1
Definition paths.h:220
@ PATHKEYS_DIFFERENT
Definition paths.h:222
@ PATHKEYS_EQUAL
Definition paths.h:219
#define lfirst(lc)
Definition pg_list.h:172
static int list_length(const List *l)
Definition pg_list.h:152
#define NIL
Definition pg_list.h:68
#define foreach_current_index(var_or_cell)
Definition pg_list.h:435
#define foreach_delete_current(lst, var_or_cell)
Definition pg_list.h:423
#define linitial(l)
Definition pg_list.h:178
static int fb(int x)
tree ctl root
Definition radixtree.h:1857
static int cmp(const chr *x, const chr *y, size_t len)
ParamPathInfo * get_appendrel_parampathinfo(RelOptInfo *appendrel, Relids required_outer)
Definition relnode.c:2015
ParamPathInfo * get_joinrel_parampathinfo(PlannerInfo *root, RelOptInfo *joinrel, Path *outer_path, Path *inner_path, SpecialJoinInfo *sjinfo, Relids required_outer, List **restrict_clauses)
Definition relnode.c:1818
ParamPathInfo * get_baserel_parampathinfo(PlannerInfo *root, RelOptInfo *baserel, Relids required_outer)
Definition relnode.c:1704
ParamPathInfo * find_param_path_info(RelOptInfo *rel, Relids required_outer)
Definition relnode.c:2048
Bitmapset * get_param_path_clause_serials(Path *path)
Definition relnode.c:2069
ScanDirection
Definition sdir.h:25
SpecialJoinInfo * sjinfo
Definition pathnodes.h:3623
Path * outerjoinpath
Definition pathnodes.h:2404
Path * innerjoinpath
Definition pathnodes.h:2405
List * joinrestrictinfo
Definition pathnodes.h:2407
Definition pg_list.h:54
Definition nodes.h:133
List * exprs
Definition pathnodes.h:1878
QualCost cost
Definition pathnodes.h:1884
List * pathkeys
Definition pathnodes.h:2011
NodeTag pathtype
Definition pathnodes.h:1971
Cardinality rows
Definition pathnodes.h:2005
Cost startup_cost
Definition pathnodes.h:2007
int parallel_workers
Definition pathnodes.h:2002
int disabled_nodes
Definition pathnodes.h:2006
Cost total_cost
Definition pathnodes.h:2008
bool parallel_aware
Definition pathnodes.h:1998
bool parallel_safe
Definition pathnodes.h:2000
Cost per_tuple
Definition pathnodes.h:121
Cost startup
Definition pathnodes.h:120
List * ppilist
Definition pathnodes.h:1051
Relids relids
Definition pathnodes.h:1021
struct PathTarget * reltarget
Definition pathnodes.h:1045
bool consider_parallel
Definition pathnodes.h:1037
Relids lateral_relids
Definition pathnodes.h:1064
RelOptKind reloptkind
Definition pathnodes.h:1015
Cardinality rows
Definition pathnodes.h:1027
Path path
Definition pathnodes.h:2537
Definition type.h:97
PathTarget * copy_pathtarget(PathTarget *src)
Definition tlist.c:666