PostgreSQL Source Code  git master
allpaths.c File Reference
#include "postgres.h"
#include <limits.h>
#include <math.h>
#include "access/sysattr.h"
#include "access/tsmapi.h"
#include "catalog/pg_class.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_proc.h"
#include "foreign/fdwapi.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
#include "nodes/supportnodes.h"
#include "optimizer/appendinfo.h"
#include "optimizer/clauses.h"
#include "optimizer/cost.h"
#include "optimizer/geqo.h"
#include "optimizer/optimizer.h"
#include "optimizer/pathnode.h"
#include "optimizer/paths.h"
#include "optimizer/plancat.h"
#include "optimizer/planner.h"
#include "optimizer/tlist.h"
#include "parser/parse_clause.h"
#include "parser/parsetree.h"
#include "partitioning/partbounds.h"
#include "port/pg_bitutils.h"
#include "rewrite/rewriteManip.h"
#include "utils/lsyscache.h"
Include dependency graph for allpaths.c:

Go to the source code of this file.

Data Structures

struct  pushdown_safety_info
 

Macros

#define UNSAFE_HAS_VOLATILE_FUNC   (1 << 0)
 
#define UNSAFE_HAS_SET_FUNC   (1 << 1)
 
#define UNSAFE_NOTIN_DISTINCTON_CLAUSE   (1 << 2)
 
#define UNSAFE_NOTIN_PARTITIONBY_CLAUSE   (1 << 3)
 
#define UNSAFE_TYPE_MISMATCH   (1 << 4)
 

Typedefs

typedef struct pushdown_safety_info pushdown_safety_info
 
typedef enum pushdown_safe_type pushdown_safe_type
 

Enumerations

enum  pushdown_safe_type { PUSHDOWN_UNSAFE , PUSHDOWN_SAFE , PUSHDOWN_WINDOWCLAUSE_RUNCOND }
 

Functions

static void set_base_rel_consider_startup (PlannerInfo *root)
 
static void set_base_rel_sizes (PlannerInfo *root)
 
static void set_base_rel_pathlists (PlannerInfo *root)
 
static void set_rel_size (PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
 
static void set_rel_pathlist (PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
 
static void set_plain_rel_size (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void create_plain_partial_paths (PlannerInfo *root, RelOptInfo *rel)
 
static void set_rel_consider_parallel (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_plain_rel_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_tablesample_rel_size (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_tablesample_rel_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_foreign_size (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_foreign_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_append_rel_size (PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
 
static void set_append_rel_pathlist (PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
 
static void generate_orderedappend_paths (PlannerInfo *root, RelOptInfo *rel, List *live_childrels, List *all_child_pathkeys)
 
static Pathget_cheapest_parameterized_child_path (PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
 
static void accumulate_append_subpath (Path *path, List **subpaths, List **special_subpaths)
 
static Pathget_singleton_append_subpath (Path *path)
 
static void set_dummy_rel_pathlist (RelOptInfo *rel)
 
static void set_subquery_pathlist (PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
 
static void set_function_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_values_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_tablefunc_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_cte_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_namedtuplestore_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_result_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static void set_worktable_pathlist (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
static RelOptInfomake_rel_from_joinlist (PlannerInfo *root, List *joinlist)
 
static bool subquery_is_pushdown_safe (Query *subquery, Query *topquery, pushdown_safety_info *safetyInfo)
 
static bool recurse_pushdown_safe (Node *setOp, Query *topquery, pushdown_safety_info *safetyInfo)
 
static void check_output_expressions (Query *subquery, pushdown_safety_info *safetyInfo)
 
static void compare_tlist_datatypes (List *tlist, List *colTypes, pushdown_safety_info *safetyInfo)
 
static bool targetIsInAllPartitionLists (TargetEntry *tle, Query *query)
 
static pushdown_safe_type qual_is_pushdown_safe (Query *subquery, Index rti, RestrictInfo *rinfo, pushdown_safety_info *safetyInfo)
 
static void subquery_push_qual (Query *subquery, RangeTblEntry *rte, Index rti, Node *qual)
 
static void recurse_push_qual (Node *setOp, Query *topquery, RangeTblEntry *rte, Index rti, Node *qual)
 
static void remove_unused_subquery_outputs (Query *subquery, RelOptInfo *rel, Bitmapset *extra_used_attrs)
 
RelOptInfomake_one_rel (PlannerInfo *root, List *joinlist)
 
void add_paths_to_append_rel (PlannerInfo *root, RelOptInfo *rel, List *live_childrels)
 
static bool find_window_run_conditions (Query *subquery, RangeTblEntry *rte, Index rti, AttrNumber attno, WindowFunc *wfunc, OpExpr *opexpr, bool wfunc_left, bool *keep_original, Bitmapset **run_cond_attrs)
 
static bool check_and_push_window_quals (Query *subquery, RangeTblEntry *rte, Index rti, Node *clause, Bitmapset **run_cond_attrs)
 
void generate_gather_paths (PlannerInfo *root, RelOptInfo *rel, bool override_rows)
 
static Listget_useful_pathkeys_for_relation (PlannerInfo *root, RelOptInfo *rel, bool require_parallel_safe)
 
void generate_useful_gather_paths (PlannerInfo *root, RelOptInfo *rel, bool override_rows)
 
RelOptInfostandard_join_search (PlannerInfo *root, int levels_needed, List *initial_rels)
 
void create_partial_bitmap_paths (PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual)
 
int compute_parallel_worker (RelOptInfo *rel, double heap_pages, double index_pages, int max_workers)
 
void generate_partitionwise_join_paths (PlannerInfo *root, RelOptInfo *rel)
 

Variables

bool enable_geqo = false
 
int geqo_threshold
 
int min_parallel_table_scan_size
 
int min_parallel_index_scan_size
 
set_rel_pathlist_hook_type set_rel_pathlist_hook = NULL
 
join_search_hook_type join_search_hook = NULL
 

Macro Definition Documentation

◆ UNSAFE_HAS_SET_FUNC

#define UNSAFE_HAS_SET_FUNC   (1 << 1)

Definition at line 54 of file allpaths.c.

◆ UNSAFE_HAS_VOLATILE_FUNC

#define UNSAFE_HAS_VOLATILE_FUNC   (1 << 0)

Definition at line 53 of file allpaths.c.

◆ UNSAFE_NOTIN_DISTINCTON_CLAUSE

#define UNSAFE_NOTIN_DISTINCTON_CLAUSE   (1 << 2)

Definition at line 55 of file allpaths.c.

◆ UNSAFE_NOTIN_PARTITIONBY_CLAUSE

#define UNSAFE_NOTIN_PARTITIONBY_CLAUSE   (1 << 3)

Definition at line 56 of file allpaths.c.

◆ UNSAFE_TYPE_MISMATCH

#define UNSAFE_TYPE_MISMATCH   (1 << 4)

Definition at line 57 of file allpaths.c.

Typedef Documentation

◆ pushdown_safe_type

◆ pushdown_safety_info

Enumeration Type Documentation

◆ pushdown_safe_type

Enumerator
PUSHDOWN_UNSAFE 
PUSHDOWN_SAFE 
PUSHDOWN_WINDOWCLAUSE_RUNCOND 

Definition at line 70 of file allpaths.c.

71 {
72  PUSHDOWN_UNSAFE, /* unsafe to push qual into subquery */
73  PUSHDOWN_SAFE, /* safe to push qual into subquery */
74  PUSHDOWN_WINDOWCLAUSE_RUNCOND, /* unsafe, but may work as WindowClause
75  * run condition */
pushdown_safe_type
Definition: allpaths.c:71
@ PUSHDOWN_WINDOWCLAUSE_RUNCOND
Definition: allpaths.c:74
@ PUSHDOWN_UNSAFE
Definition: allpaths.c:72
@ PUSHDOWN_SAFE
Definition: allpaths.c:73

Function Documentation

◆ accumulate_append_subpath()

static void accumulate_append_subpath ( Path path,
List **  subpaths,
List **  special_subpaths 
)
static

Definition at line 2095 of file allpaths.c.

2096 {
2097  if (IsA(path, AppendPath))
2098  {
2099  AppendPath *apath = (AppendPath *) path;
2100 
2101  if (!apath->path.parallel_aware || apath->first_partial_path == 0)
2102  {
2103  *subpaths = list_concat(*subpaths, apath->subpaths);
2104  return;
2105  }
2106  else if (special_subpaths != NULL)
2107  {
2108  List *new_special_subpaths;
2109 
2110  /* Split Parallel Append into partial and non-partial subpaths */
2111  *subpaths = list_concat(*subpaths,
2112  list_copy_tail(apath->subpaths,
2113  apath->first_partial_path));
2114  new_special_subpaths = list_copy_head(apath->subpaths,
2115  apath->first_partial_path);
2116  *special_subpaths = list_concat(*special_subpaths,
2117  new_special_subpaths);
2118  return;
2119  }
2120  }
2121  else if (IsA(path, MergeAppendPath))
2122  {
2123  MergeAppendPath *mpath = (MergeAppendPath *) path;
2124 
2125  *subpaths = list_concat(*subpaths, mpath->subpaths);
2126  return;
2127  }
2128 
2129  *subpaths = lappend(*subpaths, path);
2130 }
List * lappend(List *list, void *datum)
Definition: list.c:339
List * list_copy_head(const List *oldlist, int len)
Definition: list.c:1593
List * list_copy_tail(const List *oldlist, int nskip)
Definition: list.c:1613
List * list_concat(List *list1, const List *list2)
Definition: list.c:561
#define IsA(nodeptr, _type_)
Definition: nodes.h:158
int first_partial_path
Definition: pathnodes.h:1934
List * subpaths
Definition: pathnodes.h:1932
Definition: pg_list.h:54
bool parallel_aware
Definition: pathnodes.h:1653

References AppendPath::first_partial_path, IsA, lappend(), list_concat(), list_copy_head(), list_copy_tail(), Path::parallel_aware, AppendPath::path, AppendPath::subpaths, and MergeAppendPath::subpaths.

Referenced by add_paths_to_append_rel(), and generate_orderedappend_paths().

◆ add_paths_to_append_rel()

void add_paths_to_append_rel ( PlannerInfo root,
RelOptInfo rel,
List live_childrels 
)

Definition at line 1310 of file allpaths.c.

1312 {
1313  List *subpaths = NIL;
1314  bool subpaths_valid = true;
1315  List *startup_subpaths = NIL;
1316  bool startup_subpaths_valid = true;
1317  List *partial_subpaths = NIL;
1318  List *pa_partial_subpaths = NIL;
1319  List *pa_nonpartial_subpaths = NIL;
1320  bool partial_subpaths_valid = true;
1321  bool pa_subpaths_valid;
1322  List *all_child_pathkeys = NIL;
1323  List *all_child_outers = NIL;
1324  ListCell *l;
1325  double partial_rows = -1;
1326 
1327  /* If appropriate, consider parallel append */
1328  pa_subpaths_valid = enable_parallel_append && rel->consider_parallel;
1329 
1330  /*
1331  * For every non-dummy child, remember the cheapest path. Also, identify
1332  * all pathkeys (orderings) and parameterizations (required_outer sets)
1333  * available for the non-dummy member relations.
1334  */
1335  foreach(l, live_childrels)
1336  {
1337  RelOptInfo *childrel = lfirst(l);
1338  ListCell *lcp;
1339  Path *cheapest_partial_path = NULL;
1340 
1341  /*
1342  * If child has an unparameterized cheapest-total path, add that to
1343  * the unparameterized Append path we are constructing for the parent.
1344  * If not, there's no workable unparameterized path.
1345  *
1346  * With partitionwise aggregates, the child rel's pathlist may be
1347  * empty, so don't assume that a path exists here.
1348  */
1349  if (childrel->pathlist != NIL &&
1350  childrel->cheapest_total_path->param_info == NULL)
1352  &subpaths, NULL);
1353  else
1354  subpaths_valid = false;
1355 
1356  /*
1357  * When the planner is considering cheap startup plans, we'll also
1358  * collect all the cheapest_startup_paths (if set) and build an
1359  * AppendPath containing those as subpaths.
1360  */
1361  if (rel->consider_startup && childrel->cheapest_startup_path != NULL)
1362  {
1363  /* cheapest_startup_path must not be a parameterized path. */
1364  Assert(childrel->cheapest_startup_path->param_info == NULL);
1366  &startup_subpaths,
1367  NULL);
1368  }
1369  else
1370  startup_subpaths_valid = false;
1371 
1372 
1373  /* Same idea, but for a partial plan. */
1374  if (childrel->partial_pathlist != NIL)
1375  {
1376  cheapest_partial_path = linitial(childrel->partial_pathlist);
1377  accumulate_append_subpath(cheapest_partial_path,
1378  &partial_subpaths, NULL);
1379  }
1380  else
1381  partial_subpaths_valid = false;
1382 
1383  /*
1384  * Same idea, but for a parallel append mixing partial and non-partial
1385  * paths.
1386  */
1387  if (pa_subpaths_valid)
1388  {
1389  Path *nppath = NULL;
1390 
1391  nppath =
1393 
1394  if (cheapest_partial_path == NULL && nppath == NULL)
1395  {
1396  /* Neither a partial nor a parallel-safe path? Forget it. */
1397  pa_subpaths_valid = false;
1398  }
1399  else if (nppath == NULL ||
1400  (cheapest_partial_path != NULL &&
1401  cheapest_partial_path->total_cost < nppath->total_cost))
1402  {
1403  /* Partial path is cheaper or the only option. */
1404  Assert(cheapest_partial_path != NULL);
1405  accumulate_append_subpath(cheapest_partial_path,
1406  &pa_partial_subpaths,
1407  &pa_nonpartial_subpaths);
1408  }
1409  else
1410  {
1411  /*
1412  * Either we've got only a non-partial path, or we think that
1413  * a single backend can execute the best non-partial path
1414  * faster than all the parallel backends working together can
1415  * execute the best partial path.
1416  *
1417  * It might make sense to be more aggressive here. Even if
1418  * the best non-partial path is more expensive than the best
1419  * partial path, it could still be better to choose the
1420  * non-partial path if there are several such paths that can
1421  * be given to different workers. For now, we don't try to
1422  * figure that out.
1423  */
1425  &pa_nonpartial_subpaths,
1426  NULL);
1427  }
1428  }
1429 
1430  /*
1431  * Collect lists of all the available path orderings and
1432  * parameterizations for all the children. We use these as a
1433  * heuristic to indicate which sort orderings and parameterizations we
1434  * should build Append and MergeAppend paths for.
1435  */
1436  foreach(lcp, childrel->pathlist)
1437  {
1438  Path *childpath = (Path *) lfirst(lcp);
1439  List *childkeys = childpath->pathkeys;
1440  Relids childouter = PATH_REQ_OUTER(childpath);
1441 
1442  /* Unsorted paths don't contribute to pathkey list */
1443  if (childkeys != NIL)
1444  {
1445  ListCell *lpk;
1446  bool found = false;
1447 
1448  /* Have we already seen this ordering? */
1449  foreach(lpk, all_child_pathkeys)
1450  {
1451  List *existing_pathkeys = (List *) lfirst(lpk);
1452 
1453  if (compare_pathkeys(existing_pathkeys,
1454  childkeys) == PATHKEYS_EQUAL)
1455  {
1456  found = true;
1457  break;
1458  }
1459  }
1460  if (!found)
1461  {
1462  /* No, so add it to all_child_pathkeys */
1463  all_child_pathkeys = lappend(all_child_pathkeys,
1464  childkeys);
1465  }
1466  }
1467 
1468  /* Unparameterized paths don't contribute to param-set list */
1469  if (childouter)
1470  {
1471  ListCell *lco;
1472  bool found = false;
1473 
1474  /* Have we already seen this param set? */
1475  foreach(lco, all_child_outers)
1476  {
1477  Relids existing_outers = (Relids) lfirst(lco);
1478 
1479  if (bms_equal(existing_outers, childouter))
1480  {
1481  found = true;
1482  break;
1483  }
1484  }
1485  if (!found)
1486  {
1487  /* No, so add it to all_child_outers */
1488  all_child_outers = lappend(all_child_outers,
1489  childouter);
1490  }
1491  }
1492  }
1493  }
1494 
1495  /*
1496  * If we found unparameterized paths for all children, build an unordered,
1497  * unparameterized Append path for the rel. (Note: this is correct even
1498  * if we have zero or one live subpath due to constraint exclusion.)
1499  */
1500  if (subpaths_valid)
1501  add_path(rel, (Path *) create_append_path(root, rel, subpaths, NIL,
1502  NIL, NULL, 0, false,
1503  -1));
1504 
1505  /* build an AppendPath for the cheap startup paths, if valid */
1506  if (startup_subpaths_valid)
1507  add_path(rel, (Path *) create_append_path(root, rel, startup_subpaths,
1508  NIL, NIL, NULL, 0, false, -1));
1509 
1510  /*
1511  * Consider an append of unordered, unparameterized partial paths. Make
1512  * it parallel-aware if possible.
1513  */
1514  if (partial_subpaths_valid && partial_subpaths != NIL)
1515  {
1516  AppendPath *appendpath;
1517  ListCell *lc;
1518  int parallel_workers = 0;
1519 
1520  /* Find the highest number of workers requested for any subpath. */
1521  foreach(lc, partial_subpaths)
1522  {
1523  Path *path = lfirst(lc);
1524 
1525  parallel_workers = Max(parallel_workers, path->parallel_workers);
1526  }
1527  Assert(parallel_workers > 0);
1528 
1529  /*
1530  * If the use of parallel append is permitted, always request at least
1531  * log2(# of children) workers. We assume it can be useful to have
1532  * extra workers in this case because they will be spread out across
1533  * the children. The precise formula is just a guess, but we don't
1534  * want to end up with a radically different answer for a table with N
1535  * partitions vs. an unpartitioned table with the same data, so the
1536  * use of some kind of log-scaling here seems to make some sense.
1537  */
1539  {
1540  parallel_workers = Max(parallel_workers,
1541  pg_leftmost_one_pos32(list_length(live_childrels)) + 1);
1542  parallel_workers = Min(parallel_workers,
1544  }
1545  Assert(parallel_workers > 0);
1546 
1547  /* Generate a partial append path. */
1548  appendpath = create_append_path(root, rel, NIL, partial_subpaths,
1549  NIL, NULL, parallel_workers,
1551  -1);
1552 
1553  /*
1554  * Make sure any subsequent partial paths use the same row count
1555  * estimate.
1556  */
1557  partial_rows = appendpath->path.rows;
1558 
1559  /* Add the path. */
1560  add_partial_path(rel, (Path *) appendpath);
1561  }
1562 
1563  /*
1564  * Consider a parallel-aware append using a mix of partial and non-partial
1565  * paths. (This only makes sense if there's at least one child which has
1566  * a non-partial path that is substantially cheaper than any partial path;
1567  * otherwise, we should use the append path added in the previous step.)
1568  */
1569  if (pa_subpaths_valid && pa_nonpartial_subpaths != NIL)
1570  {
1571  AppendPath *appendpath;
1572  ListCell *lc;
1573  int parallel_workers = 0;
1574 
1575  /*
1576  * Find the highest number of workers requested for any partial
1577  * subpath.
1578  */
1579  foreach(lc, pa_partial_subpaths)
1580  {
1581  Path *path = lfirst(lc);
1582 
1583  parallel_workers = Max(parallel_workers, path->parallel_workers);
1584  }
1585 
1586  /*
1587  * Same formula here as above. It's even more important in this
1588  * instance because the non-partial paths won't contribute anything to
1589  * the planned number of parallel workers.
1590  */
1591  parallel_workers = Max(parallel_workers,
1592  pg_leftmost_one_pos32(list_length(live_childrels)) + 1);
1593  parallel_workers = Min(parallel_workers,
1595  Assert(parallel_workers > 0);
1596 
1597  appendpath = create_append_path(root, rel, pa_nonpartial_subpaths,
1598  pa_partial_subpaths,
1599  NIL, NULL, parallel_workers, true,
1600  partial_rows);
1601  add_partial_path(rel, (Path *) appendpath);
1602  }
1603 
1604  /*
1605  * Also build unparameterized ordered append paths based on the collected
1606  * list of child pathkeys.
1607  */
1608  if (subpaths_valid)
1609  generate_orderedappend_paths(root, rel, live_childrels,
1610  all_child_pathkeys);
1611 
1612  /*
1613  * Build Append paths for each parameterization seen among the child rels.
1614  * (This may look pretty expensive, but in most cases of practical
1615  * interest, the child rels will expose mostly the same parameterizations,
1616  * so that not that many cases actually get considered here.)
1617  *
1618  * The Append node itself cannot enforce quals, so all qual checking must
1619  * be done in the child paths. This means that to have a parameterized
1620  * Append path, we must have the exact same parameterization for each
1621  * child path; otherwise some children might be failing to check the
1622  * moved-down quals. To make them match up, we can try to increase the
1623  * parameterization of lesser-parameterized paths.
1624  */
1625  foreach(l, all_child_outers)
1626  {
1627  Relids required_outer = (Relids) lfirst(l);
1628  ListCell *lcr;
1629 
1630  /* Select the child paths for an Append with this parameterization */
1631  subpaths = NIL;
1632  subpaths_valid = true;
1633  foreach(lcr, live_childrels)
1634  {
1635  RelOptInfo *childrel = (RelOptInfo *) lfirst(lcr);
1636  Path *subpath;
1637 
1638  if (childrel->pathlist == NIL)
1639  {
1640  /* failed to make a suitable path for this child */
1641  subpaths_valid = false;
1642  break;
1643  }
1644 
1646  childrel,
1647  required_outer);
1648  if (subpath == NULL)
1649  {
1650  /* failed to make a suitable path for this child */
1651  subpaths_valid = false;
1652  break;
1653  }
1654  accumulate_append_subpath(subpath, &subpaths, NULL);
1655  }
1656 
1657  if (subpaths_valid)
1658  add_path(rel, (Path *)
1659  create_append_path(root, rel, subpaths, NIL,
1660  NIL, required_outer, 0, false,
1661  -1));
1662  }
1663 
1664  /*
1665  * When there is only a single child relation, the Append path can inherit
1666  * any ordering available for the child rel's path, so that it's useful to
1667  * consider ordered partial paths. Above we only considered the cheapest
1668  * partial path for each child, but let's also make paths using any
1669  * partial paths that have pathkeys.
1670  */
1671  if (list_length(live_childrels) == 1)
1672  {
1673  RelOptInfo *childrel = (RelOptInfo *) linitial(live_childrels);
1674 
1675  /* skip the cheapest partial path, since we already used that above */
1676  for_each_from(l, childrel->partial_pathlist, 1)
1677  {
1678  Path *path = (Path *) lfirst(l);
1679  AppendPath *appendpath;
1680 
1681  /* skip paths with no pathkeys. */
1682  if (path->pathkeys == NIL)
1683  continue;
1684 
1685  appendpath = create_append_path(root, rel, NIL, list_make1(path),
1686  NIL, NULL,
1687  path->parallel_workers, true,
1688  partial_rows);
1689  add_partial_path(rel, (Path *) appendpath);
1690  }
1691  }
1692 }
static Path * get_cheapest_parameterized_child_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: allpaths.c:2007
static void generate_orderedappend_paths(PlannerInfo *root, RelOptInfo *rel, List *live_childrels, List *all_child_pathkeys)
Definition: allpaths.c:1722
static void accumulate_append_subpath(Path *path, List **subpaths, List **special_subpaths)
Definition: allpaths.c:2095
bool bms_equal(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:142
#define Min(x, y)
Definition: c.h:1004
#define Max(x, y)
Definition: c.h:998
#define Assert(condition)
Definition: c.h:858
int max_parallel_workers_per_gather
Definition: costsize.c:132
bool enable_parallel_append
Definition: costsize.c:150
Datum subpath(PG_FUNCTION_ARGS)
Definition: ltree_op.c:310
Path * get_cheapest_parallel_safe_total_inner(List *paths)
Definition: pathkeys.c:697
PathKeysComparison compare_pathkeys(List *keys1, List *keys2)
Definition: pathkeys.c:302
AppendPath * create_append_path(PlannerInfo *root, RelOptInfo *rel, List *subpaths, List *partial_subpaths, List *pathkeys, Relids required_outer, int parallel_workers, bool parallel_aware, double rows)
Definition: pathnode.c:1244
void add_partial_path(RelOptInfo *parent_rel, Path *new_path)
Definition: pathnode.c:747
void add_path(RelOptInfo *parent_rel, Path *new_path)
Definition: pathnode.c:420
#define PATH_REQ_OUTER(path)
Definition: pathnodes.h:1669
Bitmapset * Relids
Definition: pathnodes.h:30
@ PATHKEYS_EQUAL
Definition: paths.h:202
static int pg_leftmost_one_pos32(uint32 word)
Definition: pg_bitutils.h:41
#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 list_make1(x1)
Definition: pg_list.h:212
#define for_each_from(cell, lst, N)
Definition: pg_list.h:414
#define linitial(l)
Definition: pg_list.h:178
tree ctl root
Definition: radixtree.h:1886
List * pathkeys
Definition: pathnodes.h:1665
Cardinality rows
Definition: pathnodes.h:1660
int parallel_workers
Definition: pathnodes.h:1657
Cost total_cost
Definition: pathnodes.h:1662
bool consider_parallel
Definition: pathnodes.h:881
List * pathlist
Definition: pathnodes.h:892
struct Path * cheapest_startup_path
Definition: pathnodes.h:895
struct Path * cheapest_total_path
Definition: pathnodes.h:896
bool consider_startup
Definition: pathnodes.h:877
List * partial_pathlist
Definition: pathnodes.h:894

References accumulate_append_subpath(), add_partial_path(), add_path(), Assert, bms_equal(), RelOptInfo::cheapest_startup_path, RelOptInfo::cheapest_total_path, compare_pathkeys(), RelOptInfo::consider_parallel, RelOptInfo::consider_startup, create_append_path(), enable_parallel_append, for_each_from, generate_orderedappend_paths(), get_cheapest_parallel_safe_total_inner(), get_cheapest_parameterized_child_path(), lappend(), lfirst, linitial, list_length(), list_make1, Max, max_parallel_workers_per_gather, Min, NIL, Path::parallel_workers, RelOptInfo::partial_pathlist, AppendPath::path, PATH_REQ_OUTER, Path::pathkeys, PATHKEYS_EQUAL, RelOptInfo::pathlist, pg_leftmost_one_pos32(), root, Path::rows, subpath(), and Path::total_cost.

Referenced by apply_scanjoin_target_to_paths(), create_partitionwise_grouping_paths(), generate_partitionwise_join_paths(), and set_append_rel_pathlist().

◆ check_and_push_window_quals()

static bool check_and_push_window_quals ( Query subquery,
RangeTblEntry rte,
Index  rti,
Node clause,
Bitmapset **  run_cond_attrs 
)
static

Definition at line 2415 of file allpaths.c.

2417 {
2418  OpExpr *opexpr = (OpExpr *) clause;
2419  bool keep_original = true;
2420  Var *var1;
2421  Var *var2;
2422 
2423  /* We're only able to use OpExprs with 2 operands */
2424  if (!IsA(opexpr, OpExpr))
2425  return true;
2426 
2427  if (list_length(opexpr->args) != 2)
2428  return true;
2429 
2430  /*
2431  * Currently, we restrict this optimization to strict OpExprs. The reason
2432  * for this is that during execution, once the runcondition becomes false,
2433  * we stop evaluating WindowFuncs. To avoid leaving around stale window
2434  * function result values, we set them to NULL. Having only strict
2435  * OpExprs here ensures that we properly filter out the tuples with NULLs
2436  * in the top-level WindowAgg.
2437  */
2438  set_opfuncid(opexpr);
2439  if (!func_strict(opexpr->opfuncid))
2440  return true;
2441 
2442  /*
2443  * Check for plain Vars that reference window functions in the subquery.
2444  * If we find any, we'll ask find_window_run_conditions() if 'opexpr' can
2445  * be used as part of the run condition.
2446  */
2447 
2448  /* Check the left side of the OpExpr */
2449  var1 = linitial(opexpr->args);
2450  if (IsA(var1, Var) && var1->varattno > 0)
2451  {
2452  TargetEntry *tle = list_nth(subquery->targetList, var1->varattno - 1);
2453  WindowFunc *wfunc = (WindowFunc *) tle->expr;
2454 
2455  if (find_window_run_conditions(subquery, rte, rti, tle->resno, wfunc,
2456  opexpr, true, &keep_original,
2457  run_cond_attrs))
2458  return keep_original;
2459  }
2460 
2461  /* and check the right side */
2462  var2 = lsecond(opexpr->args);
2463  if (IsA(var2, Var) && var2->varattno > 0)
2464  {
2465  TargetEntry *tle = list_nth(subquery->targetList, var2->varattno - 1);
2466  WindowFunc *wfunc = (WindowFunc *) tle->expr;
2467 
2468  if (find_window_run_conditions(subquery, rte, rti, tle->resno, wfunc,
2469  opexpr, false, &keep_original,
2470  run_cond_attrs))
2471  return keep_original;
2472  }
2473 
2474  return true;
2475 }
static bool find_window_run_conditions(Query *subquery, RangeTblEntry *rte, Index rti, AttrNumber attno, WindowFunc *wfunc, OpExpr *opexpr, bool wfunc_left, bool *keep_original, Bitmapset **run_cond_attrs)
Definition: allpaths.c:2222
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
bool func_strict(Oid funcid)
Definition: lsyscache.c:1761
void set_opfuncid(OpExpr *opexpr)
Definition: nodeFuncs.c:1862
#define lsecond(l)
Definition: pg_list.h:183
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299
List * args
Definition: primnodes.h:836
List * targetList
Definition: parsenodes.h:191
Expr * expr
Definition: primnodes.h:2186
AttrNumber resno
Definition: primnodes.h:2188
Definition: primnodes.h:248
AttrNumber varattno
Definition: primnodes.h:260

References OpExpr::args, TargetEntry::expr, find_window_run_conditions(), func_strict(), if(), IsA, linitial, list_length(), list_nth(), lsecond, TargetEntry::resno, set_opfuncid(), Query::targetList, and Var::varattno.

Referenced by set_subquery_pathlist().

◆ check_output_expressions()

static void check_output_expressions ( Query subquery,
pushdown_safety_info safetyInfo 
)
static

Definition at line 3714 of file allpaths.c.

3715 {
3716  ListCell *lc;
3717 
3718  foreach(lc, subquery->targetList)
3719  {
3720  TargetEntry *tle = (TargetEntry *) lfirst(lc);
3721 
3722  if (tle->resjunk)
3723  continue; /* ignore resjunk columns */
3724 
3725  /* Functions returning sets are unsafe (point 1) */
3726  if (subquery->hasTargetSRFs &&
3727  (safetyInfo->unsafeFlags[tle->resno] &
3728  UNSAFE_HAS_SET_FUNC) == 0 &&
3729  expression_returns_set((Node *) tle->expr))
3730  {
3731  safetyInfo->unsafeFlags[tle->resno] |= UNSAFE_HAS_SET_FUNC;
3732  continue;
3733  }
3734 
3735  /* Volatile functions are unsafe (point 2) */
3736  if ((safetyInfo->unsafeFlags[tle->resno] &
3737  UNSAFE_HAS_VOLATILE_FUNC) == 0 &&
3739  {
3740  safetyInfo->unsafeFlags[tle->resno] |= UNSAFE_HAS_VOLATILE_FUNC;
3741  continue;
3742  }
3743 
3744  /* If subquery uses DISTINCT ON, check point 3 */
3745  if (subquery->hasDistinctOn &&
3746  (safetyInfo->unsafeFlags[tle->resno] &
3748  !targetIsInSortList(tle, InvalidOid, subquery->distinctClause))
3749  {
3750  /* non-DISTINCT column, so mark it unsafe */
3751  safetyInfo->unsafeFlags[tle->resno] |= UNSAFE_NOTIN_DISTINCTON_CLAUSE;
3752  continue;
3753  }
3754 
3755  /* If subquery uses window functions, check point 4 */
3756  if (subquery->hasWindowFuncs &&
3757  (safetyInfo->unsafeFlags[tle->resno] &
3759  !targetIsInAllPartitionLists(tle, subquery))
3760  {
3761  /* not present in all PARTITION BY clauses, so mark it unsafe */
3762  safetyInfo->unsafeFlags[tle->resno] |= UNSAFE_NOTIN_PARTITIONBY_CLAUSE;
3763  continue;
3764  }
3765  }
3766 }
#define UNSAFE_HAS_VOLATILE_FUNC
Definition: allpaths.c:53
#define UNSAFE_NOTIN_DISTINCTON_CLAUSE
Definition: allpaths.c:55
static bool targetIsInAllPartitionLists(TargetEntry *tle, Query *query)
Definition: allpaths.c:3819
#define UNSAFE_HAS_SET_FUNC
Definition: allpaths.c:54
#define UNSAFE_NOTIN_PARTITIONBY_CLAUSE
Definition: allpaths.c:56
bool contain_volatile_functions(Node *clause)
Definition: clauses.c:538
bool expression_returns_set(Node *clause)
Definition: nodeFuncs.c:758
bool targetIsInSortList(TargetEntry *tle, Oid sortop, List *sortList)
#define InvalidOid
Definition: postgres_ext.h:36
Definition: nodes.h:129
List * distinctClause
Definition: parsenodes.h:209
unsigned char * unsafeFlags
Definition: allpaths.c:62

References contain_volatile_functions(), Query::distinctClause, TargetEntry::expr, expression_returns_set(), InvalidOid, lfirst, TargetEntry::resno, targetIsInAllPartitionLists(), targetIsInSortList(), Query::targetList, UNSAFE_HAS_SET_FUNC, UNSAFE_HAS_VOLATILE_FUNC, UNSAFE_NOTIN_DISTINCTON_CLAUSE, UNSAFE_NOTIN_PARTITIONBY_CLAUSE, and pushdown_safety_info::unsafeFlags.

Referenced by subquery_is_pushdown_safe().

◆ compare_tlist_datatypes()

static void compare_tlist_datatypes ( List tlist,
List colTypes,
pushdown_safety_info safetyInfo 
)
static

Definition at line 3786 of file allpaths.c.

3788 {
3789  ListCell *l;
3790  ListCell *colType = list_head(colTypes);
3791 
3792  foreach(l, tlist)
3793  {
3794  TargetEntry *tle = (TargetEntry *) lfirst(l);
3795 
3796  if (tle->resjunk)
3797  continue; /* ignore resjunk columns */
3798  if (colType == NULL)
3799  elog(ERROR, "wrong number of tlist entries");
3800  if (exprType((Node *) tle->expr) != lfirst_oid(colType))
3801  safetyInfo->unsafeFlags[tle->resno] |= UNSAFE_TYPE_MISMATCH;
3802  colType = lnext(colTypes, colType);
3803  }
3804  if (colType != NULL)
3805  elog(ERROR, "wrong number of tlist entries");
3806 }
#define UNSAFE_TYPE_MISMATCH
Definition: allpaths.c:57
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:42
static ListCell * list_head(const List *l)
Definition: pg_list.h:128
static ListCell * lnext(const List *l, const ListCell *c)
Definition: pg_list.h:343
#define lfirst_oid(lc)
Definition: pg_list.h:174

References elog, ERROR, TargetEntry::expr, exprType(), lfirst, lfirst_oid, list_head(), lnext(), TargetEntry::resno, UNSAFE_TYPE_MISMATCH, and pushdown_safety_info::unsafeFlags.

Referenced by subquery_is_pushdown_safe().

◆ compute_parallel_worker()

int compute_parallel_worker ( RelOptInfo rel,
double  heap_pages,
double  index_pages,
int  max_workers 
)

Definition at line 4210 of file allpaths.c.

4212 {
4213  int parallel_workers = 0;
4214 
4215  /*
4216  * If the user has set the parallel_workers reloption, use that; otherwise
4217  * select a default number of workers.
4218  */
4219  if (rel->rel_parallel_workers != -1)
4220  parallel_workers = rel->rel_parallel_workers;
4221  else
4222  {
4223  /*
4224  * If the number of pages being scanned is insufficient to justify a
4225  * parallel scan, just return zero ... unless it's an inheritance
4226  * child. In that case, we want to generate a parallel path here
4227  * anyway. It might not be worthwhile just for this relation, but
4228  * when combined with all of its inheritance siblings it may well pay
4229  * off.
4230  */
4231  if (rel->reloptkind == RELOPT_BASEREL &&
4232  ((heap_pages >= 0 && heap_pages < min_parallel_table_scan_size) ||
4233  (index_pages >= 0 && index_pages < min_parallel_index_scan_size)))
4234  return 0;
4235 
4236  if (heap_pages >= 0)
4237  {
4238  int heap_parallel_threshold;
4239  int heap_parallel_workers = 1;
4240 
4241  /*
4242  * Select the number of workers based on the log of the size of
4243  * the relation. This probably needs to be a good deal more
4244  * sophisticated, but we need something here for now. Note that
4245  * the upper limit of the min_parallel_table_scan_size GUC is
4246  * chosen to prevent overflow here.
4247  */
4248  heap_parallel_threshold = Max(min_parallel_table_scan_size, 1);
4249  while (heap_pages >= (BlockNumber) (heap_parallel_threshold * 3))
4250  {
4251  heap_parallel_workers++;
4252  heap_parallel_threshold *= 3;
4253  if (heap_parallel_threshold > INT_MAX / 3)
4254  break; /* avoid overflow */
4255  }
4256 
4257  parallel_workers = heap_parallel_workers;
4258  }
4259 
4260  if (index_pages >= 0)
4261  {
4262  int index_parallel_workers = 1;
4263  int index_parallel_threshold;
4264 
4265  /* same calculation as for heap_pages above */
4266  index_parallel_threshold = Max(min_parallel_index_scan_size, 1);
4267  while (index_pages >= (BlockNumber) (index_parallel_threshold * 3))
4268  {
4269  index_parallel_workers++;
4270  index_parallel_threshold *= 3;
4271  if (index_parallel_threshold > INT_MAX / 3)
4272  break; /* avoid overflow */
4273  }
4274 
4275  if (parallel_workers > 0)
4276  parallel_workers = Min(parallel_workers, index_parallel_workers);
4277  else
4278  parallel_workers = index_parallel_workers;
4279  }
4280  }
4281 
4282  /* In no case use more than caller supplied maximum number of workers */
4283  parallel_workers = Min(parallel_workers, max_workers);
4284 
4285  return parallel_workers;
4286 }
int min_parallel_index_scan_size
Definition: allpaths.c:82
int min_parallel_table_scan_size
Definition: allpaths.c:81
uint32 BlockNumber
Definition: block.h:31
@ RELOPT_BASEREL
Definition: pathnodes.h:821
RelOptKind reloptkind
Definition: pathnodes.h:859
int rel_parallel_workers
Definition: pathnodes.h:950

References Max, Min, min_parallel_index_scan_size, min_parallel_table_scan_size, RelOptInfo::rel_parallel_workers, RELOPT_BASEREL, and RelOptInfo::reloptkind.

Referenced by cost_index(), create_partial_bitmap_paths(), create_plain_partial_paths(), and plan_create_index_workers().

◆ create_partial_bitmap_paths()

void create_partial_bitmap_paths ( PlannerInfo root,
RelOptInfo rel,
Path bitmapqual 
)

Definition at line 4174 of file allpaths.c.

4176 {
4177  int parallel_workers;
4178  double pages_fetched;
4179 
4180  /* Compute heap pages for bitmap heap scan */
4181  pages_fetched = compute_bitmap_pages(root, rel, bitmapqual, 1.0,
4182  NULL, NULL);
4183 
4184  parallel_workers = compute_parallel_worker(rel, pages_fetched, -1,
4186 
4187  if (parallel_workers <= 0)
4188  return;
4189 
4191  bitmapqual, rel->lateral_relids, 1.0, parallel_workers));
4192 }
int compute_parallel_worker(RelOptInfo *rel, double heap_pages, double index_pages, int max_workers)
Definition: allpaths.c:4210
double compute_bitmap_pages(PlannerInfo *root, RelOptInfo *baserel, Path *bitmapqual, double loop_count, Cost *cost_p, double *tuples_p)
Definition: costsize.c:6377
BitmapHeapPath * create_bitmap_heap_path(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual, Relids required_outer, double loop_count, int parallel_degree)
Definition: pathnode.c:1042
Relids lateral_relids
Definition: pathnodes.h:907

References add_partial_path(), compute_bitmap_pages(), compute_parallel_worker(), create_bitmap_heap_path(), RelOptInfo::lateral_relids, max_parallel_workers_per_gather, and root.

Referenced by create_index_paths().

◆ create_plain_partial_paths()

static void create_plain_partial_paths ( PlannerInfo root,
RelOptInfo rel 
)
static

Definition at line 802 of file allpaths.c.

803 {
804  int parallel_workers;
805 
806  parallel_workers = compute_parallel_worker(rel, rel->pages, -1,
808 
809  /* If any limit was set to zero, the user doesn't want a parallel scan. */
810  if (parallel_workers <= 0)
811  return;
812 
813  /* Add an unordered partial path based on a parallel sequential scan. */
814  add_partial_path(rel, create_seqscan_path(root, rel, NULL, parallel_workers));
815 }
Path * create_seqscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer, int parallel_workers)
Definition: pathnode.c:927
BlockNumber pages
Definition: pathnodes.h:942

References add_partial_path(), compute_parallel_worker(), create_seqscan_path(), max_parallel_workers_per_gather, RelOptInfo::pages, and root.

Referenced by set_plain_rel_pathlist().

◆ find_window_run_conditions()

static bool find_window_run_conditions ( Query subquery,
RangeTblEntry rte,
Index  rti,
AttrNumber  attno,
WindowFunc wfunc,
OpExpr opexpr,
bool  wfunc_left,
bool keep_original,
Bitmapset **  run_cond_attrs 
)
static

Definition at line 2222 of file allpaths.c.

2226 {
2227  Oid prosupport;
2228  Expr *otherexpr;
2231  WindowClause *wclause;
2232  List *opinfos;
2233  OpExpr *runopexpr;
2234  Oid runoperator;
2235  ListCell *lc;
2236 
2237  *keep_original = true;
2238 
2239  while (IsA(wfunc, RelabelType))
2240  wfunc = (WindowFunc *) ((RelabelType *) wfunc)->arg;
2241 
2242  /* we can only work with window functions */
2243  if (!IsA(wfunc, WindowFunc))
2244  return false;
2245 
2246  /* can't use it if there are subplans in the WindowFunc */
2247  if (contain_subplans((Node *) wfunc))
2248  return false;
2249 
2250  prosupport = get_func_support(wfunc->winfnoid);
2251 
2252  /* Check if there's a support function for 'wfunc' */
2253  if (!OidIsValid(prosupport))
2254  return false;
2255 
2256  /* get the Expr from the other side of the OpExpr */
2257  if (wfunc_left)
2258  otherexpr = lsecond(opexpr->args);
2259  else
2260  otherexpr = linitial(opexpr->args);
2261 
2262  /*
2263  * The value being compared must not change during the evaluation of the
2264  * window partition.
2265  */
2266  if (!is_pseudo_constant_clause((Node *) otherexpr))
2267  return false;
2268 
2269  /* find the window clause belonging to the window function */
2270  wclause = (WindowClause *) list_nth(subquery->windowClause,
2271  wfunc->winref - 1);
2272 
2273  req.type = T_SupportRequestWFuncMonotonic;
2274  req.window_func = wfunc;
2275  req.window_clause = wclause;
2276 
2277  /* call the support function */
2279  DatumGetPointer(OidFunctionCall1(prosupport,
2280  PointerGetDatum(&req)));
2281 
2282  /*
2283  * Nothing to do if the function is neither monotonically increasing nor
2284  * monotonically decreasing.
2285  */
2286  if (res == NULL || res->monotonic == MONOTONICFUNC_NONE)
2287  return false;
2288 
2289  runopexpr = NULL;
2290  runoperator = InvalidOid;
2291  opinfos = get_op_btree_interpretation(opexpr->opno);
2292 
2293  foreach(lc, opinfos)
2294  {
2296  int strategy = opinfo->strategy;
2297 
2298  /* handle < / <= */
2299  if (strategy == BTLessStrategyNumber ||
2300  strategy == BTLessEqualStrategyNumber)
2301  {
2302  /*
2303  * < / <= is supported for monotonically increasing functions in
2304  * the form <wfunc> op <pseudoconst> and <pseudoconst> op <wfunc>
2305  * for monotonically decreasing functions.
2306  */
2307  if ((wfunc_left && (res->monotonic & MONOTONICFUNC_INCREASING)) ||
2308  (!wfunc_left && (res->monotonic & MONOTONICFUNC_DECREASING)))
2309  {
2310  *keep_original = false;
2311  runopexpr = opexpr;
2312  runoperator = opexpr->opno;
2313  }
2314  break;
2315  }
2316  /* handle > / >= */
2317  else if (strategy == BTGreaterStrategyNumber ||
2318  strategy == BTGreaterEqualStrategyNumber)
2319  {
2320  /*
2321  * > / >= is supported for monotonically decreasing functions in
2322  * the form <wfunc> op <pseudoconst> and <pseudoconst> op <wfunc>
2323  * for monotonically increasing functions.
2324  */
2325  if ((wfunc_left && (res->monotonic & MONOTONICFUNC_DECREASING)) ||
2326  (!wfunc_left && (res->monotonic & MONOTONICFUNC_INCREASING)))
2327  {
2328  *keep_original = false;
2329  runopexpr = opexpr;
2330  runoperator = opexpr->opno;
2331  }
2332  break;
2333  }
2334  /* handle = */
2335  else if (strategy == BTEqualStrategyNumber)
2336  {
2337  int16 newstrategy;
2338 
2339  /*
2340  * When both monotonically increasing and decreasing then the
2341  * return value of the window function will be the same each time.
2342  * We can simply use 'opexpr' as the run condition without
2343  * modifying it.
2344  */
2345  if ((res->monotonic & MONOTONICFUNC_BOTH) == MONOTONICFUNC_BOTH)
2346  {
2347  *keep_original = false;
2348  runopexpr = opexpr;
2349  runoperator = opexpr->opno;
2350  break;
2351  }
2352 
2353  /*
2354  * When monotonically increasing we make a qual with <wfunc> <=
2355  * <value> or <value> >= <wfunc> in order to filter out values
2356  * which are above the value in the equality condition. For
2357  * monotonically decreasing functions we want to filter values
2358  * below the value in the equality condition.
2359  */
2360  if (res->monotonic & MONOTONICFUNC_INCREASING)
2361  newstrategy = wfunc_left ? BTLessEqualStrategyNumber : BTGreaterEqualStrategyNumber;
2362  else
2363  newstrategy = wfunc_left ? BTGreaterEqualStrategyNumber : BTLessEqualStrategyNumber;
2364 
2365  /* We must keep the original equality qual */
2366  *keep_original = true;
2367  runopexpr = opexpr;
2368 
2369  /* determine the operator to use for the WindowFuncRunCondition */
2370  runoperator = get_opfamily_member(opinfo->opfamily_id,
2371  opinfo->oplefttype,
2372  opinfo->oprighttype,
2373  newstrategy);
2374  break;
2375  }
2376  }
2377 
2378  if (runopexpr != NULL)
2379  {
2380  WindowFuncRunCondition *wfuncrc;
2381 
2382  wfuncrc = makeNode(WindowFuncRunCondition);
2383  wfuncrc->opno = runoperator;
2384  wfuncrc->inputcollid = runopexpr->inputcollid;
2385  wfuncrc->wfunc_left = wfunc_left;
2386  wfuncrc->arg = copyObject(otherexpr);
2387 
2388  wfunc->runCondition = lappend(wfunc->runCondition, wfuncrc);
2389 
2390  /* record that this attno was used in a run condition */
2391  *run_cond_attrs = bms_add_member(*run_cond_attrs,
2393  return true;
2394  }
2395 
2396  /* unsupported OpExpr */
2397  return false;
2398 }
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
signed short int16
Definition: c.h:493
#define OidIsValid(objectId)
Definition: c.h:775
bool is_pseudo_constant_clause(Node *clause)
Definition: clauses.c:2088
bool contain_subplans(Node *clause)
Definition: clauses.c:330
#define OidFunctionCall1(functionId, arg1)
Definition: fmgr.h:680
RegProcedure get_func_support(Oid funcid)
Definition: lsyscache.c:1858
Oid get_opfamily_member(Oid opfamily, Oid lefttype, Oid righttype, int16 strategy)
Definition: lsyscache.c:166
List * get_op_btree_interpretation(Oid opno)
Definition: lsyscache.c:601
#define copyObject(obj)
Definition: nodes.h:224
#define makeNode(_type_)
Definition: nodes.h:155
void * arg
@ MONOTONICFUNC_NONE
Definition: plannodes.h:1587
@ MONOTONICFUNC_DECREASING
Definition: plannodes.h:1589
@ MONOTONICFUNC_INCREASING
Definition: plannodes.h:1588
@ MONOTONICFUNC_BOTH
Definition: plannodes.h:1590
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
unsigned int Oid
Definition: postgres_ext.h:31
#define BTGreaterStrategyNumber
Definition: stratnum.h:33
#define BTLessStrategyNumber
Definition: stratnum.h:29
#define BTEqualStrategyNumber
Definition: stratnum.h:31
#define BTLessEqualStrategyNumber
Definition: stratnum.h:30
#define BTGreaterEqualStrategyNumber
Definition: stratnum.h:32
Oid opno
Definition: primnodes.h:818
List * windowClause
Definition: parsenodes.h:207
struct WindowClause * window_clause
Definition: supportnodes.h:296
#define FirstLowInvalidHeapAttributeNumber
Definition: sysattr.h:27

References arg, WindowFuncRunCondition::arg, OpExpr::args, bms_add_member(), BTEqualStrategyNumber, BTGreaterEqualStrategyNumber, BTGreaterStrategyNumber, BTLessEqualStrategyNumber, BTLessStrategyNumber, contain_subplans(), copyObject, DatumGetPointer(), FirstLowInvalidHeapAttributeNumber, get_func_support(), get_op_btree_interpretation(), get_opfamily_member(), InvalidOid, is_pseudo_constant_clause(), IsA, lappend(), lfirst, linitial, list_nth(), lsecond, makeNode, MONOTONICFUNC_BOTH, MONOTONICFUNC_DECREASING, MONOTONICFUNC_INCREASING, MONOTONICFUNC_NONE, OidFunctionCall1, OidIsValid, OpBtreeInterpretation::opfamily_id, OpBtreeInterpretation::oplefttype, WindowFuncRunCondition::opno, OpExpr::opno, OpBtreeInterpretation::oprighttype, PointerGetDatum(), res, OpBtreeInterpretation::strategy, SupportRequestWFuncMonotonic::type, WindowFuncRunCondition::wfunc_left, SupportRequestWFuncMonotonic::window_clause, SupportRequestWFuncMonotonic::window_func, Query::windowClause, WindowFunc::winfnoid, and WindowFunc::winref.

Referenced by check_and_push_window_quals().

◆ generate_gather_paths()

void generate_gather_paths ( PlannerInfo root,
RelOptInfo rel,
bool  override_rows 
)

Definition at line 3060 of file allpaths.c.

3061 {
3062  Path *cheapest_partial_path;
3063  Path *simple_gather_path;
3064  ListCell *lc;
3065  double rows;
3066  double *rowsp = NULL;
3067 
3068  /* If there are no partial paths, there's nothing to do here. */
3069  if (rel->partial_pathlist == NIL)
3070  return;
3071 
3072  /* Should we override the rel's rowcount estimate? */
3073  if (override_rows)
3074  rowsp = &rows;
3075 
3076  /*
3077  * The output of Gather is always unsorted, so there's only one partial
3078  * path of interest: the cheapest one. That will be the one at the front
3079  * of partial_pathlist because of the way add_partial_path works.
3080  */
3081  cheapest_partial_path = linitial(rel->partial_pathlist);
3082  rows = compute_gather_rows(cheapest_partial_path);
3083  simple_gather_path = (Path *)
3084  create_gather_path(root, rel, cheapest_partial_path, rel->reltarget,
3085  NULL, rowsp);
3086  add_path(rel, simple_gather_path);
3087 
3088  /*
3089  * For each useful ordering, we can consider an order-preserving Gather
3090  * Merge.
3091  */
3092  foreach(lc, rel->partial_pathlist)
3093  {
3094  Path *subpath = (Path *) lfirst(lc);
3095  GatherMergePath *path;
3096 
3097  if (subpath->pathkeys == NIL)
3098  continue;
3099 
3100  rows = compute_gather_rows(subpath);
3101  path = create_gather_merge_path(root, rel, subpath, rel->reltarget,
3102  subpath->pathkeys, NULL, rowsp);
3103  add_path(rel, &path->path);
3104  }
3105 }
double compute_gather_rows(Path *path)
Definition: costsize.c:6488
GatherMergePath * create_gather_merge_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, List *pathkeys, Relids required_outer, double *rows)
Definition: pathnode.c:1881
GatherPath * create_gather_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, Relids required_outer, double *rows)
Definition: pathnode.c:1960
struct PathTarget * reltarget
Definition: pathnodes.h:887

References add_path(), compute_gather_rows(), create_gather_merge_path(), create_gather_path(), lfirst, linitial, NIL, RelOptInfo::partial_pathlist, GatherMergePath::path, RelOptInfo::reltarget, root, and subpath().

Referenced by generate_useful_gather_paths().

◆ generate_orderedappend_paths()

static void generate_orderedappend_paths ( PlannerInfo root,
RelOptInfo rel,
List live_childrels,
List all_child_pathkeys 
)
static

Definition at line 1722 of file allpaths.c.

1725 {
1726  ListCell *lcp;
1727  List *partition_pathkeys = NIL;
1728  List *partition_pathkeys_desc = NIL;
1729  bool partition_pathkeys_partial = true;
1730  bool partition_pathkeys_desc_partial = true;
1731 
1732  /*
1733  * Some partitioned table setups may allow us to use an Append node
1734  * instead of a MergeAppend. This is possible in cases such as RANGE
1735  * partitioned tables where it's guaranteed that an earlier partition must
1736  * contain rows which come earlier in the sort order. To detect whether
1737  * this is relevant, build pathkey descriptions of the partition ordering,
1738  * for both forward and reverse scans.
1739  */
1740  if (rel->part_scheme != NULL && IS_SIMPLE_REL(rel) &&
1741  partitions_are_ordered(rel->boundinfo, rel->live_parts))
1742  {
1743  partition_pathkeys = build_partition_pathkeys(root, rel,
1745  &partition_pathkeys_partial);
1746 
1747  partition_pathkeys_desc = build_partition_pathkeys(root, rel,
1749  &partition_pathkeys_desc_partial);
1750 
1751  /*
1752  * You might think we should truncate_useless_pathkeys here, but
1753  * allowing partition keys which are a subset of the query's pathkeys
1754  * can often be useful. For example, consider a table partitioned by
1755  * RANGE (a, b), and a query with ORDER BY a, b, c. If we have child
1756  * paths that can produce the a, b, c ordering (perhaps via indexes on
1757  * (a, b, c)) then it works to consider the appendrel output as
1758  * ordered by a, b, c.
1759  */
1760  }
1761 
1762  /* Now consider each interesting sort ordering */
1763  foreach(lcp, all_child_pathkeys)
1764  {
1765  List *pathkeys = (List *) lfirst(lcp);
1766  List *startup_subpaths = NIL;
1767  List *total_subpaths = NIL;
1768  List *fractional_subpaths = NIL;
1769  bool startup_neq_total = false;
1770  bool match_partition_order;
1771  bool match_partition_order_desc;
1772  int end_index;
1773  int first_index;
1774  int direction;
1775 
1776  /*
1777  * Determine if this sort ordering matches any partition pathkeys we
1778  * have, for both ascending and descending partition order. If the
1779  * partition pathkeys happen to be contained in pathkeys then it still
1780  * works, as described above, providing that the partition pathkeys
1781  * are complete and not just a prefix of the partition keys. (In such
1782  * cases we'll be relying on the child paths to have sorted the
1783  * lower-order columns of the required pathkeys.)
1784  */
1785  match_partition_order =
1786  pathkeys_contained_in(pathkeys, partition_pathkeys) ||
1787  (!partition_pathkeys_partial &&
1788  pathkeys_contained_in(partition_pathkeys, pathkeys));
1789 
1790  match_partition_order_desc = !match_partition_order &&
1791  (pathkeys_contained_in(pathkeys, partition_pathkeys_desc) ||
1792  (!partition_pathkeys_desc_partial &&
1793  pathkeys_contained_in(partition_pathkeys_desc, pathkeys)));
1794 
1795  /*
1796  * When the required pathkeys match the reverse of the partition
1797  * order, we must build the list of paths in reverse starting with the
1798  * last matching partition first. We can get away without making any
1799  * special cases for this in the loop below by just looping backward
1800  * over the child relations in this case.
1801  */
1802  if (match_partition_order_desc)
1803  {
1804  /* loop backward */
1805  first_index = list_length(live_childrels) - 1;
1806  end_index = -1;
1807  direction = -1;
1808 
1809  /*
1810  * Set this to true to save us having to check for
1811  * match_partition_order_desc in the loop below.
1812  */
1813  match_partition_order = true;
1814  }
1815  else
1816  {
1817  /* for all other case, loop forward */
1818  first_index = 0;
1819  end_index = list_length(live_childrels);
1820  direction = 1;
1821  }
1822 
1823  /* Select the child paths for this ordering... */
1824  for (int i = first_index; i != end_index; i += direction)
1825  {
1826  RelOptInfo *childrel = list_nth_node(RelOptInfo, live_childrels, i);
1827  Path *cheapest_startup,
1828  *cheapest_total,
1829  *cheapest_fractional = NULL;
1830 
1831  /* Locate the right paths, if they are available. */
1832  cheapest_startup =
1834  pathkeys,
1835  NULL,
1836  STARTUP_COST,
1837  false);
1838  cheapest_total =
1840  pathkeys,
1841  NULL,
1842  TOTAL_COST,
1843  false);
1844 
1845  /*
1846  * If we can't find any paths with the right order just use the
1847  * cheapest-total path; we'll have to sort it later.
1848  */
1849  if (cheapest_startup == NULL || cheapest_total == NULL)
1850  {
1851  cheapest_startup = cheapest_total =
1852  childrel->cheapest_total_path;
1853  /* Assert we do have an unparameterized path for this child */
1854  Assert(cheapest_total->param_info == NULL);
1855  }
1856 
1857  /*
1858  * When building a fractional path, determine a cheapest
1859  * fractional path for each child relation too. Looking at startup
1860  * and total costs is not enough, because the cheapest fractional
1861  * path may be dominated by two separate paths (one for startup,
1862  * one for total).
1863  *
1864  * When needed (building fractional path), determine the cheapest
1865  * fractional path too.
1866  */
1867  if (root->tuple_fraction > 0)
1868  {
1869  double path_fraction = (1.0 / root->tuple_fraction);
1870 
1871  cheapest_fractional =
1873  pathkeys,
1874  NULL,
1875  path_fraction);
1876 
1877  /*
1878  * If we found no path with matching pathkeys, use the
1879  * cheapest total path instead.
1880  *
1881  * XXX We might consider partially sorted paths too (with an
1882  * incremental sort on top). But we'd have to build all the
1883  * incremental paths, do the costing etc.
1884  */
1885  if (!cheapest_fractional)
1886  cheapest_fractional = cheapest_total;
1887  }
1888 
1889  /*
1890  * Notice whether we actually have different paths for the
1891  * "cheapest" and "total" cases; frequently there will be no point
1892  * in two create_merge_append_path() calls.
1893  */
1894  if (cheapest_startup != cheapest_total)
1895  startup_neq_total = true;
1896 
1897  /*
1898  * Collect the appropriate child paths. The required logic varies
1899  * for the Append and MergeAppend cases.
1900  */
1901  if (match_partition_order)
1902  {
1903  /*
1904  * We're going to make a plain Append path. We don't need
1905  * most of what accumulate_append_subpath would do, but we do
1906  * want to cut out child Appends or MergeAppends if they have
1907  * just a single subpath (and hence aren't doing anything
1908  * useful).
1909  */
1910  cheapest_startup = get_singleton_append_subpath(cheapest_startup);
1911  cheapest_total = get_singleton_append_subpath(cheapest_total);
1912 
1913  startup_subpaths = lappend(startup_subpaths, cheapest_startup);
1914  total_subpaths = lappend(total_subpaths, cheapest_total);
1915 
1916  if (cheapest_fractional)
1917  {
1918  cheapest_fractional = get_singleton_append_subpath(cheapest_fractional);
1919  fractional_subpaths = lappend(fractional_subpaths, cheapest_fractional);
1920  }
1921  }
1922  else
1923  {
1924  /*
1925  * Otherwise, rely on accumulate_append_subpath to collect the
1926  * child paths for the MergeAppend.
1927  */
1928  accumulate_append_subpath(cheapest_startup,
1929  &startup_subpaths, NULL);
1930  accumulate_append_subpath(cheapest_total,
1931  &total_subpaths, NULL);
1932 
1933  if (cheapest_fractional)
1934  accumulate_append_subpath(cheapest_fractional,
1935  &fractional_subpaths, NULL);
1936  }
1937  }
1938 
1939  /* ... and build the Append or MergeAppend paths */
1940  if (match_partition_order)
1941  {
1942  /* We only need Append */
1944  rel,
1945  startup_subpaths,
1946  NIL,
1947  pathkeys,
1948  NULL,
1949  0,
1950  false,
1951  -1));
1952  if (startup_neq_total)
1954  rel,
1955  total_subpaths,
1956  NIL,
1957  pathkeys,
1958  NULL,
1959  0,
1960  false,
1961  -1));
1962 
1963  if (fractional_subpaths)
1965  rel,
1966  fractional_subpaths,
1967  NIL,
1968  pathkeys,
1969  NULL,
1970  0,
1971  false,
1972  -1));
1973  }
1974  else
1975  {
1976  /* We need MergeAppend */
1978  rel,
1979  startup_subpaths,
1980  pathkeys,
1981  NULL));
1982  if (startup_neq_total)
1984  rel,
1985  total_subpaths,
1986  pathkeys,
1987  NULL));
1988 
1989  if (fractional_subpaths)
1991  rel,
1992  fractional_subpaths,
1993  pathkeys,
1994  NULL));
1995  }
1996  }
1997 }
static Path * get_singleton_append_subpath(Path *path)
Definition: allpaths.c:2140
int i
Definition: isn.c:73
bool partitions_are_ordered(PartitionBoundInfo boundinfo, Bitmapset *live_parts)
Definition: partbounds.c:2852
Path * get_cheapest_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, CostSelector cost_criterion, bool require_parallel_safe)
Definition: pathkeys.c:618
Path * get_cheapest_fractional_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, double fraction)
Definition: pathkeys.c:664
bool pathkeys_contained_in(List *keys1, List *keys2)
Definition: pathkeys.c:341
List * build_partition_pathkeys(PlannerInfo *root, RelOptInfo *partrel, ScanDirection scandir, bool *partialkeys)
Definition: pathkeys.c:917
MergeAppendPath * create_merge_append_path(PlannerInfo *root, RelOptInfo *rel, List *subpaths, List *pathkeys, Relids required_outer)
Definition: pathnode.c:1415
#define IS_SIMPLE_REL(rel)
Definition: pathnodes.h:833
@ TOTAL_COST
Definition: pathnodes.h:38
@ STARTUP_COST
Definition: pathnodes.h:38
#define list_nth_node(type, list, n)
Definition: pg_list.h:327
@ BackwardScanDirection
Definition: sdir.h:26
@ ForwardScanDirection
Definition: sdir.h:28
Bitmapset * live_parts
Definition: pathnodes.h:1033

References accumulate_append_subpath(), add_path(), Assert, BackwardScanDirection, build_partition_pathkeys(), RelOptInfo::cheapest_total_path, create_append_path(), create_merge_append_path(), ForwardScanDirection, get_cheapest_fractional_path_for_pathkeys(), get_cheapest_path_for_pathkeys(), get_singleton_append_subpath(), i, IS_SIMPLE_REL, lappend(), lfirst, list_length(), list_nth_node, RelOptInfo::live_parts, NIL, partitions_are_ordered(), pathkeys_contained_in(), RelOptInfo::pathlist, root, STARTUP_COST, and TOTAL_COST.

Referenced by add_paths_to_append_rel().

◆ generate_partitionwise_join_paths()

void generate_partitionwise_join_paths ( PlannerInfo root,
RelOptInfo rel 
)

Definition at line 4298 of file allpaths.c.

4299 {
4300  List *live_children = NIL;
4301  int cnt_parts;
4302  int num_parts;
4303  RelOptInfo **part_rels;
4304 
4305  /* Handle only join relations here. */
4306  if (!IS_JOIN_REL(rel))
4307  return;
4308 
4309  /* We've nothing to do if the relation is not partitioned. */
4310  if (!IS_PARTITIONED_REL(rel))
4311  return;
4312 
4313  /* The relation should have consider_partitionwise_join set. */
4315 
4316  /* Guard against stack overflow due to overly deep partition hierarchy. */
4318 
4319  num_parts = rel->nparts;
4320  part_rels = rel->part_rels;
4321 
4322  /* Collect non-dummy child-joins. */
4323  for (cnt_parts = 0; cnt_parts < num_parts; cnt_parts++)
4324  {
4325  RelOptInfo *child_rel = part_rels[cnt_parts];
4326 
4327  /* If it's been pruned entirely, it's certainly dummy. */
4328  if (child_rel == NULL)
4329  continue;
4330 
4331  /* Make partitionwise join paths for this partitioned child-join. */
4333 
4334  /* If we failed to make any path for this child, we must give up. */
4335  if (child_rel->pathlist == NIL)
4336  {
4337  /*
4338  * Mark the parent joinrel as unpartitioned so that later
4339  * functions treat it correctly.
4340  */
4341  rel->nparts = 0;
4342  return;
4343  }
4344 
4345  /* Else, identify the cheapest path for it. */
4346  set_cheapest(child_rel);
4347 
4348  /* Dummy children need not be scanned, so ignore those. */
4349  if (IS_DUMMY_REL(child_rel))
4350  continue;
4351 
4352 #ifdef OPTIMIZER_DEBUG
4353  pprint(child_rel);
4354 #endif
4355 
4356  live_children = lappend(live_children, child_rel);
4357  }
4358 
4359  /* If all child-joins are dummy, parent join is also dummy. */
4360  if (!live_children)
4361  {
4362  mark_dummy_rel(rel);
4363  return;
4364  }
4365 
4366  /* Build additional paths for this rel from child-join paths. */
4367  add_paths_to_append_rel(root, rel, live_children);
4368  list_free(live_children);
4369 }
void generate_partitionwise_join_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: allpaths.c:4298
void add_paths_to_append_rel(PlannerInfo *root, RelOptInfo *rel, List *live_childrels)
Definition: allpaths.c:1310
void pprint(const void *obj)
Definition: print.c:54
void mark_dummy_rel(RelOptInfo *rel)
Definition: joinrels.c:1384
void list_free(List *list)
Definition: list.c:1546
void set_cheapest(RelOptInfo *parent_rel)
Definition: pathnode.c:242
#define IS_DUMMY_REL(r)
Definition: pathnodes.h:1946
#define IS_JOIN_REL(rel)
Definition: pathnodes.h:838
#define IS_PARTITIONED_REL(rel)
Definition: pathnodes.h:1056
void check_stack_depth(void)
Definition: postgres.c:3530
bool consider_partitionwise_join
Definition: pathnodes.h:993

References add_paths_to_append_rel(), Assert, check_stack_depth(), RelOptInfo::consider_partitionwise_join, IS_DUMMY_REL, IS_JOIN_REL, IS_PARTITIONED_REL, lappend(), list_free(), mark_dummy_rel(), NIL, RelOptInfo::nparts, RelOptInfo::pathlist, pprint(), root, and set_cheapest().

Referenced by merge_clump(), and standard_join_search().

◆ generate_useful_gather_paths()

void generate_useful_gather_paths ( PlannerInfo root,
RelOptInfo rel,
bool  override_rows 
)

Definition at line 3197 of file allpaths.c.

3198 {
3199  ListCell *lc;
3200  double rows;
3201  double *rowsp = NULL;
3202  List *useful_pathkeys_list = NIL;
3203  Path *cheapest_partial_path = NULL;
3204 
3205  /* If there are no partial paths, there's nothing to do here. */
3206  if (rel->partial_pathlist == NIL)
3207  return;
3208 
3209  /* Should we override the rel's rowcount estimate? */
3210  if (override_rows)
3211  rowsp = &rows;
3212 
3213  /* generate the regular gather (merge) paths */
3214  generate_gather_paths(root, rel, override_rows);
3215 
3216  /* consider incremental sort for interesting orderings */
3217  useful_pathkeys_list = get_useful_pathkeys_for_relation(root, rel, true);
3218 
3219  /* used for explicit (full) sort paths */
3220  cheapest_partial_path = linitial(rel->partial_pathlist);
3221 
3222  /*
3223  * Consider sorted paths for each interesting ordering. We generate both
3224  * incremental and full sort.
3225  */
3226  foreach(lc, useful_pathkeys_list)
3227  {
3228  List *useful_pathkeys = lfirst(lc);
3229  ListCell *lc2;
3230  bool is_sorted;
3231  int presorted_keys;
3232 
3233  foreach(lc2, rel->partial_pathlist)
3234  {
3235  Path *subpath = (Path *) lfirst(lc2);
3236  GatherMergePath *path;
3237 
3238  is_sorted = pathkeys_count_contained_in(useful_pathkeys,
3239  subpath->pathkeys,
3240  &presorted_keys);
3241 
3242  /*
3243  * We don't need to consider the case where a subpath is already
3244  * fully sorted because generate_gather_paths already creates a
3245  * gather merge path for every subpath that has pathkeys present.
3246  *
3247  * But since the subpath is already sorted, we know we don't need
3248  * to consider adding a sort (full or incremental) on top of it,
3249  * so we can continue here.
3250  */
3251  if (is_sorted)
3252  continue;
3253 
3254  /*
3255  * Try at least sorting the cheapest path and also try
3256  * incrementally sorting any path which is partially sorted
3257  * already (no need to deal with paths which have presorted keys
3258  * when incremental sort is disabled unless it's the cheapest
3259  * input path).
3260  */
3261  if (subpath != cheapest_partial_path &&
3262  (presorted_keys == 0 || !enable_incremental_sort))
3263  continue;
3264 
3265  /*
3266  * Consider regular sort for any path that's not presorted or if
3267  * incremental sort is disabled. We've no need to consider both
3268  * sort and incremental sort on the same path. We assume that
3269  * incremental sort is always faster when there are presorted
3270  * keys.
3271  *
3272  * This is not redundant with the gather paths created in
3273  * generate_gather_paths, because that doesn't generate ordered
3274  * output. Here we add an explicit sort to match the useful
3275  * ordering.
3276  */
3277  if (presorted_keys == 0 || !enable_incremental_sort)
3278  {
3280  rel,
3281  subpath,
3282  useful_pathkeys,
3283  -1.0);
3284  }
3285  else
3287  rel,
3288  subpath,
3289  useful_pathkeys,
3290  presorted_keys,
3291  -1);
3292  rows = compute_gather_rows(subpath);
3293  path = create_gather_merge_path(root, rel,
3294  subpath,
3295  rel->reltarget,
3296  subpath->pathkeys,
3297  NULL,
3298  rowsp);
3299 
3300  add_path(rel, &path->path);
3301  }
3302  }
3303 }
void generate_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_rows)
Definition: allpaths.c:3060
static List * get_useful_pathkeys_for_relation(PlannerInfo *root, RelOptInfo *rel, bool require_parallel_safe)
Definition: allpaths.c:3129
bool enable_incremental_sort
Definition: costsize.c:140
bool pathkeys_count_contained_in(List *keys1, List *keys2, int *n_common)
Definition: pathkeys.c:556
SortPath * create_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, double limit_tuples)
Definition: pathnode.c:2988
IncrementalSortPath * create_incremental_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, int presorted_keys, double limit_tuples)
Definition: pathnode.c:2939

References add_path(), compute_gather_rows(), create_gather_merge_path(), create_incremental_sort_path(), create_sort_path(), enable_incremental_sort, generate_gather_paths(), get_useful_pathkeys_for_relation(), lfirst, linitial, NIL, RelOptInfo::partial_pathlist, GatherMergePath::path, pathkeys_count_contained_in(), RelOptInfo::reltarget, root, and subpath().

Referenced by apply_scanjoin_target_to_paths(), create_partial_distinct_paths(), gather_grouping_paths(), merge_clump(), set_rel_pathlist(), and standard_join_search().

◆ get_cheapest_parameterized_child_path()

static Path * get_cheapest_parameterized_child_path ( PlannerInfo root,
RelOptInfo rel,
Relids  required_outer 
)
static

Definition at line 2007 of file allpaths.c.

2009 {
2010  Path *cheapest;
2011  ListCell *lc;
2012 
2013  /*
2014  * Look up the cheapest existing path with no more than the needed
2015  * parameterization. If it has exactly the needed parameterization, we're
2016  * done.
2017  */
2018  cheapest = get_cheapest_path_for_pathkeys(rel->pathlist,
2019  NIL,
2020  required_outer,
2021  TOTAL_COST,
2022  false);
2023  Assert(cheapest != NULL);
2024  if (bms_equal(PATH_REQ_OUTER(cheapest), required_outer))
2025  return cheapest;
2026 
2027  /*
2028  * Otherwise, we can "reparameterize" an existing path to match the given
2029  * parameterization, which effectively means pushing down additional
2030  * joinquals to be checked within the path's scan. However, some existing
2031  * paths might check the available joinquals already while others don't;
2032  * therefore, it's not clear which existing path will be cheapest after
2033  * reparameterization. We have to go through them all and find out.
2034  */
2035  cheapest = NULL;
2036  foreach(lc, rel->pathlist)
2037  {
2038  Path *path = (Path *) lfirst(lc);
2039 
2040  /* Can't use it if it needs more than requested parameterization */
2041  if (!bms_is_subset(PATH_REQ_OUTER(path), required_outer))
2042  continue;
2043 
2044  /*
2045  * Reparameterization can only increase the path's cost, so if it's
2046  * already more expensive than the current cheapest, forget it.
2047  */
2048  if (cheapest != NULL &&
2049  compare_path_costs(cheapest, path, TOTAL_COST) <= 0)
2050  continue;
2051 
2052  /* Reparameterize if needed, then recheck cost */
2053  if (!bms_equal(PATH_REQ_OUTER(path), required_outer))
2054  {
2055  path = reparameterize_path(root, path, required_outer, 1.0);
2056  if (path == NULL)
2057  continue; /* failed to reparameterize this one */
2058  Assert(bms_equal(PATH_REQ_OUTER(path), required_outer));
2059 
2060  if (cheapest != NULL &&
2061  compare_path_costs(cheapest, path, TOTAL_COST) <= 0)
2062  continue;
2063  }
2064 
2065  /* We have a new best path */
2066  cheapest = path;
2067  }
2068 
2069  /* Return the best path, or NULL if we found no suitable candidate */
2070  return cheapest;
2071 }
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:412
Path * reparameterize_path(PlannerInfo *root, Path *path, Relids required_outer, double loop_count)
Definition: pathnode.c:3937
int compare_path_costs(Path *path1, Path *path2, CostSelector criterion)
Definition: pathnode.c:69

References Assert, bms_equal(), bms_is_subset(), compare_path_costs(), get_cheapest_path_for_pathkeys(), lfirst, NIL, PATH_REQ_OUTER, RelOptInfo::pathlist, reparameterize_path(), root, and TOTAL_COST.

Referenced by add_paths_to_append_rel().

◆ get_singleton_append_subpath()

static Path * get_singleton_append_subpath ( Path path)
static

Definition at line 2140 of file allpaths.c.

2141 {
2142  Assert(!path->parallel_aware);
2143 
2144  if (IsA(path, AppendPath))
2145  {
2146  AppendPath *apath = (AppendPath *) path;
2147 
2148  if (list_length(apath->subpaths) == 1)
2149  return (Path *) linitial(apath->subpaths);
2150  }
2151  else if (IsA(path, MergeAppendPath))
2152  {
2153  MergeAppendPath *mpath = (MergeAppendPath *) path;
2154 
2155  if (list_length(mpath->subpaths) == 1)
2156  return (Path *) linitial(mpath->subpaths);
2157  }
2158 
2159  return path;
2160 }

References Assert, IsA, linitial, list_length(), Path::parallel_aware, AppendPath::subpaths, and MergeAppendPath::subpaths.

Referenced by generate_orderedappend_paths().

◆ get_useful_pathkeys_for_relation()

static List* get_useful_pathkeys_for_relation ( PlannerInfo root,
RelOptInfo rel,
bool  require_parallel_safe 
)
static

Definition at line 3129 of file allpaths.c.

3131 {
3132  List *useful_pathkeys_list = NIL;
3133 
3134  /*
3135  * Considering query_pathkeys is always worth it, because it might allow
3136  * us to avoid a total sort when we have a partially presorted path
3137  * available or to push the total sort into the parallel portion of the
3138  * query.
3139  */
3140  if (root->query_pathkeys)
3141  {
3142  ListCell *lc;
3143  int npathkeys = 0; /* useful pathkeys */
3144 
3145  foreach(lc, root->query_pathkeys)
3146  {
3147  PathKey *pathkey = (PathKey *) lfirst(lc);
3148  EquivalenceClass *pathkey_ec = pathkey->pk_eclass;
3149 
3150  /*
3151  * We can only build a sort for pathkeys that contain a
3152  * safe-to-compute-early EC member computable from the current
3153  * relation's reltarget, so ignore the remainder of the list as
3154  * soon as we find a pathkey without such a member.
3155  *
3156  * It's still worthwhile to return any prefix of the pathkeys list
3157  * that meets this requirement, as we may be able to do an
3158  * incremental sort.
3159  *
3160  * If requested, ensure the sort expression is parallel-safe too.
3161  */
3162  if (!relation_can_be_sorted_early(root, rel, pathkey_ec,
3163  require_parallel_safe))
3164  break;
3165 
3166  npathkeys++;
3167  }
3168 
3169  /*
3170  * The whole query_pathkeys list matches, so append it directly, to
3171  * allow comparing pathkeys easily by comparing list pointer. If we
3172  * have to truncate the pathkeys, we gotta do a copy though.
3173  */
3174  if (npathkeys == list_length(root->query_pathkeys))
3175  useful_pathkeys_list = lappend(useful_pathkeys_list,
3176  root->query_pathkeys);
3177  else if (npathkeys > 0)
3178  useful_pathkeys_list = lappend(useful_pathkeys_list,
3179  list_copy_head(root->query_pathkeys,
3180  npathkeys));
3181  }
3182 
3183  return useful_pathkeys_list;
3184 }
bool relation_can_be_sorted_early(PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, bool require_parallel_safe)
Definition: equivclass.c:922

References lappend(), lfirst, list_copy_head(), list_length(), NIL, relation_can_be_sorted_early(), and root.

Referenced by generate_useful_gather_paths().

◆ make_one_rel()

RelOptInfo* make_one_rel ( PlannerInfo root,
List joinlist 
)

Definition at line 171 of file allpaths.c.

172 {
173  RelOptInfo *rel;
174  Index rti;
175  double total_pages;
176 
177  /* Mark base rels as to whether we care about fast-start plans */
179 
180  /*
181  * Compute size estimates and consider_parallel flags for each base rel.
182  */
184 
185  /*
186  * We should now have size estimates for every actual table involved in
187  * the query, and we also know which if any have been deleted from the
188  * query by join removal, pruned by partition pruning, or eliminated by
189  * constraint exclusion. So we can now compute total_table_pages.
190  *
191  * Note that appendrels are not double-counted here, even though we don't
192  * bother to distinguish RelOptInfos for appendrel parents, because the
193  * parents will have pages = 0.
194  *
195  * XXX if a table is self-joined, we will count it once per appearance,
196  * which perhaps is the wrong thing ... but that's not completely clear,
197  * and detecting self-joins here is difficult, so ignore it for now.
198  */
199  total_pages = 0;
200  for (rti = 1; rti < root->simple_rel_array_size; rti++)
201  {
202  RelOptInfo *brel = root->simple_rel_array[rti];
203 
204  /* there may be empty slots corresponding to non-baserel RTEs */
205  if (brel == NULL)
206  continue;
207 
208  Assert(brel->relid == rti); /* sanity check on array */
209 
210  if (IS_DUMMY_REL(brel))
211  continue;
212 
213  if (IS_SIMPLE_REL(brel))
214  total_pages += (double) brel->pages;
215  }
216  root->total_table_pages = total_pages;
217 
218  /*
219  * Generate access paths for each base rel.
220  */
222 
223  /*
224  * Generate access paths for the entire join tree.
225  */
226  rel = make_rel_from_joinlist(root, joinlist);
227 
228  /*
229  * The result should join all and only the query's base + outer-join rels.
230  */
231  Assert(bms_equal(rel->relids, root->all_query_rels));
232 
233  return rel;
234 }
static void set_base_rel_sizes(PlannerInfo *root)
Definition: allpaths.c:290
static void set_base_rel_consider_startup(PlannerInfo *root)
Definition: allpaths.c:247
static void set_base_rel_pathlists(PlannerInfo *root)
Definition: allpaths.c:333
static RelOptInfo * make_rel_from_joinlist(PlannerInfo *root, List *joinlist)
Definition: allpaths.c:3313
unsigned int Index
Definition: c.h:614
Relids relids
Definition: pathnodes.h:865
Index relid
Definition: pathnodes.h:912

References Assert, bms_equal(), IS_DUMMY_REL, IS_SIMPLE_REL, make_rel_from_joinlist(), RelOptInfo::pages, RelOptInfo::relid, RelOptInfo::relids, root, set_base_rel_consider_startup(), set_base_rel_pathlists(), and set_base_rel_sizes().

Referenced by query_planner().

◆ make_rel_from_joinlist()

static RelOptInfo * make_rel_from_joinlist ( PlannerInfo root,
List joinlist 
)
static

Definition at line 3313 of file allpaths.c.

3314 {
3315  int levels_needed;
3316  List *initial_rels;
3317  ListCell *jl;
3318 
3319  /*
3320  * Count the number of child joinlist nodes. This is the depth of the
3321  * dynamic-programming algorithm we must employ to consider all ways of
3322  * joining the child nodes.
3323  */
3324  levels_needed = list_length(joinlist);
3325 
3326  if (levels_needed <= 0)
3327  return NULL; /* nothing to do? */
3328 
3329  /*
3330  * Construct a list of rels corresponding to the child joinlist nodes.
3331  * This may contain both base rels and rels constructed according to
3332  * sub-joinlists.
3333  */
3334  initial_rels = NIL;
3335  foreach(jl, joinlist)
3336  {
3337  Node *jlnode = (Node *) lfirst(jl);
3338  RelOptInfo *thisrel;
3339 
3340  if (IsA(jlnode, RangeTblRef))
3341  {
3342  int varno = ((RangeTblRef *) jlnode)->rtindex;
3343 
3344  thisrel = find_base_rel(root, varno);
3345  }
3346  else if (IsA(jlnode, List))
3347  {
3348  /* Recurse to handle subproblem */
3349  thisrel = make_rel_from_joinlist(root, (List *) jlnode);
3350  }
3351  else
3352  {
3353  elog(ERROR, "unrecognized joinlist node type: %d",
3354  (int) nodeTag(jlnode));
3355  thisrel = NULL; /* keep compiler quiet */
3356  }
3357 
3358  initial_rels = lappend(initial_rels, thisrel);
3359  }
3360 
3361  if (levels_needed == 1)
3362  {
3363  /*
3364  * Single joinlist node, so we're done.
3365  */
3366  return (RelOptInfo *) linitial(initial_rels);
3367  }
3368  else
3369  {
3370  /*
3371  * Consider the different orders in which we could join the rels,
3372  * using a plugin, GEQO, or the regular join search code.
3373  *
3374  * We put the initial_rels list into a PlannerInfo field because
3375  * has_legal_joinclause() needs to look at it (ugly :-().
3376  */
3377  root->initial_rels = initial_rels;
3378 
3379  if (join_search_hook)
3380  return (*join_search_hook) (root, levels_needed, initial_rels);
3381  else if (enable_geqo && levels_needed >= geqo_threshold)
3382  return geqo(root, levels_needed, initial_rels);
3383  else
3384  return standard_join_search(root, levels_needed, initial_rels);
3385  }
3386 }
RelOptInfo * standard_join_search(PlannerInfo *root, int levels_needed, List *initial_rels)
Definition: allpaths.c:3418
int geqo_threshold
Definition: allpaths.c:80
join_search_hook_type join_search_hook
Definition: allpaths.c:88
bool enable_geqo
Definition: allpaths.c:79
RelOptInfo * geqo(PlannerInfo *root, int number_of_rels, List *initial_rels)
Definition: geqo_main.c:72
#define nodeTag(nodeptr)
Definition: nodes.h:133
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
Definition: relnode.c:414

References elog, enable_geqo, ERROR, find_base_rel(), geqo(), geqo_threshold, IsA, join_search_hook, lappend(), lfirst, linitial, list_length(), NIL, nodeTag, root, and standard_join_search().

Referenced by make_one_rel().

◆ qual_is_pushdown_safe()

static pushdown_safe_type qual_is_pushdown_safe ( Query subquery,
Index  rti,
RestrictInfo rinfo,
pushdown_safety_info safetyInfo 
)
static

Definition at line 3862 of file allpaths.c.

3864 {
3866  Node *qual = (Node *) rinfo->clause;
3867  List *vars;
3868  ListCell *vl;
3869 
3870  /* Refuse subselects (point 1) */
3871  if (contain_subplans(qual))
3872  return PUSHDOWN_UNSAFE;
3873 
3874  /* Refuse volatile quals if we found they'd be unsafe (point 2) */
3875  if (safetyInfo->unsafeVolatile &&
3876  contain_volatile_functions((Node *) rinfo))
3877  return PUSHDOWN_UNSAFE;
3878 
3879  /* Refuse leaky quals if told to (point 3) */
3880  if (safetyInfo->unsafeLeaky &&
3881  contain_leaked_vars(qual))
3882  return PUSHDOWN_UNSAFE;
3883 
3884  /*
3885  * Examine all Vars used in clause. Since it's a restriction clause, all
3886  * such Vars must refer to subselect output columns ... unless this is
3887  * part of a LATERAL subquery, in which case there could be lateral
3888  * references.
3889  *
3890  * By omitting the relevant flags, this also gives us a cheap sanity check
3891  * that no aggregates or window functions appear in the qual. Those would
3892  * be unsafe to push down, but at least for the moment we could never see
3893  * any in a qual anyhow.
3894  */
3896  foreach(vl, vars)
3897  {
3898  Var *var = (Var *) lfirst(vl);
3899 
3900  /*
3901  * XXX Punt if we find any PlaceHolderVars in the restriction clause.
3902  * It's not clear whether a PHV could safely be pushed down, and even
3903  * less clear whether such a situation could arise in any cases of
3904  * practical interest anyway. So for the moment, just refuse to push
3905  * down.
3906  */
3907  if (!IsA(var, Var))
3908  {
3909  safe = PUSHDOWN_UNSAFE;
3910  break;
3911  }
3912 
3913  /*
3914  * Punt if we find any lateral references. It would be safe to push
3915  * these down, but we'd have to convert them into outer references,
3916  * which subquery_push_qual lacks the infrastructure to do. The case
3917  * arises so seldom that it doesn't seem worth working hard on.
3918  */
3919  if (var->varno != rti)
3920  {
3921  safe = PUSHDOWN_UNSAFE;
3922  break;
3923  }
3924 
3925  /* Subqueries have no system columns */
3926  Assert(var->varattno >= 0);
3927 
3928  /* Check point 4 */
3929  if (var->varattno == 0)
3930  {
3931  safe = PUSHDOWN_UNSAFE;
3932  break;
3933  }
3934 
3935  /* Check point 5 */
3936  if (safetyInfo->unsafeFlags[var->varattno] != 0)
3937  {
3938  if (safetyInfo->unsafeFlags[var->varattno] &
3941  {
3942  safe = PUSHDOWN_UNSAFE;
3943  break;
3944  }
3945  else
3946  {
3947  /* UNSAFE_NOTIN_PARTITIONBY_CLAUSE is ok for run conditions */
3949  /* don't break, we might find another Var that's unsafe */
3950  }
3951  }
3952  }
3953 
3954  list_free(vars);
3955 
3956  return safe;
3957 }
bool contain_leaked_vars(Node *clause)
Definition: clauses.c:1263
#define PVC_INCLUDE_PLACEHOLDERS
Definition: optimizer.h:190
Expr * clause
Definition: pathnodes.h:2564
int varno
Definition: primnodes.h:255
Definition: regcomp.c:281
List * pull_var_clause(Node *node, int flags)
Definition: var.c:607

References Assert, RestrictInfo::clause, contain_leaked_vars(), contain_subplans(), contain_volatile_functions(), if(), IsA, lfirst, list_free(), pull_var_clause(), PUSHDOWN_SAFE, PUSHDOWN_UNSAFE, PUSHDOWN_WINDOWCLAUSE_RUNCOND, PVC_INCLUDE_PLACEHOLDERS, UNSAFE_HAS_SET_FUNC, UNSAFE_HAS_VOLATILE_FUNC, UNSAFE_NOTIN_DISTINCTON_CLAUSE, UNSAFE_TYPE_MISMATCH, pushdown_safety_info::unsafeFlags, pushdown_safety_info::unsafeLeaky, pushdown_safety_info::unsafeVolatile, Var::varattno, and Var::varno.

Referenced by set_subquery_pathlist().

◆ recurse_push_qual()

static void recurse_push_qual ( Node setOp,
Query topquery,
RangeTblEntry rte,
Index  rti,
Node qual 
)
static

Definition at line 4010 of file allpaths.c.

4012 {
4013  if (IsA(setOp, RangeTblRef))
4014  {
4015  RangeTblRef *rtr = (RangeTblRef *) setOp;
4016  RangeTblEntry *subrte = rt_fetch(rtr->rtindex, topquery->rtable);
4017  Query *subquery = subrte->subquery;
4018 
4019  Assert(subquery != NULL);
4020  subquery_push_qual(subquery, rte, rti, qual);
4021  }
4022  else if (IsA(setOp, SetOperationStmt))
4023  {
4024  SetOperationStmt *op = (SetOperationStmt *) setOp;
4025 
4026  recurse_push_qual(op->larg, topquery, rte, rti, qual);
4027  recurse_push_qual(op->rarg, topquery, rte, rti, qual);
4028  }
4029  else
4030  {
4031  elog(ERROR, "unrecognized node type: %d",
4032  (int) nodeTag(setOp));
4033  }
4034 }
static void subquery_push_qual(Query *subquery, RangeTblEntry *rte, Index rti, Node *qual)
Definition: allpaths.c:3963
static void recurse_push_qual(Node *setOp, Query *topquery, RangeTblEntry *rte, Index rti, Node *qual)
Definition: allpaths.c:4010
#define rt_fetch(rangetable_index, rangetable)
Definition: parsetree.h:31
List * rtable
Definition: parsenodes.h:168
Query * subquery
Definition: parsenodes.h:1114

References Assert, elog, ERROR, IsA, SetOperationStmt::larg, nodeTag, SetOperationStmt::rarg, rt_fetch, Query::rtable, RangeTblRef::rtindex, RangeTblEntry::subquery, and subquery_push_qual().

Referenced by subquery_push_qual().

◆ recurse_pushdown_safe()

static bool recurse_pushdown_safe ( Node setOp,
Query topquery,
pushdown_safety_info safetyInfo 
)
static

Definition at line 3645 of file allpaths.c.

3647 {
3648  if (IsA(setOp, RangeTblRef))
3649  {
3650  RangeTblRef *rtr = (RangeTblRef *) setOp;
3651  RangeTblEntry *rte = rt_fetch(rtr->rtindex, topquery->rtable);
3652  Query *subquery = rte->subquery;
3653 
3654  Assert(subquery != NULL);
3655  return subquery_is_pushdown_safe(subquery, topquery, safetyInfo);
3656  }
3657  else if (IsA(setOp, SetOperationStmt))
3658  {
3659  SetOperationStmt *op = (SetOperationStmt *) setOp;
3660 
3661  /* EXCEPT is no good (point 2 for subquery_is_pushdown_safe) */
3662  if (op->op == SETOP_EXCEPT)
3663  return false;
3664  /* Else recurse */
3665  if (!recurse_pushdown_safe(op->larg, topquery, safetyInfo))
3666  return false;
3667  if (!recurse_pushdown_safe(op->rarg, topquery, safetyInfo))
3668  return false;
3669  }
3670  else
3671  {
3672  elog(ERROR, "unrecognized node type: %d",
3673  (int) nodeTag(setOp));
3674  }
3675  return true;
3676 }
static bool subquery_is_pushdown_safe(Query *subquery, Query *topquery, pushdown_safety_info *safetyInfo)
Definition: allpaths.c:3589
static bool recurse_pushdown_safe(Node *setOp, Query *topquery, pushdown_safety_info *safetyInfo)
Definition: allpaths.c:3645
@ SETOP_EXCEPT
Definition: parsenodes.h:2116
SetOperation op
Definition: parsenodes.h:2191

References Assert, elog, ERROR, IsA, SetOperationStmt::larg, nodeTag, SetOperationStmt::op, SetOperationStmt::rarg, rt_fetch, Query::rtable, RangeTblRef::rtindex, SETOP_EXCEPT, RangeTblEntry::subquery, and subquery_is_pushdown_safe().

Referenced by subquery_is_pushdown_safe().

◆ remove_unused_subquery_outputs()

static void remove_unused_subquery_outputs ( Query subquery,
RelOptInfo rel,
Bitmapset extra_used_attrs 
)
static

Definition at line 4062 of file allpaths.c.

4064 {
4065  Bitmapset *attrs_used;
4066  ListCell *lc;
4067 
4068  /*
4069  * Just point directly to extra_used_attrs. No need to bms_copy as none of
4070  * the current callers use the Bitmapset after calling this function.
4071  */
4072  attrs_used = extra_used_attrs;
4073 
4074  /*
4075  * Do nothing if subquery has UNION/INTERSECT/EXCEPT: in principle we
4076  * could update all the child SELECTs' tlists, but it seems not worth the
4077  * trouble presently.
4078  */
4079  if (subquery->setOperations)
4080  return;
4081 
4082  /*
4083  * If subquery has regular DISTINCT (not DISTINCT ON), we're wasting our
4084  * time: all its output columns must be used in the distinctClause.
4085  */
4086  if (subquery->distinctClause && !subquery->hasDistinctOn)
4087  return;
4088 
4089  /*
4090  * Collect a bitmap of all the output column numbers used by the upper
4091  * query.
4092  *
4093  * Add all the attributes needed for joins or final output. Note: we must
4094  * look at rel's targetlist, not the attr_needed data, because attr_needed
4095  * isn't computed for inheritance child rels, cf set_append_rel_size().
4096  * (XXX might be worth changing that sometime.)
4097  */
4098  pull_varattnos((Node *) rel->reltarget->exprs, rel->relid, &attrs_used);
4099 
4100  /* Add all the attributes used by un-pushed-down restriction clauses. */
4101  foreach(lc, rel->baserestrictinfo)
4102  {
4103  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
4104 
4105  pull_varattnos((Node *) rinfo->clause, rel->relid, &attrs_used);
4106  }
4107 
4108  /*
4109  * If there's a whole-row reference to the subquery, we can't remove
4110  * anything.
4111  */
4113  return;
4114 
4115  /*
4116  * Run through the tlist and zap entries we don't need. It's okay to
4117  * modify the tlist items in-place because set_subquery_pathlist made a
4118  * copy of the subquery.
4119  */
4120  foreach(lc, subquery->targetList)
4121  {
4122  TargetEntry *tle = (TargetEntry *) lfirst(lc);
4123  Node *texpr = (Node *) tle->expr;
4124 
4125  /*
4126  * If it has a sortgroupref number, it's used in some sort/group
4127  * clause so we'd better not remove it. Also, don't remove any
4128  * resjunk columns, since their reason for being has nothing to do
4129  * with anybody reading the subquery's output. (It's likely that
4130  * resjunk columns in a sub-SELECT would always have ressortgroupref
4131  * set, but even if they don't, it seems imprudent to remove them.)
4132  */
4133  if (tle->ressortgroupref || tle->resjunk)
4134  continue;
4135 
4136  /*
4137  * If it's used by the upper query, we can't remove it.
4138  */
4140  attrs_used))
4141  continue;
4142 
4143  /*
4144  * If it contains a set-returning function, we can't remove it since
4145  * that could change the number of rows returned by the subquery.
4146  */
4147  if (subquery->hasTargetSRFs &&
4148  expression_returns_set(texpr))
4149  continue;
4150 
4151  /*
4152  * If it contains volatile functions, we daren't remove it for fear
4153  * that the user is expecting their side-effects to happen.
4154  */
4155  if (contain_volatile_functions(texpr))
4156  continue;
4157 
4158  /*
4159  * OK, we don't need it. Replace the expression with a NULL constant.
4160  * Preserve the exposed type of the expression, in case something
4161  * looks at the rowtype of the subquery's result.
4162  */
4163  tle->expr = (Expr *) makeNullConst(exprType(texpr),
4164  exprTypmod(texpr),
4165  exprCollation(texpr));
4166  }
4167 }
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
Const * makeNullConst(Oid consttype, int32 consttypmod, Oid constcollid)
Definition: makefuncs.c:339
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:298
Oid exprCollation(const Node *expr)
Definition: nodeFuncs.c:816
List * exprs
Definition: pathnodes.h:1533
Node * setOperations
Definition: parsenodes.h:219
List * baserestrictinfo
Definition: pathnodes.h:979
Index ressortgroupref
Definition: primnodes.h:2192
void pull_varattnos(Node *node, Index varno, Bitmapset **varattnos)
Definition: var.c:291

References RelOptInfo::baserestrictinfo, bms_is_member(), RestrictInfo::clause, contain_volatile_functions(), Query::distinctClause, TargetEntry::expr, exprCollation(), expression_returns_set(), PathTarget::exprs, exprType(), exprTypmod(), FirstLowInvalidHeapAttributeNumber, if(), lfirst, makeNullConst(), pull_varattnos(), RelOptInfo::relid, RelOptInfo::reltarget, TargetEntry::resno, TargetEntry::ressortgroupref, Query::setOperations, and Query::targetList.

Referenced by set_subquery_pathlist().

◆ set_append_rel_pathlist()

static void set_append_rel_pathlist ( PlannerInfo root,
RelOptInfo rel,
Index  rti,
RangeTblEntry rte 
)
static

Definition at line 1240 of file allpaths.c.

1242 {
1243  int parentRTindex = rti;
1244  List *live_childrels = NIL;
1245  ListCell *l;
1246 
1247  /*
1248  * Generate access paths for each member relation, and remember the
1249  * non-dummy children.
1250  */
1251  foreach(l, root->append_rel_list)
1252  {
1253  AppendRelInfo *appinfo = (AppendRelInfo *) lfirst(l);
1254  int childRTindex;
1255  RangeTblEntry *childRTE;
1256  RelOptInfo *childrel;
1257 
1258  /* append_rel_list contains all append rels; ignore others */
1259  if (appinfo->parent_relid != parentRTindex)
1260  continue;
1261 
1262  /* Re-locate the child RTE and RelOptInfo */
1263  childRTindex = appinfo->child_relid;
1264  childRTE = root->simple_rte_array[childRTindex];
1265  childrel = root->simple_rel_array[childRTindex];
1266 
1267  /*
1268  * If set_append_rel_size() decided the parent appendrel was
1269  * parallel-unsafe at some point after visiting this child rel, we
1270  * need to propagate the unsafety marking down to the child, so that
1271  * we don't generate useless partial paths for it.
1272  */
1273  if (!rel->consider_parallel)
1274  childrel->consider_parallel = false;
1275 
1276  /*
1277  * Compute the child's access paths.
1278  */
1279  set_rel_pathlist(root, childrel, childRTindex, childRTE);
1280 
1281  /*
1282  * If child is dummy, ignore it.
1283  */
1284  if (IS_DUMMY_REL(childrel))
1285  continue;
1286 
1287  /*
1288  * Child is live, so add it to the live_childrels list for use below.
1289  */
1290  live_childrels = lappend(live_childrels, childrel);
1291  }
1292 
1293  /* Add paths to the append relation. */
1294  add_paths_to_append_rel(root, rel, live_childrels);
1295 }
static void set_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
Definition: allpaths.c:469
Index child_relid
Definition: pathnodes.h:2970
Index parent_relid
Definition: pathnodes.h:2969

References add_paths_to_append_rel(), AppendRelInfo::child_relid, RelOptInfo::consider_parallel, IS_DUMMY_REL, lappend(), lfirst, NIL, AppendRelInfo::parent_relid, root, and set_rel_pathlist().

Referenced by set_rel_pathlist().

◆ set_append_rel_size()

static void set_append_rel_size ( PlannerInfo root,
RelOptInfo rel,
Index  rti,
RangeTblEntry rte 
)
static

Definition at line 952 of file allpaths.c.

954 {
955  int parentRTindex = rti;
956  bool has_live_children;
957  double parent_rows;
958  double parent_size;
959  double *parent_attrsizes;
960  int nattrs;
961  ListCell *l;
962 
963  /* Guard against stack overflow due to overly deep inheritance tree. */
965 
966  Assert(IS_SIMPLE_REL(rel));
967 
968  /*
969  * If this is a partitioned baserel, set the consider_partitionwise_join
970  * flag; currently, we only consider partitionwise joins with the baserel
971  * if its targetlist doesn't contain a whole-row Var.
972  */
974  rel->reloptkind == RELOPT_BASEREL &&
975  rte->relkind == RELKIND_PARTITIONED_TABLE &&
976  bms_is_empty(rel->attr_needed[InvalidAttrNumber - rel->min_attr]))
977  rel->consider_partitionwise_join = true;
978 
979  /*
980  * Initialize to compute size estimates for whole append relation.
981  *
982  * We handle width estimates by weighting the widths of different child
983  * rels proportionally to their number of rows. This is sensible because
984  * the use of width estimates is mainly to compute the total relation
985  * "footprint" if we have to sort or hash it. To do this, we sum the
986  * total equivalent size (in "double" arithmetic) and then divide by the
987  * total rowcount estimate. This is done separately for the total rel
988  * width and each attribute.
989  *
990  * Note: if you consider changing this logic, beware that child rels could
991  * have zero rows and/or width, if they were excluded by constraints.
992  */
993  has_live_children = false;
994  parent_rows = 0;
995  parent_size = 0;
996  nattrs = rel->max_attr - rel->min_attr + 1;
997  parent_attrsizes = (double *) palloc0(nattrs * sizeof(double));
998 
999  foreach(l, root->append_rel_list)
1000  {
1001  AppendRelInfo *appinfo = (AppendRelInfo *) lfirst(l);
1002  int childRTindex;
1003  RangeTblEntry *childRTE;
1004  RelOptInfo *childrel;
1005  List *childrinfos;
1006  ListCell *parentvars;
1007  ListCell *childvars;
1008  ListCell *lc;
1009 
1010  /* append_rel_list contains all append rels; ignore others */
1011  if (appinfo->parent_relid != parentRTindex)
1012  continue;
1013 
1014  childRTindex = appinfo->child_relid;
1015  childRTE = root->simple_rte_array[childRTindex];
1016 
1017  /*
1018  * The child rel's RelOptInfo was already created during
1019  * add_other_rels_to_query.
1020  */
1021  childrel = find_base_rel(root, childRTindex);
1023 
1024  /* We may have already proven the child to be dummy. */
1025  if (IS_DUMMY_REL(childrel))
1026  continue;
1027 
1028  /*
1029  * We have to copy the parent's targetlist and quals to the child,
1030  * with appropriate substitution of variables. However, the
1031  * baserestrictinfo quals were already copied/substituted when the
1032  * child RelOptInfo was built. So we don't need any additional setup
1033  * before applying constraint exclusion.
1034  */
1035  if (relation_excluded_by_constraints(root, childrel, childRTE))
1036  {
1037  /*
1038  * This child need not be scanned, so we can omit it from the
1039  * appendrel.
1040  */
1041  set_dummy_rel_pathlist(childrel);
1042  continue;
1043  }
1044 
1045  /*
1046  * Constraint exclusion failed, so copy the parent's join quals and
1047  * targetlist to the child, with appropriate variable substitutions.
1048  *
1049  * We skip join quals that came from above outer joins that can null
1050  * this rel, since they would be of no value while generating paths
1051  * for the child. This saves some effort while processing the child
1052  * rel, and it also avoids an implementation restriction in
1053  * adjust_appendrel_attrs (it can't apply nullingrels to a non-Var).
1054  */
1055  childrinfos = NIL;
1056  foreach(lc, rel->joininfo)
1057  {
1058  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
1059 
1060  if (!bms_overlap(rinfo->clause_relids, rel->nulling_relids))
1061  childrinfos = lappend(childrinfos,
1063  (Node *) rinfo,
1064  1, &appinfo));
1065  }
1066  childrel->joininfo = childrinfos;
1067 
1068  /*
1069  * Now for the child's targetlist.
1070  *
1071  * NB: the resulting childrel->reltarget->exprs may contain arbitrary
1072  * expressions, which otherwise would not occur in a rel's targetlist.
1073  * Code that might be looking at an appendrel child must cope with
1074  * such. (Normally, a rel's targetlist would only include Vars and
1075  * PlaceHolderVars.) XXX we do not bother to update the cost or width
1076  * fields of childrel->reltarget; not clear if that would be useful.
1077  */
1078  childrel->reltarget->exprs = (List *)
1080  (Node *) rel->reltarget->exprs,
1081  1, &appinfo);
1082 
1083  /*
1084  * We have to make child entries in the EquivalenceClass data
1085  * structures as well. This is needed either if the parent
1086  * participates in some eclass joins (because we will want to consider
1087  * inner-indexscan joins on the individual children) or if the parent
1088  * has useful pathkeys (because we should try to build MergeAppend
1089  * paths that produce those sort orderings).
1090  */
1091  if (rel->has_eclass_joins || has_useful_pathkeys(root, rel))
1092  add_child_rel_equivalences(root, appinfo, rel, childrel);
1093  childrel->has_eclass_joins = rel->has_eclass_joins;
1094 
1095  /*
1096  * Note: we could compute appropriate attr_needed data for the child's
1097  * variables, by transforming the parent's attr_needed through the
1098  * translated_vars mapping. However, currently there's no need
1099  * because attr_needed is only examined for base relations not
1100  * otherrels. So we just leave the child's attr_needed empty.
1101  */
1102 
1103  /*
1104  * If we consider partitionwise joins with the parent rel, do the same
1105  * for partitioned child rels.
1106  *
1107  * Note: here we abuse the consider_partitionwise_join flag by setting
1108  * it for child rels that are not themselves partitioned. We do so to
1109  * tell try_partitionwise_join() that the child rel is sufficiently
1110  * valid to be used as a per-partition input, even if it later gets
1111  * proven to be dummy. (It's not usable until we've set up the
1112  * reltarget and EC entries, which we just did.)
1113  */
1114  if (rel->consider_partitionwise_join)
1115  childrel->consider_partitionwise_join = true;
1116 
1117  /*
1118  * If parallelism is allowable for this query in general, see whether
1119  * it's allowable for this childrel in particular. But if we've
1120  * already decided the appendrel is not parallel-safe as a whole,
1121  * there's no point in considering parallelism for this child. For
1122  * consistency, do this before calling set_rel_size() for the child.
1123  */
1124  if (root->glob->parallelModeOK && rel->consider_parallel)
1125  set_rel_consider_parallel(root, childrel, childRTE);
1126 
1127  /*
1128  * Compute the child's size.
1129  */
1130  set_rel_size(root, childrel, childRTindex, childRTE);
1131 
1132  /*
1133  * It is possible that constraint exclusion detected a contradiction
1134  * within a child subquery, even though we didn't prove one above. If
1135  * so, we can skip this child.
1136  */
1137  if (IS_DUMMY_REL(childrel))
1138  continue;
1139 
1140  /* We have at least one live child. */
1141  has_live_children = true;
1142 
1143  /*
1144  * If any live child is not parallel-safe, treat the whole appendrel
1145  * as not parallel-safe. In future we might be able to generate plans
1146  * in which some children are farmed out to workers while others are
1147  * not; but we don't have that today, so it's a waste to consider
1148  * partial paths anywhere in the appendrel unless it's all safe.
1149  * (Child rels visited before this one will be unmarked in
1150  * set_append_rel_pathlist().)
1151  */
1152  if (!childrel->consider_parallel)
1153  rel->consider_parallel = false;
1154 
1155  /*
1156  * Accumulate size information from each live child.
1157  */
1158  Assert(childrel->rows > 0);
1159 
1160  parent_rows += childrel->rows;
1161  parent_size += childrel->reltarget->width * childrel->rows;
1162 
1163  /*
1164  * Accumulate per-column estimates too. We need not do anything for
1165  * PlaceHolderVars in the parent list. If child expression isn't a
1166  * Var, or we didn't record a width estimate for it, we have to fall
1167  * back on a datatype-based estimate.
1168  *
1169  * By construction, child's targetlist is 1-to-1 with parent's.
1170  */
1171  forboth(parentvars, rel->reltarget->exprs,
1172  childvars, childrel->reltarget->exprs)
1173  {
1174  Var *parentvar = (Var *) lfirst(parentvars);
1175  Node *childvar = (Node *) lfirst(childvars);
1176 
1177  if (IsA(parentvar, Var) && parentvar->varno == parentRTindex)
1178  {
1179  int pndx = parentvar->varattno - rel->min_attr;
1180  int32 child_width = 0;
1181 
1182  if (IsA(childvar, Var) &&
1183  ((Var *) childvar)->varno == childrel->relid)
1184  {
1185  int cndx = ((Var *) childvar)->varattno - childrel->min_attr;
1186 
1187  child_width = childrel->attr_widths[cndx];
1188  }
1189  if (child_width <= 0)
1190  child_width = get_typavgwidth(exprType(childvar),
1191  exprTypmod(childvar));
1192  Assert(child_width > 0);
1193  parent_attrsizes[pndx] += child_width * childrel->rows;
1194  }
1195  }
1196  }
1197 
1198  if (has_live_children)
1199  {
1200  /*
1201  * Save the finished size estimates.
1202  */
1203  int i;
1204 
1205  Assert(parent_rows > 0);
1206  rel->rows = parent_rows;
1207  rel->reltarget->width = rint(parent_size / parent_rows);
1208  for (i = 0; i < nattrs; i++)
1209  rel->attr_widths[i] = rint(parent_attrsizes[i] / parent_rows);
1210 
1211  /*
1212  * Set "raw tuples" count equal to "rows" for the appendrel; needed
1213  * because some places assume rel->tuples is valid for any baserel.
1214  */
1215  rel->tuples = parent_rows;
1216 
1217  /*
1218  * Note that we leave rel->pages as zero; this is important to avoid
1219  * double-counting the appendrel tree in total_table_pages.
1220  */
1221  }
1222  else
1223  {
1224  /*
1225  * All children were excluded by constraints, so mark the whole
1226  * appendrel dummy. We must do this in this phase so that the rel's
1227  * dummy-ness is visible when we generate paths for other rels.
1228  */
1230  }
1231 
1232  pfree(parent_attrsizes);
1233 }
static void set_dummy_rel_pathlist(RelOptInfo *rel)
Definition: allpaths.c:2174
static void set_rel_consider_parallel(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:589
static void set_rel_size(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
Definition: allpaths.c:360
Node * adjust_appendrel_attrs(PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
Definition: appendinfo.c:200
#define InvalidAttrNumber
Definition: attnum.h:23
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582
#define bms_is_empty(a)
Definition: bitmapset.h:118
signed int int32
Definition: c.h:494
bool enable_partitionwise_join
Definition: costsize.c:148
void add_child_rel_equivalences(PlannerInfo *root, AppendRelInfo *appinfo, RelOptInfo *parent_rel, RelOptInfo *child_rel)
Definition: equivclass.c:2636
int32 get_typavgwidth(Oid typid, int32 typmod)
Definition: lsyscache.c:2578
void pfree(void *pointer)
Definition: mcxt.c:1521
void * palloc0(Size size)
Definition: mcxt.c:1347
bool has_useful_pathkeys(PlannerInfo *root, RelOptInfo *rel)
Definition: pathkeys.c:2261
@ RELOPT_OTHER_MEMBER_REL
Definition: pathnodes.h:823
#define forboth(cell1, list1, cell2, list2)
Definition: pg_list.h:518
bool relation_excluded_by_constraints(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: plancat.c:1564
List * joininfo
Definition: pathnodes.h:985
Cardinality tuples
Definition: pathnodes.h:943
bool has_eclass_joins
Definition: pathnodes.h:987
AttrNumber max_attr
Definition: pathnodes.h:920
Relids nulling_relids
Definition: pathnodes.h:932
Cardinality rows
Definition: pathnodes.h:871
AttrNumber min_attr
Definition: pathnodes.h:918

References add_child_rel_equivalences(), adjust_appendrel_attrs(), Assert, bms_is_empty, bms_overlap(), check_stack_depth(), AppendRelInfo::child_relid, RelOptInfo::consider_parallel, RelOptInfo::consider_partitionwise_join, enable_partitionwise_join, PathTarget::exprs, exprType(), exprTypmod(), find_base_rel(), forboth, get_typavgwidth(), RelOptInfo::has_eclass_joins, has_useful_pathkeys(), i, InvalidAttrNumber, IS_DUMMY_REL, IS_SIMPLE_REL, IsA, RelOptInfo::joininfo, lappend(), lfirst, RelOptInfo::max_attr, RelOptInfo::min_attr, NIL, RelOptInfo::nulling_relids, palloc0(), AppendRelInfo::parent_relid, pfree(), relation_excluded_by_constraints(), RelOptInfo::relid, RELOPT_BASEREL, RELOPT_OTHER_MEMBER_REL, RelOptInfo::reloptkind, RelOptInfo::reltarget, root, RelOptInfo::rows, set_dummy_rel_pathlist(), set_rel_consider_parallel(), set_rel_size(), RelOptInfo::tuples, Var::varattno, Var::varno, and PathTarget::width.

Referenced by set_rel_size().

◆ set_base_rel_consider_startup()

static void set_base_rel_consider_startup ( PlannerInfo root)
static

Definition at line 247 of file allpaths.c.

248 {
249  /*
250  * Since parameterized paths can only be used on the inside of a nestloop
251  * join plan, there is usually little value in considering fast-start
252  * plans for them. However, for relations that are on the RHS of a SEMI
253  * or ANTI join, a fast-start plan can be useful because we're only going
254  * to care about fetching one tuple anyway.
255  *
256  * To minimize growth of planning time, we currently restrict this to
257  * cases where the RHS is a single base relation, not a join; there is no
258  * provision for consider_param_startup to get set at all on joinrels.
259  * Also we don't worry about appendrels. costsize.c's costing rules for
260  * nestloop semi/antijoins don't consider such cases either.
261  */
262  ListCell *lc;
263 
264  foreach(lc, root->join_info_list)
265  {
266  SpecialJoinInfo *sjinfo = (SpecialJoinInfo *) lfirst(lc);
267  int varno;
268 
269  if ((sjinfo->jointype == JOIN_SEMI || sjinfo->jointype == JOIN_ANTI) &&
270  bms_get_singleton_member(sjinfo->syn_righthand, &varno))
271  {
272  RelOptInfo *rel = find_base_rel(root, varno);
273 
274  rel->consider_param_startup = true;
275  }
276  }
277 }
bool bms_get_singleton_member(const Bitmapset *a, int *member)
Definition: bitmapset.c:715
@ JOIN_SEMI
Definition: nodes.h:307
@ JOIN_ANTI
Definition: nodes.h:308
bool consider_param_startup
Definition: pathnodes.h:879
JoinType jointype
Definition: pathnodes.h:2898
Relids syn_righthand
Definition: pathnodes.h:2897

References bms_get_singleton_member(), RelOptInfo::consider_param_startup, find_base_rel(), JOIN_ANTI, JOIN_SEMI, SpecialJoinInfo::jointype, lfirst, root, and SpecialJoinInfo::syn_righthand.

Referenced by make_one_rel().

◆ set_base_rel_pathlists()

static void set_base_rel_pathlists ( PlannerInfo root)
static

Definition at line 333 of file allpaths.c.

334 {
335  Index rti;
336 
337  for (rti = 1; rti < root->simple_rel_array_size; rti++)
338  {
339  RelOptInfo *rel = root->simple_rel_array[rti];
340 
341  /* there may be empty slots corresponding to non-baserel RTEs */
342  if (rel == NULL)
343  continue;
344 
345  Assert(rel->relid == rti); /* sanity check on array */
346 
347  /* ignore RTEs that are "other rels" */
348  if (rel->reloptkind != RELOPT_BASEREL)
349  continue;
350 
351  set_rel_pathlist(root, rel, rti, root->simple_rte_array[rti]);
352  }
353 }

References Assert, RelOptInfo::relid, RELOPT_BASEREL, RelOptInfo::reloptkind, root, and set_rel_pathlist().

Referenced by make_one_rel().

◆ set_base_rel_sizes()

static void set_base_rel_sizes ( PlannerInfo root)
static

Definition at line 290 of file allpaths.c.

291 {
292  Index rti;
293 
294  for (rti = 1; rti < root->simple_rel_array_size; rti++)
295  {
296  RelOptInfo *rel = root->simple_rel_array[rti];
297  RangeTblEntry *rte;
298 
299  /* there may be empty slots corresponding to non-baserel RTEs */
300  if (rel == NULL)
301  continue;
302 
303  Assert(rel->relid == rti); /* sanity check on array */
304 
305  /* ignore RTEs that are "other rels" */
306  if (rel->reloptkind != RELOPT_BASEREL)
307  continue;
308 
309  rte = root->simple_rte_array[rti];
310 
311  /*
312  * If parallelism is allowable for this query in general, see whether
313  * it's allowable for this rel in particular. We have to do this
314  * before set_rel_size(), because (a) if this rel is an inheritance
315  * parent, set_append_rel_size() will use and perhaps change the rel's
316  * consider_parallel flag, and (b) for some RTE types, set_rel_size()
317  * goes ahead and makes paths immediately.
318  */
319  if (root->glob->parallelModeOK)
320  set_rel_consider_parallel(root, rel, rte);
321 
322  set_rel_size(root, rel, rti, rte);
323  }
324 }

References Assert, RelOptInfo::relid, RELOPT_BASEREL, RelOptInfo::reloptkind, root, set_rel_consider_parallel(), and set_rel_size().

Referenced by make_one_rel().

◆ set_cte_pathlist()

static void set_cte_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 2868 of file allpaths.c.

2869 {
2870  Path *ctepath;
2871  Plan *cteplan;
2872  PlannerInfo *cteroot;
2873  Index levelsup;
2874  List *pathkeys;
2875  int ndx;
2876  ListCell *lc;
2877  int plan_id;
2878  Relids required_outer;
2879 
2880  /*
2881  * Find the referenced CTE, and locate the path and plan previously made
2882  * for it.
2883  */
2884  levelsup = rte->ctelevelsup;
2885  cteroot = root;
2886  while (levelsup-- > 0)
2887  {
2888  cteroot = cteroot->parent_root;
2889  if (!cteroot) /* shouldn't happen */
2890  elog(ERROR, "bad levelsup for CTE \"%s\"", rte->ctename);
2891  }
2892 
2893  /*
2894  * Note: cte_plan_ids can be shorter than cteList, if we are still working
2895  * on planning the CTEs (ie, this is a side-reference from another CTE).
2896  * So we mustn't use forboth here.
2897  */
2898  ndx = 0;
2899  foreach(lc, cteroot->parse->cteList)
2900  {
2901  CommonTableExpr *cte = (CommonTableExpr *) lfirst(lc);
2902 
2903  if (strcmp(cte->ctename, rte->ctename) == 0)
2904  break;
2905  ndx++;
2906  }
2907  if (lc == NULL) /* shouldn't happen */
2908  elog(ERROR, "could not find CTE \"%s\"", rte->ctename);
2909  if (ndx >= list_length(cteroot->cte_plan_ids))
2910  elog(ERROR, "could not find plan for CTE \"%s\"", rte->ctename);
2911  plan_id = list_nth_int(cteroot->cte_plan_ids, ndx);
2912  if (plan_id <= 0)
2913  elog(ERROR, "no plan was made for CTE \"%s\"", rte->ctename);
2914 
2915  Assert(list_length(root->glob->subpaths) == list_length(root->glob->subplans));
2916  ctepath = (Path *) list_nth(root->glob->subpaths, plan_id - 1);
2917  cteplan = (Plan *) list_nth(root->glob->subplans, plan_id - 1);
2918 
2919  /* Mark rel with estimated output rows, width, etc */
2920  set_cte_size_estimates(root, rel, cteplan->plan_rows);
2921 
2922  /* Convert the ctepath's pathkeys to outer query's representation */
2923  pathkeys = convert_subquery_pathkeys(root,
2924  rel,
2925  ctepath->pathkeys,
2926  cteplan->targetlist);
2927 
2928  /*
2929  * We don't support pushing join clauses into the quals of a CTE scan, but
2930  * it could still have required parameterization due to LATERAL refs in
2931  * its tlist.
2932  */
2933  required_outer = rel->lateral_relids;
2934 
2935  /* Generate appropriate path */
2936  add_path(rel, create_ctescan_path(root, rel, pathkeys, required_outer));
2937 }
void set_cte_size_estimates(PlannerInfo *root, RelOptInfo *rel, double cte_rows)
Definition: costsize.c:5938
List * convert_subquery_pathkeys(PlannerInfo *root, RelOptInfo *rel, List *subquery_pathkeys, List *subquery_tlist)
Definition: pathkeys.c:1052
Path * create_ctescan_path(PlannerInfo *root, RelOptInfo *rel, List *pathkeys, Relids required_outer)
Definition: pathnode.c:2112
static int list_nth_int(const List *list, int n)
Definition: pg_list.h:310
Cardinality plan_rows
Definition: plannodes.h:134
List * targetlist
Definition: plannodes.h:152
List * cte_plan_ids
Definition: pathnodes.h:305
Query * parse
Definition: pathnodes.h:202
List * cteList
Definition: parsenodes.h:166
char * ctename
Definition: parsenodes.h:1206
Index ctelevelsup
Definition: parsenodes.h:1208

References add_path(), Assert, convert_subquery_pathkeys(), create_ctescan_path(), PlannerInfo::cte_plan_ids, RangeTblEntry::ctelevelsup, Query::cteList, RangeTblEntry::ctename, CommonTableExpr::ctename, elog, ERROR, RelOptInfo::lateral_relids, lfirst, list_length(), list_nth(), list_nth_int(), PlannerInfo::parse, Path::pathkeys, Plan::plan_rows, root, set_cte_size_estimates(), and Plan::targetlist.

Referenced by set_rel_size().

◆ set_dummy_rel_pathlist()

static void set_dummy_rel_pathlist ( RelOptInfo rel)
static

Definition at line 2174 of file allpaths.c.

2175 {
2176  /* Set dummy size estimates --- we leave attr_widths[] as zeroes */
2177  rel->rows = 0;
2178  rel->reltarget->width = 0;
2179 
2180  /* Discard any pre-existing paths; no further need for them */
2181  rel->pathlist = NIL;
2182  rel->partial_pathlist = NIL;
2183 
2184  /* Set up the dummy path */
2185  add_path(rel, (Path *) create_append_path(NULL, rel, NIL, NIL,
2186  NIL, rel->lateral_relids,
2187  0, false, -1));
2188 
2189  /*
2190  * We set the cheapest-path fields immediately, just in case they were
2191  * pointing at some discarded path. This is redundant in current usage
2192  * because set_rel_pathlist will do it later, but it's cheap so we keep it
2193  * for safety and consistency with mark_dummy_rel.
2194  */
2195  set_cheapest(rel);
2196 }

References add_path(), create_append_path(), RelOptInfo::lateral_relids, NIL, RelOptInfo::partial_pathlist, RelOptInfo::pathlist, RelOptInfo::reltarget, RelOptInfo::rows, set_cheapest(), and PathTarget::width.

Referenced by set_append_rel_size(), set_rel_size(), and set_subquery_pathlist().

◆ set_foreign_pathlist()

static void set_foreign_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 934 of file allpaths.c.

935 {
936  /* Call the FDW's GetForeignPaths function to generate path(s) */
937  rel->fdwroutine->GetForeignPaths(root, rel, rte->relid);
938 }

References RangeTblEntry::relid, and root.

Referenced by set_rel_pathlist().

◆ set_foreign_size()

static void set_foreign_size ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 910 of file allpaths.c.

911 {
912  /* Mark rel with estimated output rows, width, etc */
914 
915  /* Let FDW adjust the size estimates, if it can */
916  rel->fdwroutine->GetForeignRelSize(root, rel, rte->relid);
917 
918  /* ... but do not let it set the rows estimate to zero */
919  rel->rows = clamp_row_est(rel->rows);
920 
921  /*
922  * Also, make sure rel->tuples is not insane relative to rel->rows.
923  * Notably, this ensures sanity if pg_class.reltuples contains -1 and the
924  * FDW doesn't do anything to replace that.
925  */
926  rel->tuples = Max(rel->tuples, rel->rows);
927 }
void set_foreign_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:6038
double clamp_row_est(double nrows)
Definition: costsize.c:202

References clamp_row_est(), Max, RangeTblEntry::relid, root, RelOptInfo::rows, set_foreign_size_estimates(), and RelOptInfo::tuples.

Referenced by set_rel_size().

◆ set_function_pathlist()

static void set_function_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 2757 of file allpaths.c.

2758 {
2759  Relids required_outer;
2760  List *pathkeys = NIL;
2761 
2762  /*
2763  * We don't support pushing join clauses into the quals of a function
2764  * scan, but it could still have required parameterization due to LATERAL
2765  * refs in the function expression.
2766  */
2767  required_outer = rel->lateral_relids;
2768 
2769  /*
2770  * The result is considered unordered unless ORDINALITY was used, in which
2771  * case it is ordered by the ordinal column (the last one). See if we
2772  * care, by checking for uses of that Var in equivalence classes.
2773  */
2774  if (rte->funcordinality)
2775  {
2776  AttrNumber ordattno = rel->max_attr;
2777  Var *var = NULL;
2778  ListCell *lc;
2779 
2780  /*
2781  * Is there a Var for it in rel's targetlist? If not, the query did
2782  * not reference the ordinality column, or at least not in any way
2783  * that would be interesting for sorting.
2784  */
2785  foreach(lc, rel->reltarget->exprs)
2786  {
2787  Var *node = (Var *) lfirst(lc);
2788 
2789  /* checking varno/varlevelsup is just paranoia */
2790  if (IsA(node, Var) &&
2791  node->varattno == ordattno &&
2792  node->varno == rel->relid &&
2793  node->varlevelsup == 0)
2794  {
2795  var = node;
2796  break;
2797  }
2798  }
2799 
2800  /*
2801  * Try to build pathkeys for this Var with int8 sorting. We tell
2802  * build_expression_pathkey not to build any new equivalence class; if
2803  * the Var isn't already mentioned in some EC, it means that nothing
2804  * cares about the ordering.
2805  */
2806  if (var)
2807  pathkeys = build_expression_pathkey(root,
2808  (Expr *) var,
2809  Int8LessOperator,
2810  rel->relids,
2811  false);
2812  }
2813 
2814  /* Generate appropriate path */
2816  pathkeys, required_outer));
2817 }
int16 AttrNumber
Definition: attnum.h:21
List * build_expression_pathkey(PlannerInfo *root, Expr *expr, Oid opno, Relids rel, bool create_it)
Definition: pathkeys.c:998
Path * create_functionscan_path(PlannerInfo *root, RelOptInfo *rel, List *pathkeys, Relids required_outer)
Definition: pathnode.c:2034
bool funcordinality
Definition: parsenodes.h:1189
Index varlevelsup
Definition: primnodes.h:280

References add_path(), build_expression_pathkey(), create_functionscan_path(), PathTarget::exprs, RangeTblEntry::funcordinality, IsA, RelOptInfo::lateral_relids, lfirst, RelOptInfo::max_attr, NIL, RelOptInfo::relid, RelOptInfo::relids, RelOptInfo::reltarget, root, Var::varattno, Var::varlevelsup, and Var::varno.

Referenced by set_rel_pathlist().

◆ set_namedtuplestore_pathlist()

static void set_namedtuplestore_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 2947 of file allpaths.c.

2949 {
2950  Relids required_outer;
2951 
2952  /* Mark rel with estimated output rows, width, etc */
2954 
2955  /*
2956  * We don't support pushing join clauses into the quals of a tuplestore
2957  * scan, but it could still have required parameterization due to LATERAL
2958  * refs in its tlist.
2959  */
2960  required_outer = rel->lateral_relids;
2961 
2962  /* Generate appropriate path */
2963  add_path(rel, create_namedtuplestorescan_path(root, rel, required_outer));
2964 }
void set_namedtuplestore_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:5976
Path * create_namedtuplestorescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: pathnode.c:2138

References add_path(), create_namedtuplestorescan_path(), RelOptInfo::lateral_relids, root, and set_namedtuplestore_size_estimates().

Referenced by set_rel_size().

◆ set_plain_rel_pathlist()

static void set_plain_rel_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 764 of file allpaths.c.

765 {
766  Relids required_outer;
767 
768  /*
769  * We don't support pushing join clauses into the quals of a seqscan, but
770  * it could still have required parameterization due to LATERAL refs in
771  * its tlist.
772  */
773  required_outer = rel->lateral_relids;
774 
775  /*
776  * Consider TID scans.
777  *
778  * If create_tidscan_paths returns true, then a TID scan path is forced.
779  * This happens when rel->baserestrictinfo contains CurrentOfExpr, because
780  * the executor can't handle any other type of path for such queries.
781  * Hence, we return without adding any other paths.
782  */
783  if (create_tidscan_paths(root, rel))
784  return;
785 
786  /* Consider sequential scan */
787  add_path(rel, create_seqscan_path(root, rel, required_outer, 0));
788 
789  /* If appropriate, consider parallel sequential scan */
790  if (rel->consider_parallel && required_outer == NULL)
792 
793  /* Consider index scans */
794  create_index_paths(root, rel);
795 }
static void create_plain_partial_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: allpaths.c:802
void create_index_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: indxpath.c:234
bool create_tidscan_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: tidpath.c:498

References add_path(), RelOptInfo::consider_parallel, create_index_paths(), create_plain_partial_paths(), create_seqscan_path(), create_tidscan_paths(), RelOptInfo::lateral_relids, and root.

Referenced by set_rel_pathlist().

◆ set_plain_rel_size()

static void set_plain_rel_size ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 572 of file allpaths.c.

573 {
574  /*
575  * Test any partial indexes of rel for applicability. We must do this
576  * first since partial unique indexes can affect size estimates.
577  */
579 
580  /* Mark rel with estimated output rows, width, etc */
582 }
void set_baserel_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:5213
void check_index_predicates(PlannerInfo *root, RelOptInfo *rel)
Definition: indxpath.c:3244

References check_index_predicates(), root, and set_baserel_size_estimates().

Referenced by set_rel_size().

◆ set_rel_consider_parallel()

static void set_rel_consider_parallel ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 589 of file allpaths.c.

591 {
592  /*
593  * The flag has previously been initialized to false, so we can just
594  * return if it becomes clear that we can't safely set it.
595  */
596  Assert(!rel->consider_parallel);
597 
598  /* Don't call this if parallelism is disallowed for the entire query. */
599  Assert(root->glob->parallelModeOK);
600 
601  /* This should only be called for baserels and appendrel children. */
602  Assert(IS_SIMPLE_REL(rel));
603 
604  /* Assorted checks based on rtekind. */
605  switch (rte->rtekind)
606  {
607  case RTE_RELATION:
608 
609  /*
610  * Currently, parallel workers can't access the leader's temporary
611  * tables. We could possibly relax this if we wrote all of its
612  * local buffers at the start of the query and made no changes
613  * thereafter (maybe we could allow hint bit changes), and if we
614  * taught the workers to read them. Writing a large number of
615  * temporary buffers could be expensive, though, and we don't have
616  * the rest of the necessary infrastructure right now anyway. So
617  * for now, bail out if we see a temporary table.
618  */
619  if (get_rel_persistence(rte->relid) == RELPERSISTENCE_TEMP)
620  return;
621 
622  /*
623  * Table sampling can be pushed down to workers if the sample
624  * function and its arguments are safe.
625  */
626  if (rte->tablesample != NULL)
627  {
628  char proparallel = func_parallel(rte->tablesample->tsmhandler);
629 
630  if (proparallel != PROPARALLEL_SAFE)
631  return;
632  if (!is_parallel_safe(root, (Node *) rte->tablesample->args))
633  return;
634  }
635 
636  /*
637  * Ask FDWs whether they can support performing a ForeignScan
638  * within a worker. Most often, the answer will be no. For
639  * example, if the nature of the FDW is such that it opens a TCP
640  * connection with a remote server, each parallel worker would end
641  * up with a separate connection, and these connections might not
642  * be appropriately coordinated between workers and the leader.
643  */
644  if (rte->relkind == RELKIND_FOREIGN_TABLE)
645  {
646  Assert(rel->fdwroutine);
647  if (!rel->fdwroutine->IsForeignScanParallelSafe)
648  return;
649  if (!rel->fdwroutine->IsForeignScanParallelSafe(root, rel, rte))
650  return;
651  }
652 
653  /*
654  * There are additional considerations for appendrels, which we'll
655  * deal with in set_append_rel_size and set_append_rel_pathlist.
656  * For now, just set consider_parallel based on the rel's own
657  * quals and targetlist.
658  */
659  break;
660 
661  case RTE_SUBQUERY:
662 
663  /*
664  * There's no intrinsic problem with scanning a subquery-in-FROM
665  * (as distinct from a SubPlan or InitPlan) in a parallel worker.
666  * If the subquery doesn't happen to have any parallel-safe paths,
667  * then flagging it as consider_parallel won't change anything,
668  * but that's true for plain tables, too. We must set
669  * consider_parallel based on the rel's own quals and targetlist,
670  * so that if a subquery path is parallel-safe but the quals and
671  * projection we're sticking onto it are not, we correctly mark
672  * the SubqueryScanPath as not parallel-safe. (Note that
673  * set_subquery_pathlist() might push some of these quals down
674  * into the subquery itself, but that doesn't change anything.)
675  *
676  * We can't push sub-select containing LIMIT/OFFSET to workers as
677  * there is no guarantee that the row order will be fully
678  * deterministic, and applying LIMIT/OFFSET will lead to
679  * inconsistent results at the top-level. (In some cases, where
680  * the result is ordered, we could relax this restriction. But it
681  * doesn't currently seem worth expending extra effort to do so.)
682  */
683  {
684  Query *subquery = castNode(Query, rte->subquery);
685 
686  if (limit_needed(subquery))
687  return;
688  }
689  break;
690 
691  case RTE_JOIN:
692  /* Shouldn't happen; we're only considering baserels here. */
693  Assert(false);
694  return;
695 
696  case RTE_FUNCTION:
697  /* Check for parallel-restricted functions. */
698  if (!is_parallel_safe(root, (Node *) rte->functions))
699  return;
700  break;
701 
702  case RTE_TABLEFUNC:
703  /* not parallel safe */
704  return;
705 
706  case RTE_VALUES:
707  /* Check for parallel-restricted functions. */
708  if (!is_parallel_safe(root, (Node *) rte->values_lists))
709  return;
710  break;
711 
712  case RTE_CTE:
713 
714  /*
715  * CTE tuplestores aren't shared among parallel workers, so we
716  * force all CTE scans to happen in the leader. Also, populating
717  * the CTE would require executing a subplan that's not available
718  * in the worker, might be parallel-restricted, and must get
719  * executed only once.
720  */
721  return;
722 
723  case RTE_NAMEDTUPLESTORE:
724 
725  /*
726  * tuplestore cannot be shared, at least without more
727  * infrastructure to support that.
728  */
729  return;
730 
731  case RTE_RESULT:
732  /* RESULT RTEs, in themselves, are no problem. */
733  break;
734  }
735 
736  /*
737  * If there's anything in baserestrictinfo that's parallel-restricted, we
738  * give up on parallelizing access to this relation. We could consider
739  * instead postponing application of the restricted quals until we're
740  * above all the parallelism in the plan tree, but it's not clear that
741  * that would be a win in very many cases, and it might be tricky to make
742  * outer join clauses work correctly. It would likely break equivalence
743  * classes, too.
744  */
745  if (!is_parallel_safe(root, (Node *) rel->baserestrictinfo))
746  return;
747 
748  /*
749  * Likewise, if the relation's outputs are not parallel-safe, give up.
750  * (Usually, they're just Vars, but sometimes they're not.)
751  */
752  if (!is_parallel_safe(root, (Node *) rel->reltarget->exprs))
753  return;
754 
755  /* We have a winner. */
756  rel->consider_parallel = true;
757 }
bool is_parallel_safe(PlannerInfo *root, Node *node)
Definition: clauses.c:753
char get_rel_persistence(Oid relid)
Definition: lsyscache.c:2078
char func_parallel(Oid funcid)
Definition: lsyscache.c:1799
#define castNode(_type_, nodeptr)
Definition: nodes.h:176
@ RTE_JOIN
Definition: parsenodes.h:1030
@ RTE_CTE
Definition: parsenodes.h:1034
@ RTE_NAMEDTUPLESTORE
Definition: parsenodes.h:1035
@ RTE_VALUES
Definition: parsenodes.h:1033
@ RTE_SUBQUERY
Definition: parsenodes.h:1029
@ RTE_RESULT
Definition: parsenodes.h:1036
@ RTE_FUNCTION
Definition: parsenodes.h:1031
@ RTE_TABLEFUNC
Definition: parsenodes.h:1032
@ RTE_RELATION
Definition: parsenodes.h:1028
bool limit_needed(Query *parse)
Definition: planner.c:2625
struct TableSampleClause * tablesample
Definition: parsenodes.h:1108
List * values_lists
Definition: parsenodes.h:1200
List * functions
Definition: parsenodes.h:1187
RTEKind rtekind
Definition: parsenodes.h:1057

References TableSampleClause::args, Assert, RelOptInfo::baserestrictinfo, castNode, RelOptInfo::consider_parallel, PathTarget::exprs, func_parallel(), RangeTblEntry::functions, get_rel_persistence(), is_parallel_safe(), IS_SIMPLE_REL, limit_needed(), RangeTblEntry::relid, RelOptInfo::reltarget, root, RTE_CTE, RTE_FUNCTION, RTE_JOIN, RTE_NAMEDTUPLESTORE, RTE_RELATION, RTE_RESULT, RTE_SUBQUERY, RTE_TABLEFUNC, RTE_VALUES, RangeTblEntry::rtekind, RangeTblEntry::subquery, RangeTblEntry::tablesample, TableSampleClause::tsmhandler, and RangeTblEntry::values_lists.

Referenced by set_append_rel_size(), and set_base_rel_sizes().

◆ set_rel_pathlist()

static void set_rel_pathlist ( PlannerInfo root,
RelOptInfo rel,
Index  rti,
RangeTblEntry rte 
)
static

Definition at line 469 of file allpaths.c.

471 {
472  if (IS_DUMMY_REL(rel))
473  {
474  /* We already proved the relation empty, so nothing more to do */
475  }
476  else if (rte->inh)
477  {
478  /* It's an "append relation", process accordingly */
479  set_append_rel_pathlist(root, rel, rti, rte);
480  }
481  else
482  {
483  switch (rel->rtekind)
484  {
485  case RTE_RELATION:
486  if (rte->relkind == RELKIND_FOREIGN_TABLE)
487  {
488  /* Foreign table */
489  set_foreign_pathlist(root, rel, rte);
490  }
491  else if (rte->tablesample != NULL)
492  {
493  /* Sampled relation */
495  }
496  else
497  {
498  /* Plain relation */
499  set_plain_rel_pathlist(root, rel, rte);
500  }
501  break;
502  case RTE_SUBQUERY:
503  /* Subquery --- fully handled during set_rel_size */
504  break;
505  case RTE_FUNCTION:
506  /* RangeFunction */
507  set_function_pathlist(root, rel, rte);
508  break;
509  case RTE_TABLEFUNC:
510  /* Table Function */
511  set_tablefunc_pathlist(root, rel, rte);
512  break;
513  case RTE_VALUES:
514  /* Values list */
515  set_values_pathlist(root, rel, rte);
516  break;
517  case RTE_CTE:
518  /* CTE reference --- fully handled during set_rel_size */
519  break;
520  case RTE_NAMEDTUPLESTORE:
521  /* tuplestore reference --- fully handled during set_rel_size */
522  break;
523  case RTE_RESULT:
524  /* simple Result --- fully handled during set_rel_size */
525  break;
526  default:
527  elog(ERROR, "unexpected rtekind: %d", (int) rel->rtekind);
528  break;
529  }
530  }
531 
532  /*
533  * Allow a plugin to editorialize on the set of Paths for this base
534  * relation. It could add new paths (such as CustomPaths) by calling
535  * add_path(), or add_partial_path() if parallel aware. It could also
536  * delete or modify paths added by the core code.
537  */
539  (*set_rel_pathlist_hook) (root, rel, rti, rte);
540 
541  /*
542  * If this is a baserel, we should normally consider gathering any partial
543  * paths we may have created for it. We have to do this after calling the
544  * set_rel_pathlist_hook, else it cannot add partial paths to be included
545  * here.
546  *
547  * However, if this is an inheritance child, skip it. Otherwise, we could
548  * end up with a very large number of gather nodes, each trying to grab
549  * its own pool of workers. Instead, we'll consider gathering partial
550  * paths for the parent appendrel.
551  *
552  * Also, if this is the topmost scan/join rel, we postpone gathering until
553  * the final scan/join targetlist is available (see grouping_planner).
554  */
555  if (rel->reloptkind == RELOPT_BASEREL &&
556  !bms_equal(rel->relids, root->all_query_rels))
557  generate_useful_gather_paths(root, rel, false);
558 
559  /* Now find the cheapest of the paths for this rel */
560  set_cheapest(rel);
561 
562 #ifdef OPTIMIZER_DEBUG
563  pprint(rel);
564 #endif
565 }
static void set_tablesample_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:862
static void set_foreign_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:934
static void set_append_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
Definition: allpaths.c:1240
void generate_useful_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_rows)
Definition: allpaths.c:3197
static void set_function_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:2757
static void set_plain_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:764
static void set_tablefunc_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:2844
set_rel_pathlist_hook_type set_rel_pathlist_hook
Definition: allpaths.c:85
static void set_values_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:2824
RTEKind rtekind
Definition: pathnodes.h:916

References bms_equal(), elog, ERROR, generate_useful_gather_paths(), RangeTblEntry::inh, IS_DUMMY_REL, pprint(), RelOptInfo::relids, RELOPT_BASEREL, RelOptInfo::reloptkind, root, RTE_CTE, RTE_FUNCTION, RTE_NAMEDTUPLESTORE, RTE_RELATION, RTE_RESULT, RTE_SUBQUERY, RTE_TABLEFUNC, RTE_VALUES, RelOptInfo::rtekind, set_append_rel_pathlist(), set_cheapest(), set_foreign_pathlist(), set_function_pathlist(), set_plain_rel_pathlist(), set_rel_pathlist_hook, set_tablefunc_pathlist(), set_tablesample_rel_pathlist(), set_values_pathlist(), and RangeTblEntry::tablesample.

Referenced by set_append_rel_pathlist(), and set_base_rel_pathlists().

◆ set_rel_size()

static void set_rel_size ( PlannerInfo root,
RelOptInfo rel,
Index  rti,
RangeTblEntry rte 
)
static

Definition at line 360 of file allpaths.c.

362 {
363  if (rel->reloptkind == RELOPT_BASEREL &&
365  {
366  /*
367  * We proved we don't need to scan the rel via constraint exclusion,
368  * so set up a single dummy path for it. Here we only check this for
369  * regular baserels; if it's an otherrel, CE was already checked in
370  * set_append_rel_size().
371  *
372  * In this case, we go ahead and set up the relation's path right away
373  * instead of leaving it for set_rel_pathlist to do. This is because
374  * we don't have a convention for marking a rel as dummy except by
375  * assigning a dummy path to it.
376  */
378  }
379  else if (rte->inh)
380  {
381  /* It's an "append relation", process accordingly */
382  set_append_rel_size(root, rel, rti, rte);
383  }
384  else
385  {
386  switch (rel->rtekind)
387  {
388  case RTE_RELATION:
389  if (rte->relkind == RELKIND_FOREIGN_TABLE)
390  {
391  /* Foreign table */
392  set_foreign_size(root, rel, rte);
393  }
394  else if (rte->relkind == RELKIND_PARTITIONED_TABLE)
395  {
396  /*
397  * We could get here if asked to scan a partitioned table
398  * with ONLY. In that case we shouldn't scan any of the
399  * partitions, so mark it as a dummy rel.
400  */
402  }
403  else if (rte->tablesample != NULL)
404  {
405  /* Sampled relation */
406  set_tablesample_rel_size(root, rel, rte);
407  }
408  else
409  {
410  /* Plain relation */
411  set_plain_rel_size(root, rel, rte);
412  }
413  break;
414  case RTE_SUBQUERY:
415 
416  /*
417  * Subqueries don't support making a choice between
418  * parameterized and unparameterized paths, so just go ahead
419  * and build their paths immediately.
420  */
421  set_subquery_pathlist(root, rel, rti, rte);
422  break;
423  case RTE_FUNCTION:
425  break;
426  case RTE_TABLEFUNC:
428  break;
429  case RTE_VALUES:
431  break;
432  case RTE_CTE:
433 
434  /*
435  * CTEs don't support making a choice between parameterized
436  * and unparameterized paths, so just go ahead and build their
437  * paths immediately.
438  */
439  if (rte->self_reference)
440  set_worktable_pathlist(root, rel, rte);
441  else
442  set_cte_pathlist(root, rel, rte);
443  break;
444  case RTE_NAMEDTUPLESTORE:
445  /* Might as well just build the path immediately */
447  break;
448  case RTE_RESULT:
449  /* Might as well just build the path immediately */
450  set_result_pathlist(root, rel, rte);
451  break;
452  default:
453  elog(ERROR, "unexpected rtekind: %d", (int) rel->rtekind);
454  break;
455  }
456  }
457 
458  /*
459  * We insist that all non-dummy rels have a nonzero rowcount estimate.
460  */
461  Assert(rel->rows > 0 || IS_DUMMY_REL(rel));
462 }
static void set_subquery_pathlist(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
Definition: allpaths.c:2490
static void set_namedtuplestore_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:2947
static void set_tablesample_rel_size(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:822
static void set_result_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:2974
static void set_worktable_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:3001
static void set_foreign_size(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:910
static void set_cte_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:2868
static void set_append_rel_size(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
Definition: allpaths.c:952
static void set_plain_rel_size(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Definition: allpaths.c:572
void set_function_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:5846
void set_tablefunc_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:5884
void set_values_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:5906

References Assert, elog, ERROR, RangeTblEntry::inh, IS_DUMMY_REL, relation_excluded_by_constraints(), RELOPT_BASEREL, RelOptInfo::reloptkind, root, RelOptInfo::rows, RTE_CTE, RTE_FUNCTION, RTE_NAMEDTUPLESTORE, RTE_RELATION, RTE_RESULT, RTE_SUBQUERY, RTE_TABLEFUNC, RTE_VALUES, RelOptInfo::rtekind, set_append_rel_size(), set_cte_pathlist(), set_dummy_rel_pathlist(), set_foreign_size(), set_function_size_estimates(), set_namedtuplestore_pathlist(), set_plain_rel_size(), set_result_pathlist(), set_subquery_pathlist(), set_tablefunc_size_estimates(), set_tablesample_rel_size(), set_values_size_estimates(), set_worktable_pathlist(), and RangeTblEntry::tablesample.

Referenced by set_append_rel_size(), and set_base_rel_sizes().

◆ set_result_pathlist()

static void set_result_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 2974 of file allpaths.c.

2976 {
2977  Relids required_outer;
2978 
2979  /* Mark rel with estimated output rows, width, etc */
2981 
2982  /*
2983  * We don't support pushing join clauses into the quals of a Result scan,
2984  * but it could still have required parameterization due to LATERAL refs
2985  * in its tlist.
2986  */
2987  required_outer = rel->lateral_relids;
2988 
2989  /* Generate appropriate path */
2990  add_path(rel, create_resultscan_path(root, rel, required_outer));
2991 }
void set_result_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:6009
Path * create_resultscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: pathnode.c:2164

References add_path(), create_resultscan_path(), RelOptInfo::lateral_relids, root, and set_result_size_estimates().

Referenced by set_rel_size().

◆ set_subquery_pathlist()

static void set_subquery_pathlist ( PlannerInfo root,
RelOptInfo rel,
Index  rti,
RangeTblEntry rte 
)
static

Definition at line 2490 of file allpaths.c.

2492 {
2493  Query *parse = root->parse;
2494  Query *subquery = rte->subquery;
2495  bool trivial_pathtarget;
2496  Relids required_outer;
2497  pushdown_safety_info safetyInfo;
2498  double tuple_fraction;
2499  RelOptInfo *sub_final_rel;
2500  Bitmapset *run_cond_attrs = NULL;
2501  ListCell *lc;
2502 
2503  /*
2504  * Must copy the Query so that planning doesn't mess up the RTE contents
2505  * (really really need to fix the planner to not scribble on its input,
2506  * someday ... but see remove_unused_subquery_outputs to start with).
2507  */
2508  subquery = copyObject(subquery);
2509 
2510  /*
2511  * If it's a LATERAL subquery, it might contain some Vars of the current
2512  * query level, requiring it to be treated as parameterized, even though
2513  * we don't support pushing down join quals into subqueries.
2514  */
2515  required_outer = rel->lateral_relids;
2516 
2517  /*
2518  * Zero out result area for subquery_is_pushdown_safe, so that it can set
2519  * flags as needed while recursing. In particular, we need a workspace
2520  * for keeping track of the reasons why columns are unsafe to reference.
2521  * These reasons are stored in the bits inside unsafeFlags[i] when we
2522  * discover reasons that column i of the subquery is unsafe to be used in
2523  * a pushed-down qual.
2524  */
2525  memset(&safetyInfo, 0, sizeof(safetyInfo));
2526  safetyInfo.unsafeFlags = (unsigned char *)
2527  palloc0((list_length(subquery->targetList) + 1) * sizeof(unsigned char));
2528 
2529  /*
2530  * If the subquery has the "security_barrier" flag, it means the subquery
2531  * originated from a view that must enforce row-level security. Then we
2532  * must not push down quals that contain leaky functions. (Ideally this
2533  * would be checked inside subquery_is_pushdown_safe, but since we don't
2534  * currently pass the RTE to that function, we must do it here.)
2535  */
2536  safetyInfo.unsafeLeaky = rte->security_barrier;
2537 
2538  /*
2539  * If there are any restriction clauses that have been attached to the
2540  * subquery relation, consider pushing them down to become WHERE or HAVING
2541  * quals of the subquery itself. This transformation is useful because it
2542  * may allow us to generate a better plan for the subquery than evaluating
2543  * all the subquery output rows and then filtering them.
2544  *
2545  * There are several cases where we cannot push down clauses. Restrictions
2546  * involving the subquery are checked by subquery_is_pushdown_safe().
2547  * Restrictions on individual clauses are checked by
2548  * qual_is_pushdown_safe(). Also, we don't want to push down
2549  * pseudoconstant clauses; better to have the gating node above the
2550  * subquery.
2551  *
2552  * Non-pushed-down clauses will get evaluated as qpquals of the
2553  * SubqueryScan node.
2554  *
2555  * XXX Are there any cases where we want to make a policy decision not to
2556  * push down a pushable qual, because it'd result in a worse plan?
2557  */
2558  if (rel->baserestrictinfo != NIL &&
2559  subquery_is_pushdown_safe(subquery, subquery, &safetyInfo))
2560  {
2561  /* OK to consider pushing down individual quals */
2562  List *upperrestrictlist = NIL;
2563  ListCell *l;
2564 
2565  foreach(l, rel->baserestrictinfo)
2566  {
2567  RestrictInfo *rinfo = (RestrictInfo *) lfirst(l);
2568  Node *clause = (Node *) rinfo->clause;
2569 
2570  if (rinfo->pseudoconstant)
2571  {
2572  upperrestrictlist = lappend(upperrestrictlist, rinfo);
2573  continue;
2574  }
2575 
2576  switch (qual_is_pushdown_safe(subquery, rti, rinfo, &safetyInfo))
2577  {
2578  case PUSHDOWN_SAFE:
2579  /* Push it down */
2580  subquery_push_qual(subquery, rte, rti, clause);
2581  break;
2582 
2584 
2585  /*
2586  * Since we can't push the qual down into the subquery,
2587  * check if it happens to reference a window function. If
2588  * so then it might be useful to use for the WindowAgg's
2589  * runCondition.
2590  */
2591  if (!subquery->hasWindowFuncs ||
2592  check_and_push_window_quals(subquery, rte, rti, clause,
2593  &run_cond_attrs))
2594  {
2595  /*
2596  * subquery has no window funcs or the clause is not a
2597  * suitable window run condition qual or it is, but
2598  * the original must also be kept in the upper query.
2599  */
2600  upperrestrictlist = lappend(upperrestrictlist, rinfo);
2601  }
2602  break;
2603 
2604  case PUSHDOWN_UNSAFE:
2605  upperrestrictlist = lappend(upperrestrictlist, rinfo);
2606  break;
2607  }
2608  }
2609  rel->baserestrictinfo = upperrestrictlist;
2610  /* We don't bother recomputing baserestrict_min_security */
2611  }
2612 
2613  pfree(safetyInfo.unsafeFlags);
2614 
2615  /*
2616  * The upper query might not use all the subquery's output columns; if
2617  * not, we can simplify. Pass the attributes that were pushed down into
2618  * WindowAgg run conditions to ensure we don't accidentally think those
2619  * are unused.
2620  */
2621  remove_unused_subquery_outputs(subquery, rel, run_cond_attrs);
2622 
2623  /*
2624  * We can safely pass the outer tuple_fraction down to the subquery if the
2625  * outer level has no joining, aggregation, or sorting to do. Otherwise
2626  * we'd better tell the subquery to plan for full retrieval. (XXX This
2627  * could probably be made more intelligent ...)
2628  */
2629  if (parse->hasAggs ||
2630  parse->groupClause ||
2631  parse->groupingSets ||
2632  root->hasHavingQual ||
2633  parse->distinctClause ||
2634  parse->sortClause ||
2635  bms_membership(root->all_baserels) == BMS_MULTIPLE)
2636  tuple_fraction = 0.0; /* default case */
2637  else
2638  tuple_fraction = root->tuple_fraction;
2639 
2640  /* plan_params should not be in use in current query level */
2641  Assert(root->plan_params == NIL);
2642 
2643  /* Generate a subroot and Paths for the subquery */
2644  rel->subroot = subquery_planner(root->glob, subquery, root, false,
2645  tuple_fraction, NULL);
2646 
2647  /* Isolate the params needed by this specific subplan */
2648  rel->subplan_params = root->plan_params;
2649  root->plan_params = NIL;
2650 
2651  /*
2652  * It's possible that constraint exclusion proved the subquery empty. If
2653  * so, it's desirable to produce an unadorned dummy path so that we will
2654  * recognize appropriate optimizations at this query level.
2655  */
2656  sub_final_rel = fetch_upper_rel(rel->subroot, UPPERREL_FINAL, NULL);
2657 
2658  if (IS_DUMMY_REL(sub_final_rel))
2659  {
2661  return;
2662  }
2663 
2664  /*
2665  * Mark rel with estimated output rows, width, etc. Note that we have to
2666  * do this before generating outer-query paths, else cost_subqueryscan is
2667  * not happy.
2668  */
2670 
2671  /*
2672  * Also detect whether the reltarget is trivial, so that we can pass that
2673  * info to cost_subqueryscan (rather than re-deriving it multiple times).
2674  * It's trivial if it fetches all the subplan output columns in order.
2675  */
2676  if (list_length(rel->reltarget->exprs) != list_length(subquery->targetList))
2677  trivial_pathtarget = false;
2678  else
2679  {
2680  trivial_pathtarget = true;
2681  foreach(lc, rel->reltarget->exprs)
2682  {
2683  Node *node = (Node *) lfirst(lc);
2684  Var *var;
2685 
2686  if (!IsA(node, Var))
2687  {
2688  trivial_pathtarget = false;
2689  break;
2690  }
2691  var = (Var *) node;
2692  if (var->varno != rti ||
2693  var->varattno != foreach_current_index(lc) + 1)
2694  {
2695  trivial_pathtarget = false;
2696  break;
2697  }
2698  }
2699  }
2700 
2701  /*
2702  * For each Path that subquery_planner produced, make a SubqueryScanPath
2703  * in the outer query.
2704  */
2705  foreach(lc, sub_final_rel->pathlist)
2706  {
2707  Path *subpath = (Path *) lfirst(lc);
2708  List *pathkeys;
2709 
2710  /* Convert subpath's pathkeys to outer representation */
2711  pathkeys = convert_subquery_pathkeys(root,
2712  rel,
2713  subpath->pathkeys,
2714  make_tlist_from_pathtarget(subpath->pathtarget));
2715 
2716  /* Generate outer path using this subpath */
2717  add_path(rel, (Path *)
2719  trivial_pathtarget,
2720  pathkeys, required_outer));
2721  }
2722 
2723  /* If outer rel allows parallelism, do same for partial paths. */
2724  if (rel->consider_parallel && bms_is_empty(required_outer))
2725  {
2726  /* If consider_parallel is false, there should be no partial paths. */
2727  Assert(sub_final_rel->consider_parallel ||
2728  sub_final_rel->partial_pathlist == NIL);
2729 
2730  /* Same for partial paths. */
2731  foreach(lc, sub_final_rel->partial_pathlist)
2732  {
2733  Path *subpath = (Path *) lfirst(lc);
2734  List *pathkeys;
2735 
2736  /* Convert subpath's pathkeys to outer representation */
2737  pathkeys = convert_subquery_pathkeys(root,
2738  rel,
2739  subpath->pathkeys,
2740  make_tlist_from_pathtarget(subpath->pathtarget));
2741 
2742  /* Generate outer path using this subpath */
2743  add_partial_path(rel, (Path *)
2745  trivial_pathtarget,
2746  pathkeys,
2747  required_outer));
2748  }
2749  }
2750 }
static pushdown_safe_type qual_is_pushdown_safe(Query *subquery, Index rti, RestrictInfo *rinfo, pushdown_safety_info *safetyInfo)
Definition: allpaths.c:3862
static bool check_and_push_window_quals(Query *subquery, RangeTblEntry *rte, Index rti, Node *clause, Bitmapset **run_cond_attrs)
Definition: allpaths.c:2415
static void remove_unused_subquery_outputs(Query *subquery, RelOptInfo *rel, Bitmapset *extra_used_attrs)
Definition: allpaths.c:4062
BMS_Membership bms_membership(const Bitmapset *a)
Definition: bitmapset.c:781
@ BMS_MULTIPLE
Definition: bitmapset.h:73
void set_subquery_size_estimates(PlannerInfo *root, RelOptInfo *rel)
Definition: costsize.c:5766
SubqueryScanPath * create_subqueryscan_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, bool trivial_pathtarget, List *pathkeys, Relids required_outer)
Definition: pathnode.c:2004
@ UPPERREL_FINAL
Definition: pathnodes.h:79
#define foreach_current_index(var_or_cell)
Definition: pg_list.h:403
PlannerInfo * subquery_planner(PlannerGlobal *glob, Query *parse, PlannerInfo *parent_root, bool hasRecursion, double tuple_fraction, SetOperationStmt *setops)
Definition: planner.c:628
static struct subre * parse(struct vars *v, int stopper, int type, struct state *init, struct state *final)
Definition: regcomp.c:715
RelOptInfo * fetch_upper_rel(PlannerInfo *root, UpperRelationKind kind, Relids relids)
Definition: relnode.c:1470
List * subplan_params
Definition: pathnodes.h:948
PlannerInfo * subroot
Definition: pathnodes.h:947
List * make_tlist_from_pathtarget(PathTarget *target)
Definition: tlist.c:624

References add_partial_path(), add_path(), Assert, RelOptInfo::baserestrictinfo, bms_is_empty, bms_membership(), BMS_MULTIPLE, check_and_push_window_quals(), RestrictInfo::clause, RelOptInfo::consider_parallel, convert_subquery_pathkeys(), copyObject, create_subqueryscan_path(), PathTarget::exprs, fetch_upper_rel(), foreach_current_index, if(), IS_DUMMY_REL, IsA, lappend(), RelOptInfo::lateral_relids, lfirst, list_length(), make_tlist_from_pathtarget(), NIL, palloc0(), parse(), RelOptInfo::partial_pathlist, RelOptInfo::pathlist, pfree(), PUSHDOWN_SAFE, PUSHDOWN_UNSAFE, PUSHDOWN_WINDOWCLAUSE_RUNCOND, qual_is_pushdown_safe(), RelOptInfo::reltarget, remove_unused_subquery_outputs(), root, set_dummy_rel_pathlist(), set_subquery_size_estimates(), subpath(), RelOptInfo::subplan_params, RangeTblEntry::subquery, subquery_is_pushdown_safe(), subquery_planner(), subquery_push_qual(), RelOptInfo::subroot, Query::targetList, pushdown_safety_info::unsafeFlags, pushdown_safety_info::unsafeLeaky, UPPERREL_FINAL, Var::varattno, and Var::varno.

Referenced by set_rel_size().

◆ set_tablefunc_pathlist()

static void set_tablefunc_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 2844 of file allpaths.c.

2845 {
2846  Relids required_outer;
2847 
2848  /*
2849  * We don't support pushing join clauses into the quals of a tablefunc
2850  * scan, but it could still have required parameterization due to LATERAL
2851  * refs in the function expression.
2852  */
2853  required_outer = rel->lateral_relids;
2854 
2855  /* Generate appropriate path */
2857  required_outer));
2858 }
Path * create_tablefuncscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: pathnode.c:2060

References add_path(), create_tablefuncscan_path(), RelOptInfo::lateral_relids, and root.

Referenced by set_rel_pathlist().

◆ set_tablesample_rel_pathlist()

static void set_tablesample_rel_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 862 of file allpaths.c.

863 {
864  Relids required_outer;
865  Path *path;
866 
867  /*
868  * We don't support pushing join clauses into the quals of a samplescan,
869  * but it could still have required parameterization due to LATERAL refs
870  * in its tlist or TABLESAMPLE arguments.
871  */
872  required_outer = rel->lateral_relids;
873 
874  /* Consider sampled scan */
875  path = create_samplescan_path(root, rel, required_outer);
876 
877  /*
878  * If the sampling method does not support repeatable scans, we must avoid
879  * plans that would scan the rel multiple times. Ideally, we'd simply
880  * avoid putting the rel on the inside of a nestloop join; but adding such
881  * a consideration to the planner seems like a great deal of complication
882  * to support an uncommon usage of second-rate sampling methods. Instead,
883  * if there is a risk that the query might perform an unsafe join, just
884  * wrap the SampleScan in a Materialize node. We can check for joins by
885  * counting the membership of all_query_rels (note that this correctly
886  * counts inheritance trees as single rels). If we're inside a subquery,
887  * we can't easily check whether a join might occur in the outer query, so
888  * just assume one is possible.
889  *
890  * GetTsmRoutine is relatively expensive compared to the other tests here,
891  * so check repeatable_across_scans last, even though that's a bit odd.
892  */
893  if ((root->query_level > 1 ||
894  bms_membership(root->all_query_rels) != BMS_SINGLETON) &&
896  {
897  path = (Path *) create_material_path(rel, path);
898  }
899 
900  add_path(rel, path);
901 
902  /* For the moment, at least, there are no other paths to consider */
903 }
@ BMS_SINGLETON
Definition: bitmapset.h:72
Path * create_samplescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: pathnode.c:952
MaterialPath * create_material_path(RelOptInfo *rel, Path *subpath)
Definition: pathnode.c:1566
bool repeatable_across_scans
Definition: tsmapi.h:65
TsmRoutine * GetTsmRoutine(Oid tsmhandler)
Definition: tablesample.c:27

References add_path(), bms_membership(), BMS_SINGLETON, create_material_path(), create_samplescan_path(), GetTsmRoutine(), RelOptInfo::lateral_relids, TsmRoutine::repeatable_across_scans, root, RangeTblEntry::tablesample, and TableSampleClause::tsmhandler.

Referenced by set_rel_pathlist().

◆ set_tablesample_rel_size()

static void set_tablesample_rel_size ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 822 of file allpaths.c.

823 {
824  TableSampleClause *tsc = rte->tablesample;
825  TsmRoutine *tsm;
826  BlockNumber pages;
827  double tuples;
828 
829  /*
830  * Test any partial indexes of rel for applicability. We must do this
831  * first since partial unique indexes can affect size estimates.
832  */
834 
835  /*
836  * Call the sampling method's estimation function to estimate the number
837  * of pages it will read and the number of tuples it will return. (Note:
838  * we assume the function returns sane values.)
839  */
840  tsm = GetTsmRoutine(tsc->tsmhandler);
841  tsm->SampleScanGetSampleSize(root, rel, tsc->args,
842  &pages, &tuples);
843 
844  /*
845  * For the moment, because we will only consider a SampleScan path for the
846  * rel, it's okay to just overwrite the pages and tuples estimates for the
847  * whole relation. If we ever consider multiple path types for sampled
848  * rels, we'll need more complication.
849  */
850  rel->pages = pages;
851  rel->tuples = tuples;
852 
853  /* Mark rel with estimated output rows, width, etc */
855 }
SampleScanGetSampleSize_function SampleScanGetSampleSize
Definition: tsmapi.h:68

References TableSampleClause::args, check_index_predicates(), GetTsmRoutine(), RelOptInfo::pages, root, TsmRoutine::SampleScanGetSampleSize, set_baserel_size_estimates(), RangeTblEntry::tablesample, TableSampleClause::tsmhandler, and RelOptInfo::tuples.

Referenced by set_rel_size().

◆ set_values_pathlist()

static void set_values_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 2824 of file allpaths.c.

2825 {
2826  Relids required_outer;
2827 
2828  /*
2829  * We don't support pushing join clauses into the quals of a values scan,
2830  * but it could still have required parameterization due to LATERAL refs
2831  * in the values expressions.
2832  */
2833  required_outer = rel->lateral_relids;
2834 
2835  /* Generate appropriate path */
2836  add_path(rel, create_valuesscan_path(root, rel, required_outer));
2837 }
Path * create_valuesscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: pathnode.c:2086

References add_path(), create_valuesscan_path(), RelOptInfo::lateral_relids, and root.

Referenced by set_rel_pathlist().

◆ set_worktable_pathlist()

static void set_worktable_pathlist ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)
static

Definition at line 3001 of file allpaths.c.

3002 {
3003  Path *ctepath;
3004  PlannerInfo *cteroot;
3005  Index levelsup;
3006  Relids required_outer;
3007 
3008  /*
3009  * We need to find the non-recursive term's path, which is in the plan
3010  * level that's processing the recursive UNION, which is one level *below*
3011  * where the CTE comes from.
3012  */
3013  levelsup = rte->ctelevelsup;
3014  if (levelsup == 0) /* shouldn't happen */
3015  elog(ERROR, "bad levelsup for CTE \"%s\"", rte->ctename);
3016  levelsup--;
3017  cteroot = root;
3018  while (levelsup-- > 0)
3019  {
3020  cteroot = cteroot->parent_root;
3021  if (!cteroot) /* shouldn't happen */
3022  elog(ERROR, "bad levelsup for CTE \"%s\"", rte->ctename);
3023  }
3024  ctepath = cteroot->non_recursive_path;
3025  if (!ctepath) /* shouldn't happen */
3026  elog(ERROR, "could not find path for CTE \"%s\"", rte->ctename);
3027 
3028  /* Mark rel with estimated output rows, width, etc */
3029  set_cte_size_estimates(root, rel, ctepath->rows);
3030 
3031  /*
3032  * We don't support pushing join clauses into the quals of a worktable
3033  * scan, but it could still have required parameterization due to LATERAL
3034  * refs in its tlist. (I'm not sure this is actually possible given the
3035  * restrictions on recursive references, but it's easy enough to support.)
3036  */
3037  required_outer = rel->lateral_relids;
3038 
3039  /* Generate appropriate path */
3040  add_path(rel, create_worktablescan_path(root, rel, required_outer));
3041 }
Path * create_worktablescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Definition: pathnode.c:2190
struct Path * non_recursive_path
Definition: pathnodes.h:532

References add_path(), create_worktablescan_path(), RangeTblEntry::ctelevelsup, RangeTblEntry::ctename, elog, ERROR, RelOptInfo::lateral_relids, PlannerInfo::non_recursive_path, root, Path::rows, and set_cte_size_estimates().

Referenced by set_rel_size().

◆ standard_join_search()

RelOptInfo* standard_join_search ( PlannerInfo root,
int  levels_needed,
List initial_rels 
)

Definition at line 3418 of file allpaths.c.

3419 {
3420  int lev;
3421  RelOptInfo *rel;
3422 
3423  /*
3424  * This function cannot be invoked recursively within any one planning
3425  * problem, so join_rel_level[] can't be in use already.
3426  */
3427  Assert(root->join_rel_level == NULL);
3428 
3429  /*
3430  * We employ a simple "dynamic programming" algorithm: we first find all
3431  * ways to build joins of two jointree items, then all ways to build joins
3432  * of three items (from two-item joins and single items), then four-item
3433  * joins, and so on until we have considered all ways to join all the
3434  * items into one rel.
3435  *
3436  * root->join_rel_level[j] is a list of all the j-item rels. Initially we
3437  * set root->join_rel_level[1] to represent all the single-jointree-item
3438  * relations.
3439  */
3440  root->join_rel_level = (List **) palloc0((levels_needed + 1) * sizeof(List *));
3441 
3442  root->join_rel_level[1] = initial_rels;
3443 
3444  for (lev = 2; lev <= levels_needed; lev++)
3445  {
3446  ListCell *lc;
3447 
3448  /*
3449  * Determine all possible pairs of relations to be joined at this
3450  * level, and build paths for making each one from every available
3451  * pair of lower-level relations.
3452  */
3454 
3455  /*
3456  * Run generate_partitionwise_join_paths() and
3457  * generate_useful_gather_paths() for each just-processed joinrel. We
3458  * could not do this earlier because both regular and partial paths
3459  * can get added to a particular joinrel at multiple times within
3460  * join_search_one_level.
3461  *
3462  * After that, we're done creating paths for the joinrel, so run
3463  * set_cheapest().
3464  */
3465  foreach(lc, root->join_rel_level[lev])
3466  {
3467  rel = (RelOptInfo *) lfirst(lc);
3468 
3469  /* Create paths for partitionwise joins. */
3471 
3472  /*
3473  * Except for the topmost scan/join rel, consider gathering
3474  * partial paths. We'll do the same for the topmost scan/join rel
3475  * once we know the final targetlist (see grouping_planner's and
3476  * its call to apply_scanjoin_target_to_paths).
3477  */
3478  if (!bms_equal(rel->relids, root->all_query_rels))
3479  generate_useful_gather_paths(root, rel, false);
3480 
3481  /* Find and save the cheapest paths for this rel */
3482  set_cheapest(rel);
3483 
3484 #ifdef OPTIMIZER_DEBUG
3485  pprint(rel);
3486 #endif
3487  }
3488  }
3489 
3490  /*
3491  * We should have a single rel at the final level.
3492  */
3493  if (root->join_rel_level[levels_needed] == NIL)
3494  elog(ERROR, "failed to build any %d-way joins", levels_needed);
3495  Assert(list_length(root->join_rel_level[levels_needed]) == 1);
3496 
3497  rel = (RelOptInfo *) linitial(root->join_rel_level[levels_needed]);
3498 
3499  root->join_rel_level = NULL;
3500 
3501  return rel;
3502 }
void join_search_one_level(PlannerInfo *root, int level)
Definition: joinrels.c:72

References Assert, bms_equal(), elog, ERROR, generate_partitionwise_join_paths(), generate_useful_gather_paths(), join_search_one_level(), lfirst, linitial, list_length(), NIL, palloc0(), pprint(), RelOptInfo::relids, root, and set_cheapest().

Referenced by make_rel_from_joinlist().

◆ subquery_is_pushdown_safe()

static bool subquery_is_pushdown_safe ( Query subquery,
Query topquery,
pushdown_safety_info safetyInfo 
)
static

Definition at line 3589 of file allpaths.c.

3591 {
3592  SetOperationStmt *topop;
3593 
3594  /* Check point 1 */
3595  if (subquery->limitOffset != NULL || subquery->limitCount != NULL)
3596  return false;
3597 
3598  /* Check point 6 */
3599  if (subquery->groupClause && subquery->groupingSets)
3600  return false;
3601 
3602  /* Check points 3, 4, and 5 */
3603  if (subquery->distinctClause ||
3604  subquery->hasWindowFuncs ||
3605  subquery->hasTargetSRFs)
3606  safetyInfo->unsafeVolatile = true;
3607 
3608  /*
3609  * If we're at a leaf query, check for unsafe expressions in its target
3610  * list, and mark any reasons why they're unsafe in unsafeFlags[].
3611  * (Non-leaf nodes in setop trees have only simple Vars in their tlists,
3612  * so no need to check them.)
3613  */
3614  if (subquery->setOperations == NULL)
3615  check_output_expressions(subquery, safetyInfo);
3616 
3617  /* Are we at top level, or looking at a setop component? */
3618  if (subquery == topquery)
3619  {
3620  /* Top level, so check any component queries */
3621  if (subquery->setOperations != NULL)
3622  if (!recurse_pushdown_safe(subquery->setOperations, topquery,
3623  safetyInfo))
3624  return false;
3625  }
3626  else
3627  {
3628  /* Setop component must not have more components (too weird) */
3629  if (subquery->setOperations != NULL)
3630  return false;
3631  /* Check whether setop component output types match top level */
3632  topop = castNode(SetOperationStmt, topquery->setOperations);
3633  Assert(topop);
3635  topop->colTypes,
3636  safetyInfo);
3637  }
3638  return true;
3639 }
static void compare_tlist_datatypes(List *tlist, List *colTypes, pushdown_safety_info *safetyInfo)
Definition: allpaths.c:3786
static void check_output_expressions(Query *subquery, pushdown_safety_info *safetyInfo)
Definition: allpaths.c:3714
Node * limitCount
Definition: parsenodes.h:214
List * groupClause
Definition: parsenodes.h:200
Node * limitOffset
Definition: parsenodes.h:213
List * groupingSets
Definition: parsenodes.h:203

References Assert, castNode, check_output_expressions(), compare_tlist_datatypes(), Query::distinctClause, Query::groupClause, Query::groupingSets, Query::limitCount, Query::limitOffset, recurse_pushdown_safe(), Query::setOperations, Query::targetList, and pushdown_safety_info::unsafeVolatile.

Referenced by recurse_pushdown_safe(), and set_subquery_pathlist().

◆ subquery_push_qual()

static void subquery_push_qual ( Query subquery,
RangeTblEntry rte,
Index  rti,
Node qual 
)
static

Definition at line 3963 of file allpaths.c.

3964 {
3965  if (subquery->setOperations != NULL)
3966  {
3967  /* Recurse to push it separately to each component query */
3968  recurse_push_qual(subquery->setOperations, subquery,
3969  rte, rti, qual);
3970  }
3971  else
3972  {
3973  /*
3974  * We need to replace Vars in the qual (which must refer to outputs of
3975  * the subquery) with copies of the subquery's targetlist expressions.
3976  * Note that at this point, any uplevel Vars in the qual should have
3977  * been replaced with Params, so they need no work.
3978  *
3979  * This step also ensures that when we are pushing into a setop tree,
3980  * each component query gets its own copy of the qual.
3981  */
3982  qual = ReplaceVarsFromTargetList(qual, rti, 0, rte,
3983  subquery->targetList,
3985  &subquery->hasSubLinks);
3986 
3987  /*
3988  * Now attach the qual to the proper place: normally WHERE, but if the
3989  * subquery uses grouping or aggregation, put it in HAVING (since the
3990  * qual really refers to the group-result rows).
3991  */
3992  if (subquery->hasAggs || subquery->groupClause || subquery->groupingSets || subquery->havingQual)
3993  subquery->havingQual = make_and_qual(subquery->havingQual, qual);
3994  else
3995  subquery->jointree->quals =
3996  make_and_qual(subquery->jointree->quals, qual);
3997 
3998  /*
3999  * We need not change the subquery's hasAggs or hasSubLinks flags,
4000  * since we can't be pushing down any aggregates that weren't there
4001  * before, and we don't push down subselects at all.
4002  */
4003  }
4004 }
Node * make_and_qual(Node *qual1, Node *qual2)
Definition: makefuncs.c:707
Node * ReplaceVarsFromTargetList(Node *node, int target_varno, int sublevels_up, RangeTblEntry *target_rte, List *targetlist, ReplaceVarsNoMatchOption nomatch_option, int nomatch_varno, bool *outer_hasSubLinks)
@ REPLACEVARS_REPORT_ERROR
Definition: rewriteManip.h:38
Node * quals
Definition: primnodes.h:2305
FromExpr * jointree
Definition: parsenodes.h:175
Node * havingQual
Definition: parsenodes.h:205

References Query::groupClause, Query::groupingSets, Query::havingQual, Query::jointree, make_and_qual(), FromExpr::quals, recurse_push_qual(), REPLACEVARS_REPORT_ERROR, ReplaceVarsFromTargetList(), Query::setOperations, and Query::targetList.

Referenced by recurse_push_qual(), and set_subquery_pathlist().

◆ targetIsInAllPartitionLists()

static bool targetIsInAllPartitionLists ( TargetEntry tle,
Query query 
)
static

Definition at line 3819 of file allpaths.c.

3820 {
3821  ListCell *lc;
3822 
3823  foreach(lc, query->windowClause)
3824  {
3825  WindowClause *wc = (WindowClause *) lfirst(lc);
3826 
3828  return false;
3829  }
3830  return true;
3831 }
List * partitionClause
Definition: parsenodes.h:1546

References InvalidOid, lfirst, WindowClause::partitionClause, targetIsInSortList(), and Query::windowClause.

Referenced by check_output_expressions().

Variable Documentation

◆ enable_geqo

bool enable_geqo = false

Definition at line 79 of file allpaths.c.

Referenced by make_rel_from_joinlist().

◆ geqo_threshold

int geqo_threshold

Definition at line 80 of file allpaths.c.

Referenced by make_rel_from_joinlist().

◆ join_search_hook

join_search_hook_type join_search_hook = NULL

Definition at line 88 of file allpaths.c.

Referenced by make_rel_from_joinlist().

◆ min_parallel_index_scan_size

int min_parallel_index_scan_size

Definition at line 82 of file allpaths.c.

Referenced by compute_parallel_worker(), and parallel_vacuum_compute_workers().

◆ min_parallel_table_scan_size

int min_parallel_table_scan_size

Definition at line 81 of file allpaths.c.

Referenced by compute_parallel_worker().

◆ set_rel_pathlist_hook

set_rel_pathlist_hook_type set_rel_pathlist_hook = NULL

Definition at line 85 of file allpaths.c.

Referenced by set_rel_pathlist().