PostgreSQL Source Code  git master
plancat.c File Reference
#include "postgres.h"
#include <math.h>
#include "access/genam.h"
#include "access/htup_details.h"
#include "access/nbtree.h"
#include "access/sysattr.h"
#include "access/table.h"
#include "access/tableam.h"
#include "access/transam.h"
#include "access/xlog.h"
#include "catalog/catalog.h"
#include "catalog/heap.h"
#include "catalog/pg_am.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_statistic_ext.h"
#include "catalog/pg_statistic_ext_data.h"
#include "foreign/fdwapi.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
#include "nodes/supportnodes.h"
#include "optimizer/cost.h"
#include "optimizer/optimizer.h"
#include "optimizer/plancat.h"
#include "parser/parse_relation.h"
#include "parser/parsetree.h"
#include "partitioning/partdesc.h"
#include "rewrite/rewriteManip.h"
#include "statistics/statistics.h"
#include "storage/bufmgr.h"
#include "tcop/tcopprot.h"
#include "utils/builtins.h"
#include "utils/lsyscache.h"
#include "utils/partcache.h"
#include "utils/rel.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
Include dependency graph for plancat.c:

Go to the source code of this file.

Functions

static void get_relation_foreign_keys (PlannerInfo *root, RelOptInfo *rel, Relation relation, bool inhparent)
 
static bool infer_collation_opclass_match (InferenceElem *elem, Relation idxRel, List *idxExprs)
 
static Listget_relation_constraints (PlannerInfo *root, Oid relationObjectId, RelOptInfo *rel, bool include_noinherit, bool include_notnull, bool include_partition)
 
static Listbuild_index_tlist (PlannerInfo *root, IndexOptInfo *index, Relation heapRelation)
 
static Listget_relation_statistics (RelOptInfo *rel, Relation relation)
 
static void set_relation_partition_info (PlannerInfo *root, RelOptInfo *rel, Relation relation)
 
static PartitionScheme find_partition_scheme (PlannerInfo *root, Relation relation)
 
static void set_baserel_partition_key_exprs (Relation relation, RelOptInfo *rel)
 
static void set_baserel_partition_constraint (Relation relation, RelOptInfo *rel)
 
void get_relation_info (PlannerInfo *root, Oid relationObjectId, bool inhparent, RelOptInfo *rel)
 
Listinfer_arbiter_indexes (PlannerInfo *root)
 
void estimate_rel_size (Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac)
 
int32 get_rel_data_width (Relation rel, int32 *attr_widths)
 
int32 get_relation_data_width (Oid relid, int32 *attr_widths)
 
static void get_relation_statistics_worker (List **stainfos, RelOptInfo *rel, Oid statOid, bool inh, Bitmapset *keys, List *exprs)
 
bool relation_excluded_by_constraints (PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
 
Listbuild_physical_tlist (PlannerInfo *root, RelOptInfo *rel)
 
Selectivity restriction_selectivity (PlannerInfo *root, Oid operatorid, List *args, Oid inputcollid, int varRelid)
 
Selectivity join_selectivity (PlannerInfo *root, Oid operatorid, List *args, Oid inputcollid, JoinType jointype, SpecialJoinInfo *sjinfo)
 
Selectivity function_selectivity (PlannerInfo *root, Oid funcid, List *args, Oid inputcollid, bool is_join, int varRelid, JoinType jointype, SpecialJoinInfo *sjinfo)
 
void add_function_cost (PlannerInfo *root, Oid funcid, Node *node, QualCost *cost)
 
double get_function_rows (PlannerInfo *root, Oid funcid, Node *node)
 
bool has_unique_index (RelOptInfo *rel, AttrNumber attno)
 
bool has_row_triggers (PlannerInfo *root, Index rti, CmdType event)
 
bool has_stored_generated_columns (PlannerInfo *root, Index rti)
 
Bitmapsetget_dependent_generated_columns (PlannerInfo *root, Index rti, Bitmapset *target_cols)
 

Variables

int constraint_exclusion = CONSTRAINT_EXCLUSION_PARTITION
 
get_relation_info_hook_type get_relation_info_hook = NULL
 

Function Documentation

◆ add_function_cost()

void add_function_cost ( PlannerInfo root,
Oid  funcid,
Node node,
QualCost cost 
)

Definition at line 2095 of file plancat.c.

2097 {
2098  HeapTuple proctup;
2099  Form_pg_proc procform;
2100 
2101  proctup = SearchSysCache1(PROCOID, ObjectIdGetDatum(funcid));
2102  if (!HeapTupleIsValid(proctup))
2103  elog(ERROR, "cache lookup failed for function %u", funcid);
2104  procform = (Form_pg_proc) GETSTRUCT(proctup);
2105 
2106  if (OidIsValid(procform->prosupport))
2107  {
2108  SupportRequestCost req;
2109  SupportRequestCost *sresult;
2110 
2111  req.type = T_SupportRequestCost;
2112  req.root = root;
2113  req.funcid = funcid;
2114  req.node = node;
2115 
2116  /* Initialize cost fields so that support function doesn't have to */
2117  req.startup = 0;
2118  req.per_tuple = 0;
2119 
2120  sresult = (SupportRequestCost *)
2121  DatumGetPointer(OidFunctionCall1(procform->prosupport,
2122  PointerGetDatum(&req)));
2123 
2124  if (sresult == &req)
2125  {
2126  /* Success, so accumulate support function's estimate into *cost */
2127  cost->startup += req.startup;
2128  cost->per_tuple += req.per_tuple;
2129  ReleaseSysCache(proctup);
2130  return;
2131  }
2132  }
2133 
2134  /* No support function, or it failed, so rely on procost */
2135  cost->per_tuple += procform->procost * cpu_operator_cost;
2136 
2137  ReleaseSysCache(proctup);
2138 }
#define OidIsValid(objectId)
Definition: c.h:766
double cpu_operator_cost
Definition: costsize.c:134
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:225
#define OidFunctionCall1(functionId, arg1)
Definition: fmgr.h:679
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
FormData_pg_proc * Form_pg_proc
Definition: pg_proc.h:136
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
tree ctl root
Definition: radixtree.h:1886
Cost per_tuple
Definition: pathnodes.h:48
Cost startup
Definition: pathnodes.h:47
struct PlannerInfo * root
Definition: supportnodes.h:136
void ReleaseSysCache(HeapTuple tuple)
Definition: syscache.c:269
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Definition: syscache.c:221

References cpu_operator_cost, DatumGetPointer(), elog, ERROR, SupportRequestCost::funcid, GETSTRUCT, HeapTupleIsValid, SupportRequestCost::node, ObjectIdGetDatum(), OidFunctionCall1, OidIsValid, QualCost::per_tuple, SupportRequestCost::per_tuple, PointerGetDatum(), ReleaseSysCache(), root, SupportRequestCost::root, SearchSysCache1(), QualCost::startup, SupportRequestCost::startup, and SupportRequestCost::type.

Referenced by cost_qual_eval_walker(), cost_windowagg(), and get_agg_clause_costs().

◆ build_index_tlist()

static List * build_index_tlist ( PlannerInfo root,
IndexOptInfo index,
Relation  heapRelation 
)
static

Definition at line 1891 of file plancat.c.

1893 {
1894  List *tlist = NIL;
1895  Index varno = index->rel->relid;
1896  ListCell *indexpr_item;
1897  int i;
1898 
1899  indexpr_item = list_head(index->indexprs);
1900  for (i = 0; i < index->ncolumns; i++)
1901  {
1902  int indexkey = index->indexkeys[i];
1903  Expr *indexvar;
1904 
1905  if (indexkey != 0)
1906  {
1907  /* simple column */
1908  const FormData_pg_attribute *att_tup;
1909 
1910  if (indexkey < 0)
1911  att_tup = SystemAttributeDefinition(indexkey);
1912  else
1913  att_tup = TupleDescAttr(heapRelation->rd_att, indexkey - 1);
1914 
1915  indexvar = (Expr *) makeVar(varno,
1916  indexkey,
1917  att_tup->atttypid,
1918  att_tup->atttypmod,
1919  att_tup->attcollation,
1920  0);
1921  }
1922  else
1923  {
1924  /* expression column */
1925  if (indexpr_item == NULL)
1926  elog(ERROR, "wrong number of index expressions");
1927  indexvar = (Expr *) lfirst(indexpr_item);
1928  indexpr_item = lnext(index->indexprs, indexpr_item);
1929  }
1930 
1931  tlist = lappend(tlist,
1932  makeTargetEntry(indexvar,
1933  i + 1,
1934  NULL,
1935  false));
1936  }
1937  if (indexpr_item != NULL)
1938  elog(ERROR, "wrong number of index expressions");
1939 
1940  return tlist;
1941 }
unsigned int Index
Definition: c.h:605
const FormData_pg_attribute * SystemAttributeDefinition(AttrNumber attno)
Definition: heap.c:240
int i
Definition: isn.c:73
List * lappend(List *list, void *datum)
Definition: list.c:339
TargetEntry * makeTargetEntry(Expr *expr, AttrNumber resno, char *resname, bool resjunk)
Definition: makefuncs.c:240
Var * makeVar(int varno, AttrNumber varattno, Oid vartype, int32 vartypmod, Oid varcollid, Index varlevelsup)
Definition: makefuncs.c:66
FormData_pg_attribute
Definition: pg_attribute.h:193
#define lfirst(lc)
Definition: pg_list.h:172
#define NIL
Definition: pg_list.h:68
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
Definition: pg_list.h:54
TupleDesc rd_att
Definition: rel.h:112
Definition: type.h:95
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92

References elog, ERROR, FormData_pg_attribute, i, lappend(), lfirst, list_head(), lnext(), makeTargetEntry(), makeVar(), NIL, RelationData::rd_att, SystemAttributeDefinition(), and TupleDescAttr.

Referenced by get_relation_info().

◆ build_physical_tlist()

List* build_physical_tlist ( PlannerInfo root,
RelOptInfo rel 
)

Definition at line 1770 of file plancat.c.

1771 {
1772  List *tlist = NIL;
1773  Index varno = rel->relid;
1774  RangeTblEntry *rte = planner_rt_fetch(varno, root);
1775  Relation relation;
1776  Query *subquery;
1777  Var *var;
1778  ListCell *l;
1779  int attrno,
1780  numattrs;
1781  List *colvars;
1782 
1783  switch (rte->rtekind)
1784  {
1785  case RTE_RELATION:
1786  /* Assume we already have adequate lock */
1787  relation = table_open(rte->relid, NoLock);
1788 
1789  numattrs = RelationGetNumberOfAttributes(relation);
1790  for (attrno = 1; attrno <= numattrs; attrno++)
1791  {
1792  Form_pg_attribute att_tup = TupleDescAttr(relation->rd_att,
1793  attrno - 1);
1794 
1795  if (att_tup->attisdropped || att_tup->atthasmissing)
1796  {
1797  /* found a dropped or missing col, so punt */
1798  tlist = NIL;
1799  break;
1800  }
1801 
1802  var = makeVar(varno,
1803  attrno,
1804  att_tup->atttypid,
1805  att_tup->atttypmod,
1806  att_tup->attcollation,
1807  0);
1808 
1809  tlist = lappend(tlist,
1810  makeTargetEntry((Expr *) var,
1811  attrno,
1812  NULL,
1813  false));
1814  }
1815 
1816  table_close(relation, NoLock);
1817  break;
1818 
1819  case RTE_SUBQUERY:
1820  subquery = rte->subquery;
1821  foreach(l, subquery->targetList)
1822  {
1823  TargetEntry *tle = (TargetEntry *) lfirst(l);
1824 
1825  /*
1826  * A resjunk column of the subquery can be reflected as
1827  * resjunk in the physical tlist; we need not punt.
1828  */
1829  var = makeVarFromTargetEntry(varno, tle);
1830 
1831  tlist = lappend(tlist,
1832  makeTargetEntry((Expr *) var,
1833  tle->resno,
1834  NULL,
1835  tle->resjunk));
1836  }
1837  break;
1838 
1839  case RTE_FUNCTION:
1840  case RTE_TABLEFUNC:
1841  case RTE_VALUES:
1842  case RTE_CTE:
1843  case RTE_NAMEDTUPLESTORE:
1844  case RTE_RESULT:
1845  /* Not all of these can have dropped cols, but share code anyway */
1846  expandRTE(rte, varno, 0, -1, true /* include dropped */ ,
1847  NULL, &colvars);
1848  foreach(l, colvars)
1849  {
1850  var = (Var *) lfirst(l);
1851 
1852  /*
1853  * A non-Var in expandRTE's output means a dropped column;
1854  * must punt.
1855  */
1856  if (!IsA(var, Var))
1857  {
1858  tlist = NIL;
1859  break;
1860  }
1861 
1862  tlist = lappend(tlist,
1863  makeTargetEntry((Expr *) var,
1864  var->varattno,
1865  NULL,
1866  false));
1867  }
1868  break;
1869 
1870  default:
1871  /* caller error */
1872  elog(ERROR, "unsupported RTE kind %d in build_physical_tlist",
1873  (int) rte->rtekind);
1874  break;
1875  }
1876 
1877  return tlist;
1878 }
#define NoLock
Definition: lockdefs.h:34
Var * makeVarFromTargetEntry(int varno, TargetEntry *tle)
Definition: makefuncs.c:105
#define IsA(nodeptr, _type_)
Definition: nodes.h:158
void expandRTE(RangeTblEntry *rte, int rtindex, int sublevels_up, int location, bool include_dropped, List **colnames, List **colvars)
@ RTE_CTE
Definition: parsenodes.h:1023
@ RTE_NAMEDTUPLESTORE
Definition: parsenodes.h:1024
@ RTE_VALUES
Definition: parsenodes.h:1022
@ RTE_SUBQUERY
Definition: parsenodes.h:1018
@ RTE_RESULT
Definition: parsenodes.h:1025
@ RTE_FUNCTION
Definition: parsenodes.h:1020
@ RTE_TABLEFUNC
Definition: parsenodes.h:1021
@ RTE_RELATION
Definition: parsenodes.h:1017
#define planner_rt_fetch(rti, root)
Definition: pathnodes.h:570
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
#define RelationGetNumberOfAttributes(relation)
Definition: rel.h:511
List * targetList
Definition: parsenodes.h:193
Query * subquery
Definition: parsenodes.h:1104
RTEKind rtekind
Definition: parsenodes.h:1047
Index relid
Definition: pathnodes.h:918
AttrNumber resno
Definition: primnodes.h:2192
Definition: primnodes.h:248
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40

References elog, ERROR, expandRTE(), IsA, lappend(), lfirst, makeTargetEntry(), makeVar(), makeVarFromTargetEntry(), NIL, NoLock, planner_rt_fetch, RelationData::rd_att, RelationGetNumberOfAttributes, RangeTblEntry::relid, RelOptInfo::relid, TargetEntry::resno, root, RTE_CTE, RTE_FUNCTION, RTE_NAMEDTUPLESTORE, RTE_RELATION, RTE_RESULT, RTE_SUBQUERY, RTE_TABLEFUNC, RTE_VALUES, RangeTblEntry::rtekind, RangeTblEntry::subquery, table_close(), table_open(), Query::targetList, and TupleDescAttr.

Referenced by create_scan_plan().

◆ estimate_rel_size()

void estimate_rel_size ( Relation  rel,
int32 attr_widths,
BlockNumber pages,
double *  tuples,
double *  allvisfrac 
)

Definition at line 1066 of file plancat.c.

1068 {
1069  BlockNumber curpages;
1070  BlockNumber relpages;
1071  double reltuples;
1072  BlockNumber relallvisible;
1073  double density;
1074 
1075  if (RELKIND_HAS_TABLE_AM(rel->rd_rel->relkind))
1076  {
1077  table_relation_estimate_size(rel, attr_widths, pages, tuples,
1078  allvisfrac);
1079  }
1080  else if (rel->rd_rel->relkind == RELKIND_INDEX)
1081  {
1082  /*
1083  * XXX: It'd probably be good to move this into a callback, individual
1084  * index types e.g. know if they have a metapage.
1085  */
1086 
1087  /* it has storage, ok to call the smgr */
1088  curpages = RelationGetNumberOfBlocks(rel);
1089 
1090  /* report estimated # pages */
1091  *pages = curpages;
1092  /* quick exit if rel is clearly empty */
1093  if (curpages == 0)
1094  {
1095  *tuples = 0;
1096  *allvisfrac = 0;
1097  return;
1098  }
1099 
1100  /* coerce values in pg_class to more desirable types */
1101  relpages = (BlockNumber) rel->rd_rel->relpages;
1102  reltuples = (double) rel->rd_rel->reltuples;
1103  relallvisible = (BlockNumber) rel->rd_rel->relallvisible;
1104 
1105  /*
1106  * Discount the metapage while estimating the number of tuples. This
1107  * is a kluge because it assumes more than it ought to about index
1108  * structure. Currently it's OK for btree, hash, and GIN indexes but
1109  * suspect for GiST indexes.
1110  */
1111  if (relpages > 0)
1112  {
1113  curpages--;
1114  relpages--;
1115  }
1116 
1117  /* estimate number of tuples from previous tuple density */
1118  if (reltuples >= 0 && relpages > 0)
1119  density = reltuples / (double) relpages;
1120  else
1121  {
1122  /*
1123  * If we have no data because the relation was never vacuumed,
1124  * estimate tuple width from attribute datatypes. We assume here
1125  * that the pages are completely full, which is OK for tables
1126  * (since they've presumably not been VACUUMed yet) but is
1127  * probably an overestimate for indexes. Fortunately
1128  * get_relation_info() can clamp the overestimate to the parent
1129  * table's size.
1130  *
1131  * Note: this code intentionally disregards alignment
1132  * considerations, because (a) that would be gilding the lily
1133  * considering how crude the estimate is, and (b) it creates
1134  * platform dependencies in the default plans which are kind of a
1135  * headache for regression testing.
1136  *
1137  * XXX: Should this logic be more index specific?
1138  */
1139  int32 tuple_width;
1140 
1141  tuple_width = get_rel_data_width(rel, attr_widths);
1142  tuple_width += MAXALIGN(SizeofHeapTupleHeader);
1143  tuple_width += sizeof(ItemIdData);
1144  /* note: integer division is intentional here */
1145  density = (BLCKSZ - SizeOfPageHeaderData) / tuple_width;
1146  }
1147  *tuples = rint(density * (double) curpages);
1148 
1149  /*
1150  * We use relallvisible as-is, rather than scaling it up like we do
1151  * for the pages and tuples counts, on the theory that any pages added
1152  * since the last VACUUM are most likely not marked all-visible. But
1153  * costsize.c wants it converted to a fraction.
1154  */
1155  if (relallvisible == 0 || curpages <= 0)
1156  *allvisfrac = 0;
1157  else if ((double) relallvisible >= curpages)
1158  *allvisfrac = 1;
1159  else
1160  *allvisfrac = (double) relallvisible / curpages;
1161  }
1162  else
1163  {
1164  /*
1165  * Just use whatever's in pg_class. This covers foreign tables,
1166  * sequences, and also relkinds without storage (shouldn't get here?);
1167  * see initializations in AddNewRelationTuple(). Note that FDW must
1168  * cope if reltuples is -1!
1169  */
1170  *pages = rel->rd_rel->relpages;
1171  *tuples = rel->rd_rel->reltuples;
1172  *allvisfrac = 0;
1173  }
1174 }
uint32 BlockNumber
Definition: block.h:31
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:273
#define SizeOfPageHeaderData
Definition: bufpage.h:216
#define MAXALIGN(LEN)
Definition: c.h:802
signed int int32
Definition: c.h:496
#define SizeofHeapTupleHeader
Definition: htup_details.h:185
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
struct ItemIdData ItemIdData
int32 get_rel_data_width(Relation rel, int32 *attr_widths)
Definition: plancat.c:1191
Form_pg_class rd_rel
Definition: rel.h:111
static void table_relation_estimate_size(Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac)
Definition: tableam.h:1937

References get_rel_data_width(), if(), MAXALIGN, RelationData::rd_rel, RelationGetNumberOfBlocks, SizeofHeapTupleHeader, SizeOfPageHeaderData, and table_relation_estimate_size().

Referenced by get_relation_info(), hashbuild(), and plan_create_index_workers().

◆ find_partition_scheme()

static PartitionScheme find_partition_scheme ( PlannerInfo root,
Relation  relation 
)
static

Definition at line 2401 of file plancat.c.

2402 {
2403  PartitionKey partkey = RelationGetPartitionKey(relation);
2404  ListCell *lc;
2405  int partnatts,
2406  i;
2407  PartitionScheme part_scheme;
2408 
2409  /* A partitioned table should have a partition key. */
2410  Assert(partkey != NULL);
2411 
2412  partnatts = partkey->partnatts;
2413 
2414  /* Search for a matching partition scheme and return if found one. */
2415  foreach(lc, root->part_schemes)
2416  {
2417  part_scheme = lfirst(lc);
2418 
2419  /* Match partitioning strategy and number of keys. */
2420  if (partkey->strategy != part_scheme->strategy ||
2421  partnatts != part_scheme->partnatts)
2422  continue;
2423 
2424  /* Match partition key type properties. */
2425  if (memcmp(partkey->partopfamily, part_scheme->partopfamily,
2426  sizeof(Oid) * partnatts) != 0 ||
2427  memcmp(partkey->partopcintype, part_scheme->partopcintype,
2428  sizeof(Oid) * partnatts) != 0 ||
2429  memcmp(partkey->partcollation, part_scheme->partcollation,
2430  sizeof(Oid) * partnatts) != 0)
2431  continue;
2432 
2433  /*
2434  * Length and byval information should match when partopcintype
2435  * matches.
2436  */
2437  Assert(memcmp(partkey->parttyplen, part_scheme->parttyplen,
2438  sizeof(int16) * partnatts) == 0);
2439  Assert(memcmp(partkey->parttypbyval, part_scheme->parttypbyval,
2440  sizeof(bool) * partnatts) == 0);
2441 
2442  /*
2443  * If partopfamily and partopcintype matched, must have the same
2444  * partition comparison functions. Note that we cannot reliably
2445  * Assert the equality of function structs themselves for they might
2446  * be different across PartitionKey's, so just Assert for the function
2447  * OIDs.
2448  */
2449 #ifdef USE_ASSERT_CHECKING
2450  for (i = 0; i < partkey->partnatts; i++)
2451  Assert(partkey->partsupfunc[i].fn_oid ==
2452  part_scheme->partsupfunc[i].fn_oid);
2453 #endif
2454 
2455  /* Found matching partition scheme. */
2456  return part_scheme;
2457  }
2458 
2459  /*
2460  * Did not find matching partition scheme. Create one copying relevant
2461  * information from the relcache. We need to copy the contents of the
2462  * array since the relcache entry may not survive after we have closed the
2463  * relation.
2464  */
2465  part_scheme = (PartitionScheme) palloc0(sizeof(PartitionSchemeData));
2466  part_scheme->strategy = partkey->strategy;
2467  part_scheme->partnatts = partkey->partnatts;
2468 
2469  part_scheme->partopfamily = (Oid *) palloc(sizeof(Oid) * partnatts);
2470  memcpy(part_scheme->partopfamily, partkey->partopfamily,
2471  sizeof(Oid) * partnatts);
2472 
2473  part_scheme->partopcintype = (Oid *) palloc(sizeof(Oid) * partnatts);
2474  memcpy(part_scheme->partopcintype, partkey->partopcintype,
2475  sizeof(Oid) * partnatts);
2476 
2477  part_scheme->partcollation = (Oid *) palloc(sizeof(Oid) * partnatts);
2478  memcpy(part_scheme->partcollation, partkey->partcollation,
2479  sizeof(Oid) * partnatts);
2480 
2481  part_scheme->parttyplen = (int16 *) palloc(sizeof(int16) * partnatts);
2482  memcpy(part_scheme->parttyplen, partkey->parttyplen,
2483  sizeof(int16) * partnatts);
2484 
2485  part_scheme->parttypbyval = (bool *) palloc(sizeof(bool) * partnatts);
2486  memcpy(part_scheme->parttypbyval, partkey->parttypbyval,
2487  sizeof(bool) * partnatts);
2488 
2489  part_scheme->partsupfunc = (FmgrInfo *)
2490  palloc(sizeof(FmgrInfo) * partnatts);
2491  for (i = 0; i < partnatts; i++)
2492  fmgr_info_copy(&part_scheme->partsupfunc[i], &partkey->partsupfunc[i],
2494 
2495  /* Add the partitioning scheme to PlannerInfo. */
2496  root->part_schemes = lappend(root->part_schemes, part_scheme);
2497 
2498  return part_scheme;
2499 }
signed short int16
Definition: c.h:495
#define Assert(condition)
Definition: c.h:849
void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo, MemoryContext destcxt)
Definition: fmgr.c:580
void * palloc0(Size size)
Definition: mcxt.c:1347
MemoryContext CurrentMemoryContext
Definition: mcxt.c:143
void * palloc(Size size)
Definition: mcxt.c:1317
PartitionKey RelationGetPartitionKey(Relation rel)
Definition: partcache.c:51
struct PartitionSchemeData * PartitionScheme
Definition: pathnodes.h:604
unsigned int Oid
Definition: postgres_ext.h:31
Definition: fmgr.h:57
Oid fn_oid
Definition: fmgr.h:59
Oid * partcollation
Definition: partcache.h:39
Oid * partopfamily
Definition: partcache.h:34
bool * parttypbyval
Definition: partcache.h:45
PartitionStrategy strategy
Definition: partcache.h:27
int16 * parttyplen
Definition: partcache.h:44
FmgrInfo * partsupfunc
Definition: partcache.h:36
Oid * partopcintype
Definition: partcache.h:35
struct FmgrInfo * partsupfunc
Definition: pathnodes.h:601

References Assert, CurrentMemoryContext, fmgr_info_copy(), FmgrInfo::fn_oid, i, lappend(), lfirst, palloc(), palloc0(), PartitionSchemeData::partcollation, PartitionKeyData::partcollation, PartitionSchemeData::partnatts, PartitionKeyData::partnatts, PartitionSchemeData::partopcintype, PartitionKeyData::partopcintype, PartitionSchemeData::partopfamily, PartitionKeyData::partopfamily, PartitionSchemeData::partsupfunc, PartitionKeyData::partsupfunc, PartitionSchemeData::parttypbyval, PartitionKeyData::parttypbyval, PartitionSchemeData::parttyplen, PartitionKeyData::parttyplen, RelationGetPartitionKey(), root, PartitionSchemeData::strategy, and PartitionKeyData::strategy.

Referenced by set_relation_partition_info().

◆ function_selectivity()

Selectivity function_selectivity ( PlannerInfo root,
Oid  funcid,
List args,
Oid  inputcollid,
bool  is_join,
int  varRelid,
JoinType  jointype,
SpecialJoinInfo sjinfo 
)

Definition at line 2033 of file plancat.c.

2041 {
2042  RegProcedure prosupport = get_func_support(funcid);
2044  SupportRequestSelectivity *sresult;
2045 
2046  /*
2047  * If no support function is provided, use our historical default
2048  * estimate, 0.3333333. This seems a pretty unprincipled choice, but
2049  * Postgres has been using that estimate for function calls since 1992.
2050  * The hoariness of this behavior suggests that we should not be in too
2051  * much hurry to use another value.
2052  */
2053  if (!prosupport)
2054  return (Selectivity) 0.3333333;
2055 
2056  req.type = T_SupportRequestSelectivity;
2057  req.root = root;
2058  req.funcid = funcid;
2059  req.args = args;
2060  req.inputcollid = inputcollid;
2061  req.is_join = is_join;
2062  req.varRelid = varRelid;
2063  req.jointype = jointype;
2064  req.sjinfo = sjinfo;
2065  req.selectivity = -1; /* to catch failure to set the value */
2066 
2067  sresult = (SupportRequestSelectivity *)
2068  DatumGetPointer(OidFunctionCall1(prosupport,
2069  PointerGetDatum(&req)));
2070 
2071  /* If support function fails, use default */
2072  if (sresult != &req)
2073  return (Selectivity) 0.3333333;
2074 
2075  if (req.selectivity < 0.0 || req.selectivity > 1.0)
2076  elog(ERROR, "invalid function selectivity: %f", req.selectivity);
2077 
2078  return (Selectivity) req.selectivity;
2079 }
regproc RegProcedure
Definition: c.h:641
RegProcedure get_func_support(Oid funcid)
Definition: lsyscache.c:1858
double Selectivity
Definition: nodes.h:250
struct PlannerInfo * root
Definition: supportnodes.h:96
struct SpecialJoinInfo * sjinfo
Definition: supportnodes.h:103

References generate_unaccent_rules::args, SupportRequestSelectivity::args, DatumGetPointer(), elog, ERROR, SupportRequestSelectivity::funcid, get_func_support(), SupportRequestSelectivity::inputcollid, SupportRequestSelectivity::is_join, SupportRequestSelectivity::jointype, OidFunctionCall1, PointerGetDatum(), root, SupportRequestSelectivity::root, SupportRequestSelectivity::selectivity, SupportRequestSelectivity::sjinfo, SupportRequestSelectivity::type, and SupportRequestSelectivity::varRelid.

Referenced by clause_selectivity_ext().

◆ get_dependent_generated_columns()

Bitmapset* get_dependent_generated_columns ( PlannerInfo root,
Index  rti,
Bitmapset target_cols 
)

Definition at line 2323 of file plancat.c.

2325 {
2326  Bitmapset *dependentCols = NULL;
2327  RangeTblEntry *rte = planner_rt_fetch(rti, root);
2328  Relation relation;
2329  TupleDesc tupdesc;
2330  TupleConstr *constr;
2331 
2332  /* Assume we already have adequate lock */
2333  relation = table_open(rte->relid, NoLock);
2334 
2335  tupdesc = RelationGetDescr(relation);
2336  constr = tupdesc->constr;
2337 
2338  if (constr && constr->has_generated_stored)
2339  {
2340  for (int i = 0; i < constr->num_defval; i++)
2341  {
2342  AttrDefault *defval = &constr->defval[i];
2343  Node *expr;
2344  Bitmapset *attrs_used = NULL;
2345 
2346  /* skip if not generated column */
2347  if (!TupleDescAttr(tupdesc, defval->adnum - 1)->attgenerated)
2348  continue;
2349 
2350  /* identify columns this generated column depends on */
2351  expr = stringToNode(defval->adbin);
2352  pull_varattnos(expr, 1, &attrs_used);
2353 
2354  if (bms_overlap(target_cols, attrs_used))
2355  dependentCols = bms_add_member(dependentCols,
2357  }
2358  }
2359 
2360  table_close(relation, NoLock);
2361 
2362  return dependentCols;
2363 }
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582
void * stringToNode(const char *str)
Definition: read.c:90
#define RelationGetDescr(relation)
Definition: rel.h:531
AttrNumber adnum
Definition: tupdesc.h:24
char * adbin
Definition: tupdesc.h:25
Definition: nodes.h:129
AttrDefault * defval
Definition: tupdesc.h:39
bool has_generated_stored
Definition: tupdesc.h:45
uint16 num_defval
Definition: tupdesc.h:42
TupleConstr * constr
Definition: tupdesc.h:85
#define FirstLowInvalidHeapAttributeNumber
Definition: sysattr.h:27
void pull_varattnos(Node *node, Index varno, Bitmapset **varattnos)
Definition: var.c:296

References AttrDefault::adbin, AttrDefault::adnum, bms_add_member(), bms_overlap(), TupleDescData::constr, TupleConstr::defval, FirstLowInvalidHeapAttributeNumber, TupleConstr::has_generated_stored, i, NoLock, TupleConstr::num_defval, planner_rt_fetch, pull_varattnos(), RelationGetDescr, RangeTblEntry::relid, root, stringToNode(), table_close(), table_open(), and TupleDescAttr.

Referenced by get_rel_all_updated_cols().

◆ get_function_rows()

double get_function_rows ( PlannerInfo root,
Oid  funcid,
Node node 
)

Definition at line 2156 of file plancat.c.

2157 {
2158  HeapTuple proctup;
2159  Form_pg_proc procform;
2160  double result;
2161 
2162  proctup = SearchSysCache1(PROCOID, ObjectIdGetDatum(funcid));
2163  if (!HeapTupleIsValid(proctup))
2164  elog(ERROR, "cache lookup failed for function %u", funcid);
2165  procform = (Form_pg_proc) GETSTRUCT(proctup);
2166 
2167  Assert(procform->proretset); /* else caller error */
2168 
2169  if (OidIsValid(procform->prosupport))
2170  {
2171  SupportRequestRows req;
2172  SupportRequestRows *sresult;
2173 
2174  req.type = T_SupportRequestRows;
2175  req.root = root;
2176  req.funcid = funcid;
2177  req.node = node;
2178 
2179  req.rows = 0; /* just for sanity */
2180 
2181  sresult = (SupportRequestRows *)
2182  DatumGetPointer(OidFunctionCall1(procform->prosupport,
2183  PointerGetDatum(&req)));
2184 
2185  if (sresult == &req)
2186  {
2187  /* Success */
2188  ReleaseSysCache(proctup);
2189  return req.rows;
2190  }
2191  }
2192 
2193  /* No support function, or it failed, so rely on prorows */
2194  result = procform->prorows;
2195 
2196  ReleaseSysCache(proctup);
2197 
2198  return result;
2199 }
struct PlannerInfo * root
Definition: supportnodes.h:163

References Assert, DatumGetPointer(), elog, ERROR, SupportRequestRows::funcid, GETSTRUCT, HeapTupleIsValid, SupportRequestRows::node, ObjectIdGetDatum(), OidFunctionCall1, OidIsValid, PointerGetDatum(), ReleaseSysCache(), root, SupportRequestRows::root, SupportRequestRows::rows, SearchSysCache1(), and SupportRequestRows::type.

Referenced by expression_returns_set_rows().

◆ get_rel_data_width()

int32 get_rel_data_width ( Relation  rel,
int32 attr_widths 
)

Definition at line 1191 of file plancat.c.

1192 {
1193  int64 tuple_width = 0;
1194  int i;
1195 
1196  for (i = 1; i <= RelationGetNumberOfAttributes(rel); i++)
1197  {
1198  Form_pg_attribute att = TupleDescAttr(rel->rd_att, i - 1);
1199  int32 item_width;
1200 
1201  if (att->attisdropped)
1202  continue;
1203 
1204  /* use previously cached data, if any */
1205  if (attr_widths != NULL && attr_widths[i] > 0)
1206  {
1207  tuple_width += attr_widths[i];
1208  continue;
1209  }
1210 
1211  /* This should match set_rel_width() in costsize.c */
1212  item_width = get_attavgwidth(RelationGetRelid(rel), i);
1213  if (item_width <= 0)
1214  {
1215  item_width = get_typavgwidth(att->atttypid, att->atttypmod);
1216  Assert(item_width > 0);
1217  }
1218  if (attr_widths != NULL)
1219  attr_widths[i] = item_width;
1220  tuple_width += item_width;
1221  }
1222 
1223  return clamp_width_est(tuple_width);
1224 }
int32 clamp_width_est(int64 tuple_width)
Definition: costsize.c:242
int32 get_attavgwidth(Oid relid, AttrNumber attnum)
Definition: lsyscache.c:3158
int32 get_typavgwidth(Oid typid, int32 typmod)
Definition: lsyscache.c:2578
#define RelationGetRelid(relation)
Definition: rel.h:505

References Assert, clamp_width_est(), get_attavgwidth(), get_typavgwidth(), i, RelationData::rd_att, RelationGetNumberOfAttributes, RelationGetRelid, and TupleDescAttr.

Referenced by estimate_rel_size(), get_relation_data_width(), and table_block_relation_estimate_size().

◆ get_relation_constraints()

static List * get_relation_constraints ( PlannerInfo root,
Oid  relationObjectId,
RelOptInfo rel,
bool  include_noinherit,
bool  include_notnull,
bool  include_partition 
)
static

Definition at line 1273 of file plancat.c.

1278 {
1279  List *result = NIL;
1280  Index varno = rel->relid;
1281  Relation relation;
1282  TupleConstr *constr;
1283 
1284  /*
1285  * We assume the relation has already been safely locked.
1286  */
1287  relation = table_open(relationObjectId, NoLock);
1288 
1289  constr = relation->rd_att->constr;
1290  if (constr != NULL)
1291  {
1292  int num_check = constr->num_check;
1293  int i;
1294 
1295  for (i = 0; i < num_check; i++)
1296  {
1297  Node *cexpr;
1298 
1299  /*
1300  * If this constraint hasn't been fully validated yet, we must
1301  * ignore it here. Also ignore if NO INHERIT and we weren't told
1302  * that that's safe.
1303  */
1304  if (!constr->check[i].ccvalid)
1305  continue;
1306  if (constr->check[i].ccnoinherit && !include_noinherit)
1307  continue;
1308 
1309  cexpr = stringToNode(constr->check[i].ccbin);
1310 
1311  /*
1312  * Run each expression through const-simplification and
1313  * canonicalization. This is not just an optimization, but is
1314  * necessary, because we will be comparing it to
1315  * similarly-processed qual clauses, and may fail to detect valid
1316  * matches without this. This must match the processing done to
1317  * qual clauses in preprocess_expression()! (We can skip the
1318  * stuff involving subqueries, however, since we don't allow any
1319  * in check constraints.)
1320  */
1321  cexpr = eval_const_expressions(root, cexpr);
1322 
1323  cexpr = (Node *) canonicalize_qual((Expr *) cexpr, true);
1324 
1325  /* Fix Vars to have the desired varno */
1326  if (varno != 1)
1327  ChangeVarNodes(cexpr, 1, varno, 0);
1328 
1329  /*
1330  * Finally, convert to implicit-AND format (that is, a List) and
1331  * append the resulting item(s) to our output list.
1332  */
1333  result = list_concat(result,
1334  make_ands_implicit((Expr *) cexpr));
1335  }
1336 
1337  /* Add NOT NULL constraints in expression form, if requested */
1338  if (include_notnull && constr->has_not_null)
1339  {
1340  int natts = relation->rd_att->natts;
1341 
1342  for (i = 1; i <= natts; i++)
1343  {
1344  Form_pg_attribute att = TupleDescAttr(relation->rd_att, i - 1);
1345 
1346  if (att->attnotnull && !att->attisdropped)
1347  {
1348  NullTest *ntest = makeNode(NullTest);
1349 
1350  ntest->arg = (Expr *) makeVar(varno,
1351  i,
1352  att->atttypid,
1353  att->atttypmod,
1354  att->attcollation,
1355  0);
1356  ntest->nulltesttype = IS_NOT_NULL;
1357 
1358  /*
1359  * argisrow=false is correct even for a composite column,
1360  * because attnotnull does not represent a SQL-spec IS NOT
1361  * NULL test in such a case, just IS DISTINCT FROM NULL.
1362  */
1363  ntest->argisrow = false;
1364  ntest->location = -1;
1365  result = lappend(result, ntest);
1366  }
1367  }
1368  }
1369  }
1370 
1371  /*
1372  * Add partitioning constraints, if requested.
1373  */
1374  if (include_partition && relation->rd_rel->relispartition)
1375  {
1376  /* make sure rel->partition_qual is set */
1377  set_baserel_partition_constraint(relation, rel);
1378  result = list_concat(result, rel->partition_qual);
1379  }
1380 
1381  table_close(relation, NoLock);
1382 
1383  return result;
1384 }
Node * eval_const_expressions(PlannerInfo *root, Node *node)
Definition: clauses.c:2254
List * list_concat(List *list1, const List *list2)
Definition: list.c:561
List * make_ands_implicit(Expr *clause)
Definition: makefuncs.c:737
#define makeNode(_type_)
Definition: nodes.h:155
static void set_baserel_partition_constraint(Relation relation, RelOptInfo *rel)
Definition: plancat.c:2576
Expr * canonicalize_qual(Expr *qual, bool is_check)
Definition: prepqual.c:293
@ IS_NOT_NULL
Definition: primnodes.h:1952
void ChangeVarNodes(Node *node, int rt_index, int new_index, int sublevels_up)
Definition: rewriteManip.c:674
bool ccnoinherit
Definition: tupdesc.h:33
bool ccvalid
Definition: tupdesc.h:32
char * ccbin
Definition: tupdesc.h:31
NullTestType nulltesttype
Definition: primnodes.h:1959
ParseLoc location
Definition: primnodes.h:1962
Expr * arg
Definition: primnodes.h:1958
List * partition_qual
Definition: pathnodes.h:1027
bool has_not_null
Definition: tupdesc.h:44
ConstrCheck * check
Definition: tupdesc.h:40
uint16 num_check
Definition: tupdesc.h:43

References NullTest::arg, canonicalize_qual(), ConstrCheck::ccbin, ConstrCheck::ccnoinherit, ConstrCheck::ccvalid, ChangeVarNodes(), TupleConstr::check, TupleDescData::constr, eval_const_expressions(), TupleConstr::has_not_null, i, IS_NOT_NULL, lappend(), list_concat(), NullTest::location, make_ands_implicit(), makeNode, makeVar(), TupleDescData::natts, NIL, NoLock, NullTest::nulltesttype, TupleConstr::num_check, RelOptInfo::partition_qual, RelationData::rd_att, RelationData::rd_rel, RelOptInfo::relid, root, set_baserel_partition_constraint(), stringToNode(), table_close(), table_open(), and TupleDescAttr.

Referenced by relation_excluded_by_constraints().

◆ get_relation_data_width()

int32 get_relation_data_width ( Oid  relid,
int32 attr_widths 
)

Definition at line 1233 of file plancat.c.

1234 {
1235  int32 result;
1236  Relation relation;
1237 
1238  /* As above, assume relation is already locked */
1239  relation = table_open(relid, NoLock);
1240 
1241  result = get_rel_data_width(relation, attr_widths);
1242 
1243  table_close(relation, NoLock);
1244 
1245  return result;
1246 }

References get_rel_data_width(), NoLock, table_close(), and table_open().

Referenced by plan_cluster_use_sort(), and set_rel_width().

◆ get_relation_foreign_keys()

static void get_relation_foreign_keys ( PlannerInfo root,
RelOptInfo rel,
Relation  relation,
bool  inhparent 
)
static

Definition at line 589 of file plancat.c.

591 {
592  List *rtable = root->parse->rtable;
593  List *cachedfkeys;
594  ListCell *lc;
595 
596  /*
597  * If it's not a baserel, we don't care about its FKs. Also, if the query
598  * references only a single relation, we can skip the lookup since no FKs
599  * could satisfy the requirements below.
600  */
601  if (rel->reloptkind != RELOPT_BASEREL ||
602  list_length(rtable) < 2)
603  return;
604 
605  /*
606  * If it's the parent of an inheritance tree, ignore its FKs. We could
607  * make useful FK-based deductions if we found that all members of the
608  * inheritance tree have equivalent FK constraints, but detecting that
609  * would require code that hasn't been written.
610  */
611  if (inhparent)
612  return;
613 
614  /*
615  * Extract data about relation's FKs from the relcache. Note that this
616  * list belongs to the relcache and might disappear in a cache flush, so
617  * we must not do any further catalog access within this function.
618  */
619  cachedfkeys = RelationGetFKeyList(relation);
620 
621  /*
622  * Figure out which FKs are of interest for this query, and create
623  * ForeignKeyOptInfos for them. We want only FKs that reference some
624  * other RTE of the current query. In queries containing self-joins,
625  * there might be more than one other RTE for a referenced table, and we
626  * should make a ForeignKeyOptInfo for each occurrence.
627  *
628  * Ideally, we would ignore RTEs that correspond to non-baserels, but it's
629  * too hard to identify those here, so we might end up making some useless
630  * ForeignKeyOptInfos. If so, match_foreign_keys_to_quals() will remove
631  * them again.
632  */
633  foreach(lc, cachedfkeys)
634  {
635  ForeignKeyCacheInfo *cachedfk = (ForeignKeyCacheInfo *) lfirst(lc);
636  Index rti;
637  ListCell *lc2;
638 
639  /* conrelid should always be that of the table we're considering */
640  Assert(cachedfk->conrelid == RelationGetRelid(relation));
641 
642  /* Scan to find other RTEs matching confrelid */
643  rti = 0;
644  foreach(lc2, rtable)
645  {
646  RangeTblEntry *rte = (RangeTblEntry *) lfirst(lc2);
647  ForeignKeyOptInfo *info;
648 
649  rti++;
650  /* Ignore if not the correct table */
651  if (rte->rtekind != RTE_RELATION ||
652  rte->relid != cachedfk->confrelid)
653  continue;
654  /* Ignore if it's an inheritance parent; doesn't really match */
655  if (rte->inh)
656  continue;
657  /* Ignore self-referential FKs; we only care about joins */
658  if (rti == rel->relid)
659  continue;
660 
661  /* OK, let's make an entry */
662  info = makeNode(ForeignKeyOptInfo);
663  info->con_relid = rel->relid;
664  info->ref_relid = rti;
665  info->nkeys = cachedfk->nkeys;
666  memcpy(info->conkey, cachedfk->conkey, sizeof(info->conkey));
667  memcpy(info->confkey, cachedfk->confkey, sizeof(info->confkey));
668  memcpy(info->conpfeqop, cachedfk->conpfeqop, sizeof(info->conpfeqop));
669  /* zero out fields to be filled by match_foreign_keys_to_quals */
670  info->nmatched_ec = 0;
671  info->nconst_ec = 0;
672  info->nmatched_rcols = 0;
673  info->nmatched_ri = 0;
674  memset(info->eclass, 0, sizeof(info->eclass));
675  memset(info->fk_eclass_member, 0, sizeof(info->fk_eclass_member));
676  memset(info->rinfos, 0, sizeof(info->rinfos));
677 
678  root->fkey_list = lappend(root->fkey_list, info);
679  }
680  }
681 }
@ RELOPT_BASEREL
Definition: pathnodes.h:827
static int list_length(const List *l)
Definition: pg_list.h:152
List * RelationGetFKeyList(Relation relation)
Definition: relcache.c:4695
struct EquivalenceClass * eclass[INDEX_MAX_KEYS]
Definition: pathnodes.h:1259
List * rinfos[INDEX_MAX_KEYS]
Definition: pathnodes.h:1263
struct EquivalenceMember * fk_eclass_member[INDEX_MAX_KEYS]
Definition: pathnodes.h:1261
RelOptKind reloptkind
Definition: pathnodes.h:865

References Assert, ForeignKeyOptInfo::con_relid, ForeignKeyCacheInfo::confrelid, ForeignKeyCacheInfo::conrelid, ForeignKeyOptInfo::eclass, ForeignKeyOptInfo::fk_eclass_member, RangeTblEntry::inh, lappend(), lfirst, list_length(), makeNode, ForeignKeyOptInfo::nconst_ec, ForeignKeyOptInfo::nkeys, ForeignKeyCacheInfo::nkeys, ForeignKeyOptInfo::nmatched_ec, ForeignKeyOptInfo::nmatched_rcols, ForeignKeyOptInfo::nmatched_ri, ForeignKeyOptInfo::ref_relid, RelationGetFKeyList(), RelationGetRelid, RangeTblEntry::relid, RelOptInfo::relid, RELOPT_BASEREL, RelOptInfo::reloptkind, ForeignKeyOptInfo::rinfos, root, RTE_RELATION, and RangeTblEntry::rtekind.

Referenced by get_relation_info().

◆ get_relation_info()

void get_relation_info ( PlannerInfo root,
Oid  relationObjectId,
bool  inhparent,
RelOptInfo rel 
)

Definition at line 116 of file plancat.c.

118 {
119  Index varno = rel->relid;
120  Relation relation;
121  bool hasindex;
122  List *indexinfos = NIL;
123 
124  /*
125  * We need not lock the relation since it was already locked, either by
126  * the rewriter or when expand_inherited_rtentry() added it to the query's
127  * rangetable.
128  */
129  relation = table_open(relationObjectId, NoLock);
130 
131  /*
132  * Relations without a table AM can be used in a query only if they are of
133  * special-cased relkinds. This check prevents us from crashing later if,
134  * for example, a view's ON SELECT rule has gone missing. Note that
135  * table_open() already rejected indexes and composite types; spell the
136  * error the same way it does.
137  */
138  if (!relation->rd_tableam)
139  {
140  if (!(relation->rd_rel->relkind == RELKIND_FOREIGN_TABLE ||
141  relation->rd_rel->relkind == RELKIND_PARTITIONED_TABLE))
142  ereport(ERROR,
143  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
144  errmsg("cannot open relation \"%s\"",
145  RelationGetRelationName(relation)),
146  errdetail_relkind_not_supported(relation->rd_rel->relkind)));
147  }
148 
149  /* Temporary and unlogged relations are inaccessible during recovery. */
150  if (!RelationIsPermanent(relation) && RecoveryInProgress())
151  ereport(ERROR,
152  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
153  errmsg("cannot access temporary or unlogged relations during recovery")));
154 
156  rel->max_attr = RelationGetNumberOfAttributes(relation);
157  rel->reltablespace = RelationGetForm(relation)->reltablespace;
158 
159  Assert(rel->max_attr >= rel->min_attr);
160  rel->attr_needed = (Relids *)
161  palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(Relids));
162  rel->attr_widths = (int32 *)
163  palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(int32));
164 
165  /*
166  * Record which columns are defined as NOT NULL. We leave this
167  * unpopulated for non-partitioned inheritance parent relations as it's
168  * ambiguous as to what it means. Some child tables may have a NOT NULL
169  * constraint for a column while others may not. We could work harder and
170  * build a unioned set of all child relations notnullattnums, but there's
171  * currently no need. The RelOptInfo corresponding to the !inh
172  * RangeTblEntry does get populated.
173  */
174  if (!inhparent || relation->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
175  {
176  for (int i = 0; i < relation->rd_att->natts; i++)
177  {
178  Form_pg_attribute attr = TupleDescAttr(relation->rd_att, i);
179 
180  if (attr->attnotnull)
181  {
183  attr->attnum);
184 
185  /*
186  * Per RemoveAttributeById(), dropped columns will have their
187  * attnotnull unset, so we needn't check for dropped columns
188  * in the above condition.
189  */
190  Assert(!attr->attisdropped);
191  }
192  }
193  }
194 
195  /*
196  * Estimate relation size --- unless it's an inheritance parent, in which
197  * case the size we want is not the rel's own size but the size of its
198  * inheritance tree. That will be computed in set_append_rel_size().
199  */
200  if (!inhparent)
201  estimate_rel_size(relation, rel->attr_widths - rel->min_attr,
202  &rel->pages, &rel->tuples, &rel->allvisfrac);
203 
204  /* Retrieve the parallel_workers reloption, or -1 if not set. */
206 
207  /*
208  * Make list of indexes. Ignore indexes on system catalogs if told to.
209  * Don't bother with indexes from traditional inheritance parents. For
210  * partitioned tables, we need a list of at least unique indexes as these
211  * serve as unique proofs for certain planner optimizations. However,
212  * let's not discriminate here and just record all partitioned indexes
213  * whether they're unique indexes or not.
214  */
215  if ((inhparent && relation->rd_rel->relkind != RELKIND_PARTITIONED_TABLE)
216  || (IgnoreSystemIndexes && IsSystemRelation(relation)))
217  hasindex = false;
218  else
219  hasindex = relation->rd_rel->relhasindex;
220 
221  if (hasindex)
222  {
223  List *indexoidlist;
224  LOCKMODE lmode;
225  ListCell *l;
226 
227  indexoidlist = RelationGetIndexList(relation);
228 
229  /*
230  * For each index, we get the same type of lock that the executor will
231  * need, and do not release it. This saves a couple of trips to the
232  * shared lock manager while not creating any real loss of
233  * concurrency, because no schema changes could be happening on the
234  * index while we hold lock on the parent rel, and no lock type used
235  * for queries blocks any other kind of index operation.
236  */
237  lmode = root->simple_rte_array[varno]->rellockmode;
238 
239  foreach(l, indexoidlist)
240  {
241  Oid indexoid = lfirst_oid(l);
242  Relation indexRelation;
244  IndexAmRoutine *amroutine = NULL;
245  IndexOptInfo *info;
246  int ncolumns,
247  nkeycolumns;
248  int i;
249 
250  /*
251  * Extract info from the relation descriptor for the index.
252  */
253  indexRelation = index_open(indexoid, lmode);
254  index = indexRelation->rd_index;
255 
256  /*
257  * Ignore invalid indexes, since they can't safely be used for
258  * queries. Note that this is OK because the data structure we
259  * are constructing is only used by the planner --- the executor
260  * still needs to insert into "invalid" indexes, if they're marked
261  * indisready.
262  */
263  if (!index->indisvalid)
264  {
265  index_close(indexRelation, NoLock);
266  continue;
267  }
268 
269  /*
270  * If the index is valid, but cannot yet be used, ignore it; but
271  * mark the plan we are generating as transient. See
272  * src/backend/access/heap/README.HOT for discussion.
273  */
274  if (index->indcheckxmin &&
277  {
278  root->glob->transientPlan = true;
279  index_close(indexRelation, NoLock);
280  continue;
281  }
282 
283  info = makeNode(IndexOptInfo);
284 
285  info->indexoid = index->indexrelid;
286  info->reltablespace =
287  RelationGetForm(indexRelation)->reltablespace;
288  info->rel = rel;
289  info->ncolumns = ncolumns = index->indnatts;
290  info->nkeycolumns = nkeycolumns = index->indnkeyatts;
291 
292  info->indexkeys = (int *) palloc(sizeof(int) * ncolumns);
293  info->indexcollations = (Oid *) palloc(sizeof(Oid) * nkeycolumns);
294  info->opfamily = (Oid *) palloc(sizeof(Oid) * nkeycolumns);
295  info->opcintype = (Oid *) palloc(sizeof(Oid) * nkeycolumns);
296  info->canreturn = (bool *) palloc(sizeof(bool) * ncolumns);
297 
298  for (i = 0; i < ncolumns; i++)
299  {
300  info->indexkeys[i] = index->indkey.values[i];
301  info->canreturn[i] = index_can_return(indexRelation, i + 1);
302  }
303 
304  for (i = 0; i < nkeycolumns; i++)
305  {
306  info->opfamily[i] = indexRelation->rd_opfamily[i];
307  info->opcintype[i] = indexRelation->rd_opcintype[i];
308  info->indexcollations[i] = indexRelation->rd_indcollation[i];
309  }
310 
311  info->relam = indexRelation->rd_rel->relam;
312 
313  /*
314  * We don't have an AM for partitioned indexes, so we'll just
315  * NULLify the AM related fields for those.
316  */
317  if (indexRelation->rd_rel->relkind != RELKIND_PARTITIONED_INDEX)
318  {
319  /* We copy just the fields we need, not all of rd_indam */
320  amroutine = indexRelation->rd_indam;
321  info->amcanorderbyop = amroutine->amcanorderbyop;
322  info->amoptionalkey = amroutine->amoptionalkey;
323  info->amsearcharray = amroutine->amsearcharray;
324  info->amsearchnulls = amroutine->amsearchnulls;
325  info->amcanparallel = amroutine->amcanparallel;
326  info->amhasgettuple = (amroutine->amgettuple != NULL);
327  info->amhasgetbitmap = amroutine->amgetbitmap != NULL &&
328  relation->rd_tableam->scan_bitmap_next_block != NULL;
329  info->amcanmarkpos = (amroutine->ammarkpos != NULL &&
330  amroutine->amrestrpos != NULL);
331  info->amcostestimate = amroutine->amcostestimate;
332  Assert(info->amcostestimate != NULL);
333 
334  /* Fetch index opclass options */
335  info->opclassoptions = RelationGetIndexAttOptions(indexRelation, true);
336 
337  /*
338  * Fetch the ordering information for the index, if any.
339  */
340  if (info->relam == BTREE_AM_OID)
341  {
342  /*
343  * If it's a btree index, we can use its opfamily OIDs
344  * directly as the sort ordering opfamily OIDs.
345  */
346  Assert(amroutine->amcanorder);
347 
348  info->sortopfamily = info->opfamily;
349  info->reverse_sort = (bool *) palloc(sizeof(bool) * nkeycolumns);
350  info->nulls_first = (bool *) palloc(sizeof(bool) * nkeycolumns);
351 
352  for (i = 0; i < nkeycolumns; i++)
353  {
354  int16 opt = indexRelation->rd_indoption[i];
355 
356  info->reverse_sort[i] = (opt & INDOPTION_DESC) != 0;
357  info->nulls_first[i] = (opt & INDOPTION_NULLS_FIRST) != 0;
358  }
359  }
360  else if (amroutine->amcanorder)
361  {
362  /*
363  * Otherwise, identify the corresponding btree opfamilies
364  * by trying to map this index's "<" operators into btree.
365  * Since "<" uniquely defines the behavior of a sort
366  * order, this is a sufficient test.
367  *
368  * XXX This method is rather slow and also requires the
369  * undesirable assumption that the other index AM numbers
370  * its strategies the same as btree. It'd be better to
371  * have a way to explicitly declare the corresponding
372  * btree opfamily for each opfamily of the other index
373  * type. But given the lack of current or foreseeable
374  * amcanorder index types, it's not worth expending more
375  * effort on now.
376  */
377  info->sortopfamily = (Oid *) palloc(sizeof(Oid) * nkeycolumns);
378  info->reverse_sort = (bool *) palloc(sizeof(bool) * nkeycolumns);
379  info->nulls_first = (bool *) palloc(sizeof(bool) * nkeycolumns);
380 
381  for (i = 0; i < nkeycolumns; i++)
382  {
383  int16 opt = indexRelation->rd_indoption[i];
384  Oid ltopr;
385  Oid btopfamily;
386  Oid btopcintype;
387  int16 btstrategy;
388 
389  info->reverse_sort[i] = (opt & INDOPTION_DESC) != 0;
390  info->nulls_first[i] = (opt & INDOPTION_NULLS_FIRST) != 0;
391 
392  ltopr = get_opfamily_member(info->opfamily[i],
393  info->opcintype[i],
394  info->opcintype[i],
396  if (OidIsValid(ltopr) &&
398  &btopfamily,
399  &btopcintype,
400  &btstrategy) &&
401  btopcintype == info->opcintype[i] &&
402  btstrategy == BTLessStrategyNumber)
403  {
404  /* Successful mapping */
405  info->sortopfamily[i] = btopfamily;
406  }
407  else
408  {
409  /* Fail ... quietly treat index as unordered */
410  info->sortopfamily = NULL;
411  info->reverse_sort = NULL;
412  info->nulls_first = NULL;
413  break;
414  }
415  }
416  }
417  else
418  {
419  info->sortopfamily = NULL;
420  info->reverse_sort = NULL;
421  info->nulls_first = NULL;
422  }
423  }
424  else
425  {
426  info->amcanorderbyop = false;
427  info->amoptionalkey = false;
428  info->amsearcharray = false;
429  info->amsearchnulls = false;
430  info->amcanparallel = false;
431  info->amhasgettuple = false;
432  info->amhasgetbitmap = false;
433  info->amcanmarkpos = false;
434  info->amcostestimate = NULL;
435 
436  info->sortopfamily = NULL;
437  info->reverse_sort = NULL;
438  info->nulls_first = NULL;
439  }
440 
441  /*
442  * Fetch the index expressions and predicate, if any. We must
443  * modify the copies we obtain from the relcache to have the
444  * correct varno for the parent relation, so that they match up
445  * correctly against qual clauses.
446  */
447  info->indexprs = RelationGetIndexExpressions(indexRelation);
448  info->indpred = RelationGetIndexPredicate(indexRelation);
449  if (info->indexprs && varno != 1)
450  ChangeVarNodes((Node *) info->indexprs, 1, varno, 0);
451  if (info->indpred && varno != 1)
452  ChangeVarNodes((Node *) info->indpred, 1, varno, 0);
453 
454  /* Build targetlist using the completed indexprs data */
455  info->indextlist = build_index_tlist(root, info, relation);
456 
457  info->indrestrictinfo = NIL; /* set later, in indxpath.c */
458  info->predOK = false; /* set later, in indxpath.c */
459  info->unique = index->indisunique;
460  info->immediate = index->indimmediate;
461  info->hypothetical = false;
462 
463  /*
464  * Estimate the index size. If it's not a partial index, we lock
465  * the number-of-tuples estimate to equal the parent table; if it
466  * is partial then we have to use the same methods as we would for
467  * a table, except we can be sure that the index is not larger
468  * than the table. We must ignore partitioned indexes here as
469  * there are not physical indexes.
470  */
471  if (indexRelation->rd_rel->relkind != RELKIND_PARTITIONED_INDEX)
472  {
473  if (info->indpred == NIL)
474  {
475  info->pages = RelationGetNumberOfBlocks(indexRelation);
476  info->tuples = rel->tuples;
477  }
478  else
479  {
480  double allvisfrac; /* dummy */
481 
482  estimate_rel_size(indexRelation, NULL,
483  &info->pages, &info->tuples, &allvisfrac);
484  if (info->tuples > rel->tuples)
485  info->tuples = rel->tuples;
486  }
487 
488  /*
489  * Get tree height while we have the index open
490  */
491  if (amroutine->amgettreeheight)
492  {
493  info->tree_height = amroutine->amgettreeheight(indexRelation);
494  }
495  else
496  {
497  /* For other index types, just set it to "unknown" for now */
498  info->tree_height = -1;
499  }
500  }
501  else
502  {
503  /* Zero these out for partitioned indexes */
504  info->pages = 0;
505  info->tuples = 0.0;
506  info->tree_height = -1;
507  }
508 
509  index_close(indexRelation, NoLock);
510 
511  /*
512  * We've historically used lcons() here. It'd make more sense to
513  * use lappend(), but that causes the planner to change behavior
514  * in cases where two indexes seem equally attractive. For now,
515  * stick with lcons() --- few tables should have so many indexes
516  * that the O(N^2) behavior of lcons() is really a problem.
517  */
518  indexinfos = lcons(info, indexinfos);
519  }
520 
521  list_free(indexoidlist);
522  }
523 
524  rel->indexlist = indexinfos;
525 
526  rel->statlist = get_relation_statistics(rel, relation);
527 
528  /* Grab foreign-table info using the relcache, while we have it */
529  if (relation->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
530  {
531  /* Check if the access to foreign tables is restricted */
533  {
534  /* there must not be built-in foreign tables */
536 
537  ereport(ERROR,
538  (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
539  errmsg("access to non-system foreign table is restricted")));
540  }
541 
543  rel->fdwroutine = GetFdwRoutineForRelation(relation, true);
544  }
545  else
546  {
547  rel->serverid = InvalidOid;
548  rel->fdwroutine = NULL;
549  }
550 
551  /* Collect info about relation's foreign keys, if relevant */
552  get_relation_foreign_keys(root, rel, relation, inhparent);
553 
554  /* Collect info about functions implemented by the rel's table AM. */
555  if (relation->rd_tableam &&
556  relation->rd_tableam->scan_set_tidrange != NULL &&
557  relation->rd_tableam->scan_getnextslot_tidrange != NULL)
559 
560  /*
561  * Collect info about relation's partitioning scheme, if any. Only
562  * inheritance parents may be partitioned.
563  */
564  if (inhparent && relation->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
565  set_relation_partition_info(root, rel, relation);
566 
567  table_close(relation, NoLock);
568 
569  /*
570  * Allow a plugin to editorialize on the info we obtained from the
571  * catalogs. Actions might include altering the assumed relation size,
572  * removing an index, or adding a hypothetical index to the indexlist.
573  */
575  (*get_relation_info_hook) (root, relationObjectId, inhparent, rel);
576 }
#define unlikely(x)
Definition: c.h:314
bool IsSystemRelation(Relation relation)
Definition: catalog.c:73
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define ereport(elevel,...)
Definition: elog.h:149
FdwRoutine * GetFdwRoutineForRelation(Relation relation, bool makecopy)
Definition: foreign.c:442
Oid GetForeignServerIdByRelId(Oid relid)
Definition: foreign.c:355
#define HeapTupleHeaderGetXmin(tup)
Definition: htup_details.h:309
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:177
bool index_can_return(Relation indexRelation, int attno)
Definition: indexam.c:790
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:133
void list_free(List *list)
Definition: list.c:1546
List * lcons(void *datum, List *list)
Definition: list.c:495
int LOCKMODE
Definition: lockdefs.h:26
Oid get_opfamily_member(Oid opfamily, Oid lefttype, Oid righttype, int16 strategy)
Definition: lsyscache.c:166
bool get_ordering_op_properties(Oid opno, Oid *opfamily, Oid *opcintype, int16 *strategy)
Definition: lsyscache.c:207
bool IgnoreSystemIndexes
Definition: miscinit.c:80
Bitmapset * Relids
Definition: pathnodes.h:30
#define AMFLAG_HAS_TID_RANGE
Definition: pathnodes.h:823
int errdetail_relkind_not_supported(char relkind)
Definition: pg_class.c:24
FormData_pg_index * Form_pg_index
Definition: pg_index.h:70
#define lfirst_oid(lc)
Definition: pg_list.h:174
void estimate_rel_size(Relation rel, int32 *attr_widths, BlockNumber *pages, double *tuples, double *allvisfrac)
Definition: plancat.c:1066
static void get_relation_foreign_keys(PlannerInfo *root, RelOptInfo *rel, Relation relation, bool inhparent)
Definition: plancat.c:589
get_relation_info_hook_type get_relation_info_hook
Definition: plancat.c:60
static List * build_index_tlist(PlannerInfo *root, IndexOptInfo *index, Relation heapRelation)
Definition: plancat.c:1891
static List * get_relation_statistics(RelOptInfo *rel, Relation relation)
Definition: plancat.c:1476
static void set_relation_partition_info(PlannerInfo *root, RelOptInfo *rel, Relation relation)
Definition: plancat.c:2371
int restrict_nonsystem_relation_kind
Definition: postgres.c:108
#define InvalidOid
Definition: postgres_ext.h:36
#define RelationGetForm(relation)
Definition: rel.h:499
#define RelationGetParallelWorkers(relation, defaultpw)
Definition: rel.h:397
#define RelationGetRelationName(relation)
Definition: rel.h:539
#define RelationIsPermanent(relation)
Definition: rel.h:617
List * RelationGetIndexList(Relation relation)
Definition: relcache.c:4804
List * RelationGetIndexPredicate(Relation relation)
Definition: relcache.c:5154
bytea ** RelationGetIndexAttOptions(Relation relation, bool copy)
Definition: relcache.c:5900
List * RelationGetIndexExpressions(Relation relation)
Definition: relcache.c:5041
TransactionId TransactionXmin
Definition: snapmgr.c:98
#define BTLessStrategyNumber
Definition: stratnum.h:29
HeapTupleHeader t_data
Definition: htup.h:68
amrestrpos_function amrestrpos
Definition: amapi.h:294
amcostestimate_function amcostestimate
Definition: amapi.h:281
bool amcanorderbyop
Definition: amapi.h:233
bool amoptionalkey
Definition: amapi.h:241
amgettuple_function amgettuple
Definition: amapi.h:290
amgetbitmap_function amgetbitmap
Definition: amapi.h:291
bool amsearcharray
Definition: amapi.h:243
ammarkpos_function ammarkpos
Definition: amapi.h:293
bool amcanparallel
Definition: amapi.h:253
bool amcanorder
Definition: amapi.h:231
amgettreeheight_function amgettreeheight
Definition: amapi.h:282
bool amsearchnulls
Definition: amapi.h:245
bool amcanparallel
Definition: pathnodes.h:1207
void(* amcostestimate)(struct PlannerInfo *, struct IndexPath *, double, Cost *, Cost *, Selectivity *, double *, double *) pg_node_attr(read_write_ignore)
Definition: pathnodes.h:1212
bool amoptionalkey
Definition: pathnodes.h:1200
Oid reltablespace
Definition: pathnodes.h:1122
bool amcanmarkpos
Definition: pathnodes.h:1209
List * indrestrictinfo
Definition: pathnodes.h:1184
bool amhasgettuple
Definition: pathnodes.h:1204
bool amcanorderbyop
Definition: pathnodes.h:1199
bool hypothetical
Definition: pathnodes.h:1193
List * indpred
Definition: pathnodes.h:1174
Cardinality tuples
Definition: pathnodes.h:1132
bool amsearcharray
Definition: pathnodes.h:1201
BlockNumber pages
Definition: pathnodes.h:1130
bool amsearchnulls
Definition: pathnodes.h:1202
bool amhasgetbitmap
Definition: pathnodes.h:1206
List * indextlist
Definition: pathnodes.h:1177
bool immediate
Definition: pathnodes.h:1191
uint32 amflags
Definition: pathnodes.h:958
Bitmapset * notnullattnums
Definition: pathnodes.h:936
List * statlist
Definition: pathnodes.h:946
Cardinality tuples
Definition: pathnodes.h:949
BlockNumber pages
Definition: pathnodes.h:948
List * indexlist
Definition: pathnodes.h:944
Oid reltablespace
Definition: pathnodes.h:920
Oid serverid
Definition: pathnodes.h:964
int rel_parallel_workers
Definition: pathnodes.h:956
AttrNumber max_attr
Definition: pathnodes.h:926
double allvisfrac
Definition: pathnodes.h:950
AttrNumber min_attr
Definition: pathnodes.h:924
const struct TableAmRoutine * rd_tableam
Definition: rel.h:189
struct IndexAmRoutine * rd_indam
Definition: rel.h:206
Oid * rd_opcintype
Definition: rel.h:208
struct HeapTupleData * rd_indextuple
Definition: rel.h:194
int16 * rd_indoption
Definition: rel.h:211
Form_pg_index rd_index
Definition: rel.h:192
Oid * rd_opfamily
Definition: rel.h:207
Oid * rd_indcollation
Definition: rel.h:217
bool(* scan_getnextslot_tidrange)(TableScanDesc scan, ScanDirection direction, TupleTableSlot *slot)
Definition: tableam.h:380
void(* scan_set_tidrange)(TableScanDesc scan, ItemPointer mintid, ItemPointer maxtid)
Definition: tableam.h:372
bool(* scan_bitmap_next_block)(TableScanDesc scan, struct TBMIterateResult *tbmres)
Definition: tableam.h:813
#define RESTRICT_RELKIND_FOREIGN_TABLE
Definition: tcopprot.h:48
bool TransactionIdPrecedes(TransactionId id1, TransactionId id2)
Definition: transam.c:280
#define FirstNormalObjectId
Definition: transam.h:197
bool RecoveryInProgress(void)
Definition: xlog.c:6333

References RelOptInfo::allvisfrac, IndexOptInfo::amcanmarkpos, IndexAmRoutine::amcanorder, IndexAmRoutine::amcanorderbyop, IndexOptInfo::amcanorderbyop, IndexAmRoutine::amcanparallel, IndexOptInfo::amcanparallel, IndexAmRoutine::amcostestimate, IndexOptInfo::amcostestimate, AMFLAG_HAS_TID_RANGE, RelOptInfo::amflags, IndexAmRoutine::amgetbitmap, IndexAmRoutine::amgettreeheight, IndexAmRoutine::amgettuple, IndexOptInfo::amhasgetbitmap, IndexOptInfo::amhasgettuple, IndexAmRoutine::ammarkpos, IndexAmRoutine::amoptionalkey, IndexOptInfo::amoptionalkey, IndexAmRoutine::amrestrpos, IndexAmRoutine::amsearcharray, IndexOptInfo::amsearcharray, IndexAmRoutine::amsearchnulls, IndexOptInfo::amsearchnulls, Assert, bms_add_member(), BTLessStrategyNumber, build_index_tlist(), ChangeVarNodes(), ereport, errcode(), errdetail_relkind_not_supported(), errmsg(), ERROR, estimate_rel_size(), FirstLowInvalidHeapAttributeNumber, FirstNormalObjectId, get_opfamily_member(), get_ordering_op_properties(), get_relation_foreign_keys(), get_relation_info_hook, get_relation_statistics(), GetFdwRoutineForRelation(), GetForeignServerIdByRelId(), HeapTupleHeaderGetXmin, IndexOptInfo::hypothetical, i, IgnoreSystemIndexes, IndexOptInfo::immediate, index_can_return(), index_close(), index_open(), RelOptInfo::indexlist, IndexOptInfo::indexoid, IndexOptInfo::indextlist, IndexOptInfo::indpred, IndexOptInfo::indrestrictinfo, InvalidOid, IsSystemRelation(), lcons(), lfirst_oid, list_free(), makeNode, RelOptInfo::max_attr, RelOptInfo::min_attr, TupleDescData::natts, IndexOptInfo::ncolumns, NIL, IndexOptInfo::nkeycolumns, NoLock, RelOptInfo::notnullattnums, OidIsValid, RelOptInfo::pages, IndexOptInfo::pages, palloc(), palloc0(), IndexOptInfo::predOK, RelationData::rd_att, RelationData::rd_indam, RelationData::rd_indcollation, RelationData::rd_index, RelationData::rd_indextuple, RelationData::rd_indoption, RelationData::rd_opcintype, RelationData::rd_opfamily, RelationData::rd_rel, RelationData::rd_tableam, RecoveryInProgress(), RelOptInfo::rel_parallel_workers, IndexOptInfo::relam, RelationGetForm, RelationGetIndexAttOptions(), RelationGetIndexExpressions(), RelationGetIndexList(), RelationGetIndexPredicate(), RelationGetNumberOfAttributes, RelationGetNumberOfBlocks, RelationGetParallelWorkers, RelationGetRelationName, RelationGetRelid, RelationIsPermanent, RelOptInfo::relid, RelOptInfo::reltablespace, IndexOptInfo::reltablespace, restrict_nonsystem_relation_kind, RESTRICT_RELKIND_FOREIGN_TABLE, root, TableAmRoutine::scan_bitmap_next_block, TableAmRoutine::scan_getnextslot_tidrange, TableAmRoutine::scan_set_tidrange, RelOptInfo::serverid, set_relation_partition_info(), RelOptInfo::statlist, HeapTupleData::t_data, table_close(), table_open(), TransactionIdPrecedes(), TransactionXmin, IndexOptInfo::tree_height, TupleDescAttr, RelOptInfo::tuples, IndexOptInfo::tuples, IndexOptInfo::unique, and unlikely.

Referenced by build_simple_rel().

◆ get_relation_statistics()

static List * get_relation_statistics ( RelOptInfo rel,
Relation  relation 
)
static

Definition at line 1476 of file plancat.c.

1477 {
1478  Index varno = rel->relid;
1479  List *statoidlist;
1480  List *stainfos = NIL;
1481  ListCell *l;
1482 
1483  statoidlist = RelationGetStatExtList(relation);
1484 
1485  foreach(l, statoidlist)
1486  {
1487  Oid statOid = lfirst_oid(l);
1488  Form_pg_statistic_ext staForm;
1489  HeapTuple htup;
1490  Bitmapset *keys = NULL;
1491  List *exprs = NIL;
1492  int i;
1493 
1494  htup = SearchSysCache1(STATEXTOID, ObjectIdGetDatum(statOid));
1495  if (!HeapTupleIsValid(htup))
1496  elog(ERROR, "cache lookup failed for statistics object %u", statOid);
1497  staForm = (Form_pg_statistic_ext) GETSTRUCT(htup);
1498 
1499  /*
1500  * First, build the array of columns covered. This is ultimately
1501  * wasted if no stats within the object have actually been built, but
1502  * it doesn't seem worth troubling over that case.
1503  */
1504  for (i = 0; i < staForm->stxkeys.dim1; i++)
1505  keys = bms_add_member(keys, staForm->stxkeys.values[i]);
1506 
1507  /*
1508  * Preprocess expressions (if any). We read the expressions, run them
1509  * through eval_const_expressions, and fix the varnos.
1510  *
1511  * XXX We don't know yet if there are any data for this stats object,
1512  * with either stxdinherit value. But it's reasonable to assume there
1513  * is at least one of those, possibly both. So it's better to process
1514  * keys and expressions here.
1515  */
1516  {
1517  bool isnull;
1518  Datum datum;
1519 
1520  /* decode expression (if any) */
1521  datum = SysCacheGetAttr(STATEXTOID, htup,
1522  Anum_pg_statistic_ext_stxexprs, &isnull);
1523 
1524  if (!isnull)
1525  {
1526  char *exprsString;
1527 
1528  exprsString = TextDatumGetCString(datum);
1529  exprs = (List *) stringToNode(exprsString);
1530  pfree(exprsString);
1531 
1532  /*
1533  * Run the expressions through eval_const_expressions. This is
1534  * not just an optimization, but is necessary, because the
1535  * planner will be comparing them to similarly-processed qual
1536  * clauses, and may fail to detect valid matches without this.
1537  * We must not use canonicalize_qual, however, since these
1538  * aren't qual expressions.
1539  */
1540  exprs = (List *) eval_const_expressions(NULL, (Node *) exprs);
1541 
1542  /* May as well fix opfuncids too */
1543  fix_opfuncids((Node *) exprs);
1544 
1545  /*
1546  * Modify the copies we obtain from the relcache to have the
1547  * correct varno for the parent relation, so that they match
1548  * up correctly against qual clauses.
1549  */
1550  if (varno != 1)
1551  ChangeVarNodes((Node *) exprs, 1, varno, 0);
1552  }
1553  }
1554 
1555  /* extract statistics for possible values of stxdinherit flag */
1556 
1557  get_relation_statistics_worker(&stainfos, rel, statOid, true, keys, exprs);
1558 
1559  get_relation_statistics_worker(&stainfos, rel, statOid, false, keys, exprs);
1560 
1561  ReleaseSysCache(htup);
1562  bms_free(keys);
1563  }
1564 
1565  list_free(statoidlist);
1566 
1567  return stainfos;
1568 }
void bms_free(Bitmapset *a)
Definition: bitmapset.c:239
#define TextDatumGetCString(d)
Definition: builtins.h:98
void pfree(void *pointer)
Definition: mcxt.c:1521
void fix_opfuncids(Node *node)
Definition: nodeFuncs.c:1831
FormData_pg_statistic_ext * Form_pg_statistic_ext
static void get_relation_statistics_worker(List **stainfos, RelOptInfo *rel, Oid statOid, bool inh, Bitmapset *keys, List *exprs)
Definition: plancat.c:1393
uintptr_t Datum
Definition: postgres.h:64
List * RelationGetStatExtList(Relation relation)
Definition: relcache.c:4925
Datum SysCacheGetAttr(int cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
Definition: syscache.c:596

References bms_add_member(), bms_free(), ChangeVarNodes(), elog, ERROR, eval_const_expressions(), fix_opfuncids(), get_relation_statistics_worker(), GETSTRUCT, HeapTupleIsValid, i, lfirst_oid, list_free(), NIL, ObjectIdGetDatum(), pfree(), RelationGetStatExtList(), ReleaseSysCache(), RelOptInfo::relid, SearchSysCache1(), stringToNode(), SysCacheGetAttr(), and TextDatumGetCString.

Referenced by get_relation_info().

◆ get_relation_statistics_worker()

static void get_relation_statistics_worker ( List **  stainfos,
RelOptInfo rel,
Oid  statOid,
bool  inh,
Bitmapset keys,
List exprs 
)
static

Definition at line 1393 of file plancat.c.

1396 {
1397  Form_pg_statistic_ext_data dataForm;
1398  HeapTuple dtup;
1399 
1400  dtup = SearchSysCache2(STATEXTDATASTXOID,
1401  ObjectIdGetDatum(statOid), BoolGetDatum(inh));
1402  if (!HeapTupleIsValid(dtup))
1403  return;
1404 
1405  dataForm = (Form_pg_statistic_ext_data) GETSTRUCT(dtup);
1406 
1407  /* add one StatisticExtInfo for each kind built */
1408  if (statext_is_kind_built(dtup, STATS_EXT_NDISTINCT))
1409  {
1411 
1412  info->statOid = statOid;
1413  info->inherit = dataForm->stxdinherit;
1414  info->rel = rel;
1415  info->kind = STATS_EXT_NDISTINCT;
1416  info->keys = bms_copy(keys);
1417  info->exprs = exprs;
1418 
1419  *stainfos = lappend(*stainfos, info);
1420  }
1421 
1422  if (statext_is_kind_built(dtup, STATS_EXT_DEPENDENCIES))
1423  {
1425 
1426  info->statOid = statOid;
1427  info->inherit = dataForm->stxdinherit;
1428  info->rel = rel;
1429  info->kind = STATS_EXT_DEPENDENCIES;
1430  info->keys = bms_copy(keys);
1431  info->exprs = exprs;
1432 
1433  *stainfos = lappend(*stainfos, info);
1434  }
1435 
1436  if (statext_is_kind_built(dtup, STATS_EXT_MCV))
1437  {
1439 
1440  info->statOid = statOid;
1441  info->inherit = dataForm->stxdinherit;
1442  info->rel = rel;
1443  info->kind = STATS_EXT_MCV;
1444  info->keys = bms_copy(keys);
1445  info->exprs = exprs;
1446 
1447  *stainfos = lappend(*stainfos, info);
1448  }
1449 
1450  if (statext_is_kind_built(dtup, STATS_EXT_EXPRESSIONS))
1451  {
1453 
1454  info->statOid = statOid;
1455  info->inherit = dataForm->stxdinherit;
1456  info->rel = rel;
1457  info->kind = STATS_EXT_EXPRESSIONS;
1458  info->keys = bms_copy(keys);
1459  info->exprs = exprs;
1460 
1461  *stainfos = lappend(*stainfos, info);
1462  }
1463 
1464  ReleaseSysCache(dtup);
1465 }
Bitmapset * bms_copy(const Bitmapset *a)
Definition: bitmapset.c:122
bool statext_is_kind_built(HeapTuple htup, char type)
FormData_pg_statistic_ext_data * Form_pg_statistic_ext_data
static Datum BoolGetDatum(bool X)
Definition: postgres.h:102
Bitmapset * keys
Definition: pathnodes.h:1292
HeapTuple SearchSysCache2(int cacheId, Datum key1, Datum key2)
Definition: syscache.c:232

References bms_copy(), BoolGetDatum(), StatisticExtInfo::exprs, GETSTRUCT, HeapTupleIsValid, StatisticExtInfo::inherit, StatisticExtInfo::keys, StatisticExtInfo::kind, lappend(), makeNode, ObjectIdGetDatum(), ReleaseSysCache(), SearchSysCache2(), statext_is_kind_built(), and StatisticExtInfo::statOid.

Referenced by get_relation_statistics().

◆ has_row_triggers()

bool has_row_triggers ( PlannerInfo root,
Index  rti,
CmdType  event 
)

Definition at line 2246 of file plancat.c.

2247 {
2248  RangeTblEntry *rte = planner_rt_fetch(rti, root);
2249  Relation relation;
2250  TriggerDesc *trigDesc;
2251  bool result = false;
2252 
2253  /* Assume we already have adequate lock */
2254  relation = table_open(rte->relid, NoLock);
2255 
2256  trigDesc = relation->trigdesc;
2257  switch (event)
2258  {
2259  case CMD_INSERT:
2260  if (trigDesc &&
2261  (trigDesc->trig_insert_after_row ||
2262  trigDesc->trig_insert_before_row))
2263  result = true;
2264  break;
2265  case CMD_UPDATE:
2266  if (trigDesc &&
2267  (trigDesc->trig_update_after_row ||
2268  trigDesc->trig_update_before_row))
2269  result = true;
2270  break;
2271  case CMD_DELETE:
2272  if (trigDesc &&
2273  (trigDesc->trig_delete_after_row ||
2274  trigDesc->trig_delete_before_row))
2275  result = true;
2276  break;
2277  /* There is no separate event for MERGE, only INSERT/UPDATE/DELETE */
2278  case CMD_MERGE:
2279  result = false;
2280  break;
2281  default:
2282  elog(ERROR, "unrecognized CmdType: %d", (int) event);
2283  break;
2284  }
2285 
2286  table_close(relation, NoLock);
2287  return result;
2288 }
@ CMD_MERGE
Definition: nodes.h:269
@ CMD_INSERT
Definition: nodes.h:267
@ CMD_DELETE
Definition: nodes.h:268
@ CMD_UPDATE
Definition: nodes.h:266
TriggerDesc * trigdesc
Definition: rel.h:117
bool trig_delete_before_row
Definition: reltrigger.h:66
bool trig_update_after_row
Definition: reltrigger.h:62
bool trig_insert_after_row
Definition: reltrigger.h:57
bool trig_update_before_row
Definition: reltrigger.h:61
bool trig_delete_after_row
Definition: reltrigger.h:67
bool trig_insert_before_row
Definition: reltrigger.h:56

References CMD_DELETE, CMD_INSERT, CMD_MERGE, CMD_UPDATE, elog, ERROR, NoLock, planner_rt_fetch, RangeTblEntry::relid, root, table_close(), table_open(), TriggerDesc::trig_delete_after_row, TriggerDesc::trig_delete_before_row, TriggerDesc::trig_insert_after_row, TriggerDesc::trig_insert_before_row, TriggerDesc::trig_update_after_row, TriggerDesc::trig_update_before_row, and RelationData::trigdesc.

Referenced by make_modifytable().

◆ has_stored_generated_columns()

bool has_stored_generated_columns ( PlannerInfo root,
Index  rti 
)

Definition at line 2296 of file plancat.c.

2297 {
2298  RangeTblEntry *rte = planner_rt_fetch(rti, root);
2299  Relation relation;
2300  TupleDesc tupdesc;
2301  bool result = false;
2302 
2303  /* Assume we already have adequate lock */
2304  relation = table_open(rte->relid, NoLock);
2305 
2306  tupdesc = RelationGetDescr(relation);
2307  result = tupdesc->constr && tupdesc->constr->has_generated_stored;
2308 
2309  table_close(relation, NoLock);
2310 
2311  return result;
2312 }

References TupleDescData::constr, TupleConstr::has_generated_stored, NoLock, planner_rt_fetch, RelationGetDescr, RangeTblEntry::relid, root, table_close(), and table_open().

Referenced by make_modifytable().

◆ has_unique_index()

bool has_unique_index ( RelOptInfo rel,
AttrNumber  attno 
)

Definition at line 2214 of file plancat.c.

2215 {
2216  ListCell *ilist;
2217 
2218  foreach(ilist, rel->indexlist)
2219  {
2220  IndexOptInfo *index = (IndexOptInfo *) lfirst(ilist);
2221 
2222  /*
2223  * Note: ignore partial indexes, since they don't allow us to conclude
2224  * that all attr values are distinct, *unless* they are marked predOK
2225  * which means we know the index's predicate is satisfied by the
2226  * query. We don't take any interest in expressional indexes either.
2227  * Also, a multicolumn unique index doesn't allow us to conclude that
2228  * just the specified attr is unique.
2229  */
2230  if (index->unique &&
2231  index->nkeycolumns == 1 &&
2232  index->indexkeys[0] == attno &&
2233  (index->indpred == NIL || index->predOK))
2234  return true;
2235  }
2236  return false;
2237 }

References RelOptInfo::indexlist, lfirst, and NIL.

Referenced by examine_variable().

◆ infer_arbiter_indexes()

List* infer_arbiter_indexes ( PlannerInfo root)

Definition at line 704 of file plancat.c.

705 {
706  OnConflictExpr *onconflict = root->parse->onConflict;
707 
708  /* Iteration state */
709  Index varno;
710  RangeTblEntry *rte;
711  Relation relation;
712  Oid indexOidFromConstraint = InvalidOid;
713  List *indexList;
714  ListCell *l;
715 
716  /* Normalized inference attributes and inference expressions: */
717  Bitmapset *inferAttrs = NULL;
718  List *inferElems = NIL;
719 
720  /* Results */
721  List *results = NIL;
722 
723  /*
724  * Quickly return NIL for ON CONFLICT DO NOTHING without an inference
725  * specification or named constraint. ON CONFLICT DO UPDATE statements
726  * must always provide one or the other (but parser ought to have caught
727  * that already).
728  */
729  if (onconflict->arbiterElems == NIL &&
730  onconflict->constraint == InvalidOid)
731  return NIL;
732 
733  /*
734  * We need not lock the relation since it was already locked, either by
735  * the rewriter or when expand_inherited_rtentry() added it to the query's
736  * rangetable.
737  */
738  varno = root->parse->resultRelation;
739  rte = rt_fetch(varno, root->parse->rtable);
740 
741  relation = table_open(rte->relid, NoLock);
742 
743  /*
744  * Build normalized/BMS representation of plain indexed attributes, as
745  * well as a separate list of expression items. This simplifies matching
746  * the cataloged definition of indexes.
747  */
748  foreach(l, onconflict->arbiterElems)
749  {
750  InferenceElem *elem = (InferenceElem *) lfirst(l);
751  Var *var;
752  int attno;
753 
754  if (!IsA(elem->expr, Var))
755  {
756  /* If not a plain Var, just shove it in inferElems for now */
757  inferElems = lappend(inferElems, elem->expr);
758  continue;
759  }
760 
761  var = (Var *) elem->expr;
762  attno = var->varattno;
763 
764  if (attno == 0)
765  ereport(ERROR,
766  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
767  errmsg("whole row unique index inference specifications are not supported")));
768 
769  inferAttrs = bms_add_member(inferAttrs,
771  }
772 
773  /*
774  * Lookup named constraint's index. This is not immediately returned
775  * because some additional sanity checks are required.
776  */
777  if (onconflict->constraint != InvalidOid)
778  {
779  indexOidFromConstraint = get_constraint_index(onconflict->constraint);
780 
781  if (indexOidFromConstraint == InvalidOid)
782  ereport(ERROR,
783  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
784  errmsg("constraint in ON CONFLICT clause has no associated index")));
785  }
786 
787  /*
788  * Using that representation, iterate through the list of indexes on the
789  * target relation to try and find a match
790  */
791  indexList = RelationGetIndexList(relation);
792 
793  foreach(l, indexList)
794  {
795  Oid indexoid = lfirst_oid(l);
796  Relation idxRel;
797  Form_pg_index idxForm;
798  Bitmapset *indexedAttrs;
799  List *idxExprs;
800  List *predExprs;
801  AttrNumber natt;
802  ListCell *el;
803 
804  /*
805  * Extract info from the relation descriptor for the index. Obtain
806  * the same lock type that the executor will ultimately use.
807  *
808  * Let executor complain about !indimmediate case directly, because
809  * enforcement needs to occur there anyway when an inference clause is
810  * omitted.
811  */
812  idxRel = index_open(indexoid, rte->rellockmode);
813  idxForm = idxRel->rd_index;
814 
815  if (!idxForm->indisvalid)
816  goto next;
817 
818  /*
819  * Note that we do not perform a check against indcheckxmin (like e.g.
820  * get_relation_info()) here to eliminate candidates, because
821  * uniqueness checking only cares about the most recently committed
822  * tuple versions.
823  */
824 
825  /*
826  * Look for match on "ON constraint_name" variant, which may not be
827  * unique constraint. This can only be a constraint name.
828  */
829  if (indexOidFromConstraint == idxForm->indexrelid)
830  {
831  if (idxForm->indisexclusion && onconflict->action == ONCONFLICT_UPDATE)
832  ereport(ERROR,
833  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
834  errmsg("ON CONFLICT DO UPDATE not supported with exclusion constraints")));
835 
836  results = lappend_oid(results, idxForm->indexrelid);
837  list_free(indexList);
838  index_close(idxRel, NoLock);
839  table_close(relation, NoLock);
840  return results;
841  }
842  else if (indexOidFromConstraint != InvalidOid)
843  {
844  /* No point in further work for index in named constraint case */
845  goto next;
846  }
847 
848  /*
849  * Only considering conventional inference at this point (not named
850  * constraints), so index under consideration can be immediately
851  * skipped if it's not unique
852  */
853  if (!idxForm->indisunique)
854  goto next;
855 
856  /*
857  * So-called unique constraints with WITHOUT OVERLAPS are really
858  * exclusion constraints, so skip those too.
859  */
860  if (idxForm->indisexclusion)
861  goto next;
862 
863  /* Build BMS representation of plain (non expression) index attrs */
864  indexedAttrs = NULL;
865  for (natt = 0; natt < idxForm->indnkeyatts; natt++)
866  {
867  int attno = idxRel->rd_index->indkey.values[natt];
868 
869  if (attno != 0)
870  indexedAttrs = bms_add_member(indexedAttrs,
872  }
873 
874  /* Non-expression attributes (if any) must match */
875  if (!bms_equal(indexedAttrs, inferAttrs))
876  goto next;
877 
878  /* Expression attributes (if any) must match */
879  idxExprs = RelationGetIndexExpressions(idxRel);
880  if (idxExprs && varno != 1)
881  ChangeVarNodes((Node *) idxExprs, 1, varno, 0);
882 
883  foreach(el, onconflict->arbiterElems)
884  {
885  InferenceElem *elem = (InferenceElem *) lfirst(el);
886 
887  /*
888  * Ensure that collation/opclass aspects of inference expression
889  * element match. Even though this loop is primarily concerned
890  * with matching expressions, it is a convenient point to check
891  * this for both expressions and ordinary (non-expression)
892  * attributes appearing as inference elements.
893  */
894  if (!infer_collation_opclass_match(elem, idxRel, idxExprs))
895  goto next;
896 
897  /*
898  * Plain Vars don't factor into count of expression elements, and
899  * the question of whether or not they satisfy the index
900  * definition has already been considered (they must).
901  */
902  if (IsA(elem->expr, Var))
903  continue;
904 
905  /*
906  * Might as well avoid redundant check in the rare cases where
907  * infer_collation_opclass_match() is required to do real work.
908  * Otherwise, check that element expression appears in cataloged
909  * index definition.
910  */
911  if (elem->infercollid != InvalidOid ||
912  elem->inferopclass != InvalidOid ||
913  list_member(idxExprs, elem->expr))
914  continue;
915 
916  goto next;
917  }
918 
919  /*
920  * Now that all inference elements were matched, ensure that the
921  * expression elements from inference clause are not missing any
922  * cataloged expressions. This does the right thing when unique
923  * indexes redundantly repeat the same attribute, or if attributes
924  * redundantly appear multiple times within an inference clause.
925  */
926  if (list_difference(idxExprs, inferElems) != NIL)
927  goto next;
928 
929  /*
930  * If it's a partial index, its predicate must be implied by the ON
931  * CONFLICT's WHERE clause.
932  */
933  predExprs = RelationGetIndexPredicate(idxRel);
934  if (predExprs && varno != 1)
935  ChangeVarNodes((Node *) predExprs, 1, varno, 0);
936 
937  if (!predicate_implied_by(predExprs, (List *) onconflict->arbiterWhere, false))
938  goto next;
939 
940  results = lappend_oid(results, idxForm->indexrelid);
941 next:
942  index_close(idxRel, NoLock);
943  }
944 
945  list_free(indexList);
946  table_close(relation, NoLock);
947 
948  if (results == NIL)
949  ereport(ERROR,
950  (errcode(ERRCODE_INVALID_COLUMN_REFERENCE),
951  errmsg("there is no unique or exclusion constraint matching the ON CONFLICT specification")));
952 
953  return results;
954 }
int16 AttrNumber
Definition: attnum.h:21
bool bms_equal(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:142
static int32 next
Definition: blutils.c:222
List * lappend_oid(List *list, Oid datum)
Definition: list.c:375
bool list_member(const List *list, const void *datum)
Definition: list.c:661
List * list_difference(const List *list1, const List *list2)
Definition: list.c:1237
Oid get_constraint_index(Oid conoid)
Definition: lsyscache.c:1113
@ ONCONFLICT_UPDATE
Definition: nodes.h:420
#define rt_fetch(rangetable_index, rangetable)
Definition: parsetree.h:31
static bool infer_collation_opclass_match(InferenceElem *elem, Relation idxRel, List *idxExprs)
Definition: plancat.c:984
bool predicate_implied_by(List *predicate_list, List *clause_list, bool weak)
Definition: predtest.c:152
List * arbiterElems
Definition: primnodes.h:2327
OnConflictAction action
Definition: primnodes.h:2324
Node * arbiterWhere
Definition: primnodes.h:2329
AttrNumber varattno
Definition: primnodes.h:260

References OnConflictExpr::action, OnConflictExpr::arbiterElems, OnConflictExpr::arbiterWhere, bms_add_member(), bms_equal(), ChangeVarNodes(), OnConflictExpr::constraint, ereport, errcode(), errmsg(), ERROR, InferenceElem::expr, FirstLowInvalidHeapAttributeNumber, get_constraint_index(), if(), index_close(), index_open(), infer_collation_opclass_match(), InferenceElem::infercollid, InferenceElem::inferopclass, InvalidOid, IsA, lappend(), lappend_oid(), lfirst, lfirst_oid, list_difference(), list_free(), list_member(), next, NIL, NoLock, ONCONFLICT_UPDATE, predicate_implied_by(), RelationData::rd_index, RelationGetIndexExpressions(), RelationGetIndexList(), RelationGetIndexPredicate(), RangeTblEntry::relid, root, rt_fetch, table_close(), table_open(), and Var::varattno.

Referenced by make_modifytable().

◆ infer_collation_opclass_match()

static bool infer_collation_opclass_match ( InferenceElem elem,
Relation  idxRel,
List idxExprs 
)
static

Definition at line 984 of file plancat.c.

986 {
987  AttrNumber natt;
988  Oid inferopfamily = InvalidOid; /* OID of opclass opfamily */
989  Oid inferopcinputtype = InvalidOid; /* OID of opclass input type */
990  int nplain = 0; /* # plain attrs observed */
991 
992  /*
993  * If inference specification element lacks collation/opclass, then no
994  * need to check for exact match.
995  */
996  if (elem->infercollid == InvalidOid && elem->inferopclass == InvalidOid)
997  return true;
998 
999  /*
1000  * Lookup opfamily and input type, for matching indexes
1001  */
1002  if (elem->inferopclass)
1003  {
1004  inferopfamily = get_opclass_family(elem->inferopclass);
1005  inferopcinputtype = get_opclass_input_type(elem->inferopclass);
1006  }
1007 
1008  for (natt = 1; natt <= idxRel->rd_att->natts; natt++)
1009  {
1010  Oid opfamily = idxRel->rd_opfamily[natt - 1];
1011  Oid opcinputtype = idxRel->rd_opcintype[natt - 1];
1012  Oid collation = idxRel->rd_indcollation[natt - 1];
1013  int attno = idxRel->rd_index->indkey.values[natt - 1];
1014 
1015  if (attno != 0)
1016  nplain++;
1017 
1018  if (elem->inferopclass != InvalidOid &&
1019  (inferopfamily != opfamily || inferopcinputtype != opcinputtype))
1020  {
1021  /* Attribute needed to match opclass, but didn't */
1022  continue;
1023  }
1024 
1025  if (elem->infercollid != InvalidOid &&
1026  elem->infercollid != collation)
1027  {
1028  /* Attribute needed to match collation, but didn't */
1029  continue;
1030  }
1031 
1032  /* If one matching index att found, good enough -- return true */
1033  if (IsA(elem->expr, Var))
1034  {
1035  if (((Var *) elem->expr)->varattno == attno)
1036  return true;
1037  }
1038  else if (attno == 0)
1039  {
1040  Node *nattExpr = list_nth(idxExprs, (natt - 1) - nplain);
1041 
1042  /*
1043  * Note that unlike routines like match_index_to_operand() we
1044  * don't need to care about RelabelType. Neither the index
1045  * definition nor the inference clause should contain them.
1046  */
1047  if (equal(elem->expr, nattExpr))
1048  return true;
1049  }
1050  }
1051 
1052  return false;
1053 }
bool equal(const void *a, const void *b)
Definition: equalfuncs.c:223
Oid get_opclass_input_type(Oid opclass)
Definition: lsyscache.c:1212
Oid get_opclass_family(Oid opclass)
Definition: lsyscache.c:1190
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299

References equal(), InferenceElem::expr, get_opclass_family(), get_opclass_input_type(), InferenceElem::infercollid, InferenceElem::inferopclass, InvalidOid, IsA, list_nth(), TupleDescData::natts, RelationData::rd_att, RelationData::rd_indcollation, RelationData::rd_index, RelationData::rd_opcintype, and RelationData::rd_opfamily.

Referenced by infer_arbiter_indexes().

◆ join_selectivity()

Selectivity join_selectivity ( PlannerInfo root,
Oid  operatorid,
List args,
Oid  inputcollid,
JoinType  jointype,
SpecialJoinInfo sjinfo 
)

Definition at line 1992 of file plancat.c.

1998 {
1999  RegProcedure oprjoin = get_oprjoin(operatorid);
2000  float8 result;
2001 
2002  /*
2003  * if the oprjoin procedure is missing for whatever reason, use a
2004  * selectivity of 0.5
2005  */
2006  if (!oprjoin)
2007  return (Selectivity) 0.5;
2008 
2009  result = DatumGetFloat8(OidFunctionCall5Coll(oprjoin,
2010  inputcollid,
2012  ObjectIdGetDatum(operatorid),
2014  Int16GetDatum(jointype),
2015  PointerGetDatum(sjinfo)));
2016 
2017  if (result < 0.0 || result > 1.0)
2018  elog(ERROR, "invalid join selectivity: %f", result);
2019 
2020  return (Selectivity) result;
2021 }
double float8
Definition: c.h:621
Datum OidFunctionCall5Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4, Datum arg5)
Definition: fmgr.c:1453
RegProcedure get_oprjoin(Oid opno)
Definition: lsyscache.c:1581
static Datum Int16GetDatum(int16 X)
Definition: postgres.h:172
static float8 DatumGetFloat8(Datum X)
Definition: postgres.h:494

References generate_unaccent_rules::args, DatumGetFloat8(), elog, ERROR, get_oprjoin(), Int16GetDatum(), ObjectIdGetDatum(), OidFunctionCall5Coll(), PointerGetDatum(), and root.

Referenced by clause_selectivity_ext(), rowcomparesel(), and test_support_func().

◆ relation_excluded_by_constraints()

bool relation_excluded_by_constraints ( PlannerInfo root,
RelOptInfo rel,
RangeTblEntry rte 
)

Definition at line 1582 of file plancat.c.

1584 {
1585  bool include_noinherit;
1586  bool include_notnull;
1587  bool include_partition = false;
1588  List *safe_restrictions;
1589  List *constraint_pred;
1590  List *safe_constraints;
1591  ListCell *lc;
1592 
1593  /* As of now, constraint exclusion works only with simple relations. */
1594  Assert(IS_SIMPLE_REL(rel));
1595 
1596  /*
1597  * If there are no base restriction clauses, we have no hope of proving
1598  * anything below, so fall out quickly.
1599  */
1600  if (rel->baserestrictinfo == NIL)
1601  return false;
1602 
1603  /*
1604  * Regardless of the setting of constraint_exclusion, detect
1605  * constant-FALSE-or-NULL restriction clauses. Although const-folding
1606  * will reduce "anything AND FALSE" to just "FALSE", the baserestrictinfo
1607  * list can still have other members besides the FALSE constant, due to
1608  * qual pushdown and other mechanisms; so check them all. This doesn't
1609  * fire very often, but it seems cheap enough to be worth doing anyway.
1610  * (Without this, we'd miss some optimizations that 9.5 and earlier found
1611  * via much more roundabout methods.)
1612  */
1613  foreach(lc, rel->baserestrictinfo)
1614  {
1615  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
1616  Expr *clause = rinfo->clause;
1617 
1618  if (clause && IsA(clause, Const) &&
1619  (((Const *) clause)->constisnull ||
1620  !DatumGetBool(((Const *) clause)->constvalue)))
1621  return true;
1622  }
1623 
1624  /*
1625  * Skip further tests, depending on constraint_exclusion.
1626  */
1627  switch (constraint_exclusion)
1628  {
1630  /* In 'off' mode, never make any further tests */
1631  return false;
1632 
1634 
1635  /*
1636  * When constraint_exclusion is set to 'partition' we only handle
1637  * appendrel members. Partition pruning has already been applied,
1638  * so there is no need to consider the rel's partition constraints
1639  * here.
1640  */
1641  if (rel->reloptkind == RELOPT_OTHER_MEMBER_REL)
1642  break; /* appendrel member, so process it */
1643  return false;
1644 
1646 
1647  /*
1648  * In 'on' mode, always apply constraint exclusion. If we are
1649  * considering a baserel that is a partition (i.e., it was
1650  * directly named rather than expanded from a parent table), then
1651  * its partition constraints haven't been considered yet, so
1652  * include them in the processing here.
1653  */
1654  if (rel->reloptkind == RELOPT_BASEREL)
1655  include_partition = true;
1656  break; /* always try to exclude */
1657  }
1658 
1659  /*
1660  * Check for self-contradictory restriction clauses. We dare not make
1661  * deductions with non-immutable functions, but any immutable clauses that
1662  * are self-contradictory allow us to conclude the scan is unnecessary.
1663  *
1664  * Note: strip off RestrictInfo because predicate_refuted_by() isn't
1665  * expecting to see any in its predicate argument.
1666  */
1667  safe_restrictions = NIL;
1668  foreach(lc, rel->baserestrictinfo)
1669  {
1670  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
1671 
1672  if (!contain_mutable_functions((Node *) rinfo->clause))
1673  safe_restrictions = lappend(safe_restrictions, rinfo->clause);
1674  }
1675 
1676  /*
1677  * We can use weak refutation here, since we're comparing restriction
1678  * clauses with restriction clauses.
1679  */
1680  if (predicate_refuted_by(safe_restrictions, safe_restrictions, true))
1681  return true;
1682 
1683  /*
1684  * Only plain relations have constraints, so stop here for other rtekinds.
1685  */
1686  if (rte->rtekind != RTE_RELATION)
1687  return false;
1688 
1689  /*
1690  * If we are scanning just this table, we can use NO INHERIT constraints,
1691  * but not if we're scanning its children too. (Note that partitioned
1692  * tables should never have NO INHERIT constraints; but it's not necessary
1693  * for us to assume that here.)
1694  */
1695  include_noinherit = !rte->inh;
1696 
1697  /*
1698  * Currently, attnotnull constraints must be treated as NO INHERIT unless
1699  * this is a partitioned table. In future we might track their
1700  * inheritance status more accurately, allowing this to be refined.
1701  */
1702  include_notnull = (!rte->inh || rte->relkind == RELKIND_PARTITIONED_TABLE);
1703 
1704  /*
1705  * Fetch the appropriate set of constraint expressions.
1706  */
1707  constraint_pred = get_relation_constraints(root, rte->relid, rel,
1708  include_noinherit,
1709  include_notnull,
1710  include_partition);
1711 
1712  /*
1713  * We do not currently enforce that CHECK constraints contain only
1714  * immutable functions, so it's necessary to check here. We daren't draw
1715  * conclusions from plan-time evaluation of non-immutable functions. Since
1716  * they're ANDed, we can just ignore any mutable constraints in the list,
1717  * and reason about the rest.
1718  */
1719  safe_constraints = NIL;
1720  foreach(lc, constraint_pred)
1721  {
1722  Node *pred = (Node *) lfirst(lc);
1723 
1724  if (!contain_mutable_functions(pred))
1725  safe_constraints = lappend(safe_constraints, pred);
1726  }
1727 
1728  /*
1729  * The constraints are effectively ANDed together, so we can just try to
1730  * refute the entire collection at once. This may allow us to make proofs
1731  * that would fail if we took them individually.
1732  *
1733  * Note: we use rel->baserestrictinfo, not safe_restrictions as might seem
1734  * an obvious optimization. Some of the clauses might be OR clauses that
1735  * have volatile and nonvolatile subclauses, and it's OK to make
1736  * deductions with the nonvolatile parts.
1737  *
1738  * We need strong refutation because we have to prove that the constraints
1739  * would yield false, not just NULL.
1740  */
1741  if (predicate_refuted_by(safe_constraints, rel->baserestrictinfo, false))
1742  return true;
1743 
1744  return false;
1745 }
bool contain_mutable_functions(Node *clause)
Definition: clauses.c:370
@ CONSTRAINT_EXCLUSION_OFF
Definition: cost.h:38
@ CONSTRAINT_EXCLUSION_PARTITION
Definition: cost.h:40
@ CONSTRAINT_EXCLUSION_ON
Definition: cost.h:39
#define IS_SIMPLE_REL(rel)
Definition: pathnodes.h:839
@ RELOPT_OTHER_MEMBER_REL
Definition: pathnodes.h:829
int constraint_exclusion
Definition: plancat.c:57
static List * get_relation_constraints(PlannerInfo *root, Oid relationObjectId, RelOptInfo *rel, bool include_noinherit, bool include_notnull, bool include_partition)
Definition: plancat.c:1273
static bool DatumGetBool(Datum X)
Definition: postgres.h:90
bool predicate_refuted_by(List *predicate_list, List *clause_list, bool weak)
Definition: predtest.c:222
List * baserestrictinfo
Definition: pathnodes.h:985
Expr * clause
Definition: pathnodes.h:2574

References Assert, RelOptInfo::baserestrictinfo, RestrictInfo::clause, constraint_exclusion, CONSTRAINT_EXCLUSION_OFF, CONSTRAINT_EXCLUSION_ON, CONSTRAINT_EXCLUSION_PARTITION, contain_mutable_functions(), DatumGetBool(), get_relation_constraints(), RangeTblEntry::inh, IS_SIMPLE_REL, IsA, lappend(), lfirst, NIL, predicate_refuted_by(), RangeTblEntry::relid, RELOPT_BASEREL, RELOPT_OTHER_MEMBER_REL, RelOptInfo::reloptkind, root, RTE_RELATION, and RangeTblEntry::rtekind.

Referenced by set_append_rel_size(), and set_rel_size().

◆ restriction_selectivity()

Selectivity restriction_selectivity ( PlannerInfo root,
Oid  operatorid,
List args,
Oid  inputcollid,
int  varRelid 
)

Definition at line 1953 of file plancat.c.

1958 {
1959  RegProcedure oprrest = get_oprrest(operatorid);
1960  float8 result;
1961 
1962  /*
1963  * if the oprrest procedure is missing for whatever reason, use a
1964  * selectivity of 0.5
1965  */
1966  if (!oprrest)
1967  return (Selectivity) 0.5;
1968 
1969  result = DatumGetFloat8(OidFunctionCall4Coll(oprrest,
1970  inputcollid,
1972  ObjectIdGetDatum(operatorid),
1974  Int32GetDatum(varRelid)));
1975 
1976  if (result < 0.0 || result > 1.0)
1977  elog(ERROR, "invalid restriction selectivity: %f", result);
1978 
1979  return (Selectivity) result;
1980 }
Datum OidFunctionCall4Coll(Oid functionId, Oid collation, Datum arg1, Datum arg2, Datum arg3, Datum arg4)
Definition: fmgr.c:1442
RegProcedure get_oprrest(Oid opno)
Definition: lsyscache.c:1557
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:212

References generate_unaccent_rules::args, DatumGetFloat8(), elog, ERROR, get_oprrest(), Int32GetDatum(), ObjectIdGetDatum(), OidFunctionCall4Coll(), PointerGetDatum(), and root.

Referenced by clause_selectivity_ext(), rowcomparesel(), and test_support_func().

◆ set_baserel_partition_constraint()

static void set_baserel_partition_constraint ( Relation  relation,
RelOptInfo rel 
)
static

Definition at line 2576 of file plancat.c.

2577 {
2578  List *partconstr;
2579 
2580  if (rel->partition_qual) /* already done */
2581  return;
2582 
2583  /*
2584  * Run the partition quals through const-simplification similar to check
2585  * constraints. We skip canonicalize_qual, though, because partition
2586  * quals should be in canonical form already; also, since the qual is in
2587  * implicit-AND format, we'd have to explicitly convert it to explicit-AND
2588  * format and back again.
2589  */
2590  partconstr = RelationGetPartitionQual(relation);
2591  if (partconstr)
2592  {
2593  partconstr = (List *) expression_planner((Expr *) partconstr);
2594  if (rel->relid != 1)
2595  ChangeVarNodes((Node *) partconstr, 1, rel->relid, 0);
2596  rel->partition_qual = partconstr;
2597  }
2598 }
List * RelationGetPartitionQual(Relation rel)
Definition: partcache.c:277
Expr * expression_planner(Expr *expr)
Definition: planner.c:6688

References ChangeVarNodes(), expression_planner(), RelOptInfo::partition_qual, RelationGetPartitionQual(), and RelOptInfo::relid.

Referenced by get_relation_constraints(), and set_relation_partition_info().

◆ set_baserel_partition_key_exprs()

static void set_baserel_partition_key_exprs ( Relation  relation,
RelOptInfo rel 
)
static

Definition at line 2508 of file plancat.c.

2510 {
2511  PartitionKey partkey = RelationGetPartitionKey(relation);
2512  int partnatts;
2513  int cnt;
2514  List **partexprs;
2515  ListCell *lc;
2516  Index varno = rel->relid;
2517 
2518  Assert(IS_SIMPLE_REL(rel) && rel->relid > 0);
2519 
2520  /* A partitioned table should have a partition key. */
2521  Assert(partkey != NULL);
2522 
2523  partnatts = partkey->partnatts;
2524  partexprs = (List **) palloc(sizeof(List *) * partnatts);
2525  lc = list_head(partkey->partexprs);
2526 
2527  for (cnt = 0; cnt < partnatts; cnt++)
2528  {
2529  Expr *partexpr;
2530  AttrNumber attno = partkey->partattrs[cnt];
2531 
2532  if (attno != InvalidAttrNumber)
2533  {
2534  /* Single column partition key is stored as a Var node. */
2535  Assert(attno > 0);
2536 
2537  partexpr = (Expr *) makeVar(varno, attno,
2538  partkey->parttypid[cnt],
2539  partkey->parttypmod[cnt],
2540  partkey->parttypcoll[cnt], 0);
2541  }
2542  else
2543  {
2544  if (lc == NULL)
2545  elog(ERROR, "wrong number of partition key expressions");
2546 
2547  /* Re-stamp the expression with given varno. */
2548  partexpr = (Expr *) copyObject(lfirst(lc));
2549  ChangeVarNodes((Node *) partexpr, 1, varno, 0);
2550  lc = lnext(partkey->partexprs, lc);
2551  }
2552 
2553  /* Base relations have a single expression per key. */
2554  partexprs[cnt] = list_make1(partexpr);
2555  }
2556 
2557  rel->partexprs = partexprs;
2558 
2559  /*
2560  * A base relation does not have nullable partition key expressions, since
2561  * no outer join is involved. We still allocate an array of empty
2562  * expression lists to keep partition key expression handling code simple.
2563  * See build_joinrel_partition_info() and match_expr_to_partition_keys().
2564  */
2565  rel->nullable_partexprs = (List **) palloc0(sizeof(List *) * partnatts);
2566 }
#define InvalidAttrNumber
Definition: attnum.h:23
#define copyObject(obj)
Definition: nodes.h:224
#define list_make1(x1)
Definition: pg_list.h:212
Oid * parttypcoll
Definition: partcache.h:47
int32 * parttypmod
Definition: partcache.h:43
List * partexprs
Definition: partcache.h:31
AttrNumber * partattrs
Definition: partcache.h:29

References Assert, ChangeVarNodes(), copyObject, elog, ERROR, InvalidAttrNumber, IS_SIMPLE_REL, lfirst, list_head(), list_make1, lnext(), makeVar(), palloc(), palloc0(), PartitionKeyData::partattrs, PartitionKeyData::partexprs, PartitionKeyData::partnatts, PartitionKeyData::parttypcoll, PartitionKeyData::parttypid, PartitionKeyData::parttypmod, RelationGetPartitionKey(), and RelOptInfo::relid.

Referenced by set_relation_partition_info().

◆ set_relation_partition_info()

static void set_relation_partition_info ( PlannerInfo root,
RelOptInfo rel,
Relation  relation 
)
static

Definition at line 2371 of file plancat.c.

2373 {
2374  PartitionDesc partdesc;
2375 
2376  /*
2377  * Create the PartitionDirectory infrastructure if we didn't already.
2378  */
2379  if (root->glob->partition_directory == NULL)
2380  {
2381  root->glob->partition_directory =
2383  }
2384 
2385  partdesc = PartitionDirectoryLookup(root->glob->partition_directory,
2386  relation);
2387  rel->part_scheme = find_partition_scheme(root, relation);
2388  Assert(partdesc != NULL && rel->part_scheme != NULL);
2389  rel->boundinfo = partdesc->boundinfo;
2390  rel->nparts = partdesc->nparts;
2391  set_baserel_partition_key_exprs(relation, rel);
2392  set_baserel_partition_constraint(relation, rel);
2393 }
PartitionDirectory CreatePartitionDirectory(MemoryContext mcxt, bool omit_detached)
Definition: partdesc.c:423
PartitionDesc PartitionDirectoryLookup(PartitionDirectory pdir, Relation rel)
Definition: partdesc.c:456
static PartitionScheme find_partition_scheme(PlannerInfo *root, Relation relation)
Definition: plancat.c:2401
static void set_baserel_partition_key_exprs(Relation relation, RelOptInfo *rel)
Definition: plancat.c:2508
PartitionBoundInfo boundinfo
Definition: partdesc.h:38

References Assert, PartitionDescData::boundinfo, CreatePartitionDirectory(), CurrentMemoryContext, find_partition_scheme(), RelOptInfo::nparts, PartitionDescData::nparts, PartitionDirectoryLookup(), root, set_baserel_partition_constraint(), and set_baserel_partition_key_exprs().

Referenced by get_relation_info().

Variable Documentation

◆ constraint_exclusion

int constraint_exclusion = CONSTRAINT_EXCLUSION_PARTITION

Definition at line 57 of file plancat.c.

Referenced by relation_excluded_by_constraints().

◆ get_relation_info_hook

get_relation_info_hook_type get_relation_info_hook = NULL

Definition at line 60 of file plancat.c.

Referenced by get_relation_info().