PostgreSQL Source Code  git master
indxpath.c File Reference
#include "postgres.h"
#include <math.h>
#include "access/stratnum.h"
#include "access/sysattr.h"
#include "catalog/pg_am.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_opfamily.h"
#include "catalog/pg_type.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
#include "nodes/supportnodes.h"
#include "optimizer/cost.h"
#include "optimizer/optimizer.h"
#include "optimizer/pathnode.h"
#include "optimizer/paths.h"
#include "optimizer/prep.h"
#include "optimizer/restrictinfo.h"
#include "utils/lsyscache.h"
#include "utils/selfuncs.h"
Include dependency graph for indxpath.c:

Go to the source code of this file.

Data Structures

struct  IndexClauseSet
 
struct  PathClauseUsage
 
struct  ec_member_matches_arg
 

Macros

#define IndexCollMatchesExprColl(idxcollation, exprcollation)    ((idxcollation) == InvalidOid || (idxcollation) == (exprcollation))
 

Enumerations

enum  ScanTypeControl { ST_INDEXSCAN , ST_BITMAPSCAN , ST_ANYSCAN }
 

Functions

static void consider_index_join_clauses (PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *rclauseset, IndexClauseSet *jclauseset, IndexClauseSet *eclauseset, List **bitindexpaths)
 
static void consider_index_join_outer_rels (PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *rclauseset, IndexClauseSet *jclauseset, IndexClauseSet *eclauseset, List **bitindexpaths, List *indexjoinclauses, int considered_clauses, List **considered_relids)
 
static void get_join_index_paths (PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *rclauseset, IndexClauseSet *jclauseset, IndexClauseSet *eclauseset, List **bitindexpaths, Relids relids, List **considered_relids)
 
static bool eclass_already_used (EquivalenceClass *parent_ec, Relids oldrelids, List *indexjoinclauses)
 
static void get_index_paths (PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *clauses, List **bitindexpaths)
 
static Listbuild_index_paths (PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *clauses, bool useful_predicate, ScanTypeControl scantype, bool *skip_nonnative_saop, bool *skip_lower_saop)
 
static Listbuild_paths_for_OR (PlannerInfo *root, RelOptInfo *rel, List *clauses, List *other_clauses)
 
static Listgenerate_bitmap_or_paths (PlannerInfo *root, RelOptInfo *rel, List *clauses, List *other_clauses)
 
static Pathchoose_bitmap_and (PlannerInfo *root, RelOptInfo *rel, List *paths)
 
static int path_usage_comparator (const void *a, const void *b)
 
static Cost bitmap_scan_cost_est (PlannerInfo *root, RelOptInfo *rel, Path *ipath)
 
static Cost bitmap_and_cost_est (PlannerInfo *root, RelOptInfo *rel, List *paths)
 
static PathClauseUsageclassify_index_clause_usage (Path *path, List **clauselist)
 
static void find_indexpath_quals (Path *bitmapqual, List **quals, List **preds)
 
static int find_list_position (Node *node, List **nodelist)
 
static bool check_index_only (RelOptInfo *rel, IndexOptInfo *index)
 
static double get_loop_count (PlannerInfo *root, Index cur_relid, Relids outer_relids)
 
static double adjust_rowcount_for_semijoins (PlannerInfo *root, Index cur_relid, Index outer_relid, double rowcount)
 
static double approximate_joinrel_size (PlannerInfo *root, Relids relids)
 
static void match_restriction_clauses_to_index (PlannerInfo *root, IndexOptInfo *index, IndexClauseSet *clauseset)
 
static void match_join_clauses_to_index (PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *clauseset, List **joinorclauses)
 
static void match_eclass_clauses_to_index (PlannerInfo *root, IndexOptInfo *index, IndexClauseSet *clauseset)
 
static void match_clauses_to_index (PlannerInfo *root, List *clauses, IndexOptInfo *index, IndexClauseSet *clauseset)
 
static void match_clause_to_index (PlannerInfo *root, RestrictInfo *rinfo, IndexOptInfo *index, IndexClauseSet *clauseset)
 
static IndexClausematch_clause_to_indexcol (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
 
static bool IsBooleanOpfamily (Oid opfamily)
 
static IndexClausematch_boolean_index_clause (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
 
static IndexClausematch_opclause_to_indexcol (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
 
static IndexClausematch_funcclause_to_indexcol (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
 
static IndexClauseget_index_clause_from_support (PlannerInfo *root, RestrictInfo *rinfo, Oid funcid, int indexarg, int indexcol, IndexOptInfo *index)
 
static IndexClausematch_saopclause_to_indexcol (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
 
static IndexClausematch_rowcompare_to_indexcol (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
 
static IndexClauseexpand_indexqual_rowcompare (PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index, Oid expr_op, bool var_on_left)
 
static void match_pathkeys_to_index (IndexOptInfo *index, List *pathkeys, List **orderby_clauses_p, List **clause_columns_p)
 
static Exprmatch_clause_to_ordering_op (IndexOptInfo *index, int indexcol, Expr *clause, Oid pk_opfamily)
 
static bool ec_member_matches_indexcol (PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, EquivalenceMember *em, void *arg)
 
void create_index_paths (PlannerInfo *root, RelOptInfo *rel)
 
void check_index_predicates (PlannerInfo *root, RelOptInfo *rel)
 
bool relation_has_unique_index_for (PlannerInfo *root, RelOptInfo *rel, List *restrictlist, List *exprlist, List *oprlist)
 
bool relation_has_unique_index_ext (PlannerInfo *root, RelOptInfo *rel, List *restrictlist, List *exprlist, List *oprlist, List **extra_clauses)
 
bool indexcol_is_bool_constant_for_query (PlannerInfo *root, IndexOptInfo *index, int indexcol)
 
bool match_index_to_operand (Node *operand, int indexcol, IndexOptInfo *index)
 
bool is_pseudo_constant_for_index (PlannerInfo *root, Node *expr, IndexOptInfo *index)
 

Macro Definition Documentation

◆ IndexCollMatchesExprColl

#define IndexCollMatchesExprColl (   idxcollation,
  exprcollation 
)     ((idxcollation) == InvalidOid || (idxcollation) == (exprcollation))

Definition at line 40 of file indxpath.c.

Enumeration Type Documentation

◆ ScanTypeControl

Enumerator
ST_INDEXSCAN 
ST_BITMAPSCAN 
ST_ANYSCAN 

Definition at line 44 of file indxpath.c.

45 {
46  ST_INDEXSCAN, /* must support amgettuple */
47  ST_BITMAPSCAN, /* must support amgetbitmap */
48  ST_ANYSCAN, /* either is okay */
ScanTypeControl
Definition: indxpath.c:45
@ ST_ANYSCAN
Definition: indxpath.c:48
@ ST_BITMAPSCAN
Definition: indxpath.c:47
@ ST_INDEXSCAN
Definition: indxpath.c:46

Function Documentation

◆ adjust_rowcount_for_semijoins()

static double adjust_rowcount_for_semijoins ( PlannerInfo root,
Index  cur_relid,
Index  outer_relid,
double  rowcount 
)
static

Definition at line 1936 of file indxpath.c.

1940 {
1941  ListCell *lc;
1942 
1943  foreach(lc, root->join_info_list)
1944  {
1945  SpecialJoinInfo *sjinfo = (SpecialJoinInfo *) lfirst(lc);
1946 
1947  if (sjinfo->jointype == JOIN_SEMI &&
1948  bms_is_member(cur_relid, sjinfo->syn_lefthand) &&
1949  bms_is_member(outer_relid, sjinfo->syn_righthand))
1950  {
1951  /* Estimate number of unique-ified rows */
1952  double nraw;
1953  double nunique;
1954 
1955  nraw = approximate_joinrel_size(root, sjinfo->syn_righthand);
1956  nunique = estimate_num_groups(root,
1957  sjinfo->semi_rhs_exprs,
1958  nraw,
1959  NULL,
1960  NULL);
1961  if (rowcount > nunique)
1962  rowcount = nunique;
1963  }
1964  }
1965  return rowcount;
1966 }
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:510
static double approximate_joinrel_size(PlannerInfo *root, Relids relids)
Definition: indxpath.c:1980
@ JOIN_SEMI
Definition: nodes.h:307
#define lfirst(lc)
Definition: pg_list.h:172
tree ctl root
Definition: radixtree.h:1840
double estimate_num_groups(PlannerInfo *root, List *groupExprs, double input_rows, List **pgset, EstimationInfo *estinfo)
Definition: selfuncs.c:3416
Relids syn_lefthand
Definition: pathnodes.h:2878
List * semi_rhs_exprs
Definition: pathnodes.h:2891
JoinType jointype
Definition: pathnodes.h:2880
Relids syn_righthand
Definition: pathnodes.h:2879

References approximate_joinrel_size(), bms_is_member(), estimate_num_groups(), JOIN_SEMI, SpecialJoinInfo::jointype, lfirst, root, SpecialJoinInfo::semi_rhs_exprs, SpecialJoinInfo::syn_lefthand, and SpecialJoinInfo::syn_righthand.

Referenced by get_loop_count().

◆ approximate_joinrel_size()

static double approximate_joinrel_size ( PlannerInfo root,
Relids  relids 
)
static

Definition at line 1980 of file indxpath.c.

1981 {
1982  double rowcount = 1.0;
1983  int relid;
1984 
1985  relid = -1;
1986  while ((relid = bms_next_member(relids, relid)) >= 0)
1987  {
1988  RelOptInfo *rel;
1989 
1990  /* Paranoia: ignore bogus relid indexes */
1991  if (relid >= root->simple_rel_array_size)
1992  continue;
1993  rel = root->simple_rel_array[relid];
1994  if (rel == NULL)
1995  continue;
1996  Assert(rel->relid == relid); /* sanity check on array */
1997 
1998  /* Relation could be proven empty, if so ignore */
1999  if (IS_DUMMY_REL(rel))
2000  continue;
2001 
2002  /* Otherwise, rel's rows estimate should be valid by now */
2003  Assert(rel->rows > 0);
2004 
2005  /* Accumulate product */
2006  rowcount *= rel->rows;
2007  }
2008  return rowcount;
2009 }
int bms_next_member(const Bitmapset *a, int prevbit)
Definition: bitmapset.c:1306
Assert(fmt[strlen(fmt) - 1] !='\n')
#define IS_DUMMY_REL(r)
Definition: pathnodes.h:1931
Index relid
Definition: pathnodes.h:908
Cardinality rows
Definition: pathnodes.h:867

References Assert(), bms_next_member(), IS_DUMMY_REL, RelOptInfo::relid, root, and RelOptInfo::rows.

Referenced by adjust_rowcount_for_semijoins().

◆ bitmap_and_cost_est()

static Cost bitmap_and_cost_est ( PlannerInfo root,
RelOptInfo rel,
List paths 
)
static

Definition at line 1614 of file indxpath.c.

1615 {
1616  BitmapAndPath *apath;
1617 
1618  /*
1619  * Might as well build a real BitmapAndPath here, as the work is slightly
1620  * too complicated to be worth repeating just to save one palloc.
1621  */
1622  apath = create_bitmap_and_path(root, rel, paths);
1623 
1624  return bitmap_scan_cost_est(root, rel, (Path *) apath);
1625 }
static Cost bitmap_scan_cost_est(PlannerInfo *root, RelOptInfo *rel, Path *ipath)
Definition: indxpath.c:1580
BitmapAndPath * create_bitmap_and_path(PlannerInfo *root, RelOptInfo *rel, List *bitmapquals)
Definition: pathnode.c:1075

References bitmap_scan_cost_est(), create_bitmap_and_path(), and root.

Referenced by choose_bitmap_and().

◆ bitmap_scan_cost_est()

static Cost bitmap_scan_cost_est ( PlannerInfo root,
RelOptInfo rel,
Path ipath 
)
static

Definition at line 1580 of file indxpath.c.

1581 {
1582  BitmapHeapPath bpath;
1583 
1584  /* Set up a dummy BitmapHeapPath */
1585  bpath.path.type = T_BitmapHeapPath;
1586  bpath.path.pathtype = T_BitmapHeapScan;
1587  bpath.path.parent = rel;
1588  bpath.path.pathtarget = rel->reltarget;
1589  bpath.path.param_info = ipath->param_info;
1590  bpath.path.pathkeys = NIL;
1591  bpath.bitmapqual = ipath;
1592 
1593  /*
1594  * Check the cost of temporary path without considering parallelism.
1595  * Parallel bitmap heap path will be considered at later stage.
1596  */
1597  bpath.path.parallel_workers = 0;
1598 
1599  /* Now we can do cost_bitmap_heap_scan */
1600  cost_bitmap_heap_scan(&bpath.path, root, rel,
1601  bpath.path.param_info,
1602  ipath,
1603  get_loop_count(root, rel->relid,
1604  PATH_REQ_OUTER(ipath)));
1605 
1606  return bpath.path.total_cost;
1607 }
void cost_bitmap_heap_scan(Path *path, PlannerInfo *root, RelOptInfo *baserel, ParamPathInfo *param_info, Path *bitmapqual, double loop_count)
Definition: costsize.c:1013
static double get_loop_count(PlannerInfo *root, Index cur_relid, Relids outer_relids)
Definition: indxpath.c:1883
#define PATH_REQ_OUTER(path)
Definition: pathnodes.h:1654
#define NIL
Definition: pg_list.h:68
Path * bitmapqual
Definition: pathnodes.h:1770
List * pathkeys
Definition: pathnodes.h:1650
NodeTag pathtype
Definition: pathnodes.h:1611
int parallel_workers
Definition: pathnodes.h:1642
Cost total_cost
Definition: pathnodes.h:1647
struct PathTarget * reltarget
Definition: pathnodes.h:883

References BitmapHeapPath::bitmapqual, cost_bitmap_heap_scan(), get_loop_count(), NIL, Path::parallel_workers, BitmapHeapPath::path, PATH_REQ_OUTER, Path::pathkeys, Path::pathtype, RelOptInfo::relid, RelOptInfo::reltarget, root, and Path::total_cost.

Referenced by bitmap_and_cost_est(), and choose_bitmap_and().

◆ build_index_paths()

static List * build_index_paths ( PlannerInfo root,
RelOptInfo rel,
IndexOptInfo index,
IndexClauseSet clauses,
bool  useful_predicate,
ScanTypeControl  scantype,
bool skip_nonnative_saop,
bool skip_lower_saop 
)
static

Definition at line 835 of file indxpath.c.

841 {
842  List *result = NIL;
843  IndexPath *ipath;
844  List *index_clauses;
845  Relids outer_relids;
846  double loop_count;
847  List *orderbyclauses;
848  List *orderbyclausecols;
849  List *index_pathkeys;
850  List *useful_pathkeys;
851  bool found_lower_saop_clause;
852  bool pathkeys_possibly_useful;
853  bool index_is_ordered;
854  bool index_only_scan;
855  int indexcol;
856 
857  /*
858  * Check that index supports the desired scan type(s)
859  */
860  switch (scantype)
861  {
862  case ST_INDEXSCAN:
863  if (!index->amhasgettuple)
864  return NIL;
865  break;
866  case ST_BITMAPSCAN:
867  if (!index->amhasgetbitmap)
868  return NIL;
869  break;
870  case ST_ANYSCAN:
871  /* either or both are OK */
872  break;
873  }
874 
875  /*
876  * 1. Combine the per-column IndexClause lists into an overall list.
877  *
878  * In the resulting list, clauses are ordered by index key, so that the
879  * column numbers form a nondecreasing sequence. (This order is depended
880  * on by btree and possibly other places.) The list can be empty, if the
881  * index AM allows that.
882  *
883  * found_lower_saop_clause is set true if we accept a ScalarArrayOpExpr
884  * index clause for a non-first index column. This prevents us from
885  * assuming that the scan result is ordered. (Actually, the result is
886  * still ordered if there are equality constraints for all earlier
887  * columns, but it seems too expensive and non-modular for this code to be
888  * aware of that refinement.)
889  *
890  * We also build a Relids set showing which outer rels are required by the
891  * selected clauses. Any lateral_relids are included in that, but not
892  * otherwise accounted for.
893  */
894  index_clauses = NIL;
895  found_lower_saop_clause = false;
896  outer_relids = bms_copy(rel->lateral_relids);
897  for (indexcol = 0; indexcol < index->nkeycolumns; indexcol++)
898  {
899  ListCell *lc;
900 
901  foreach(lc, clauses->indexclauses[indexcol])
902  {
903  IndexClause *iclause = (IndexClause *) lfirst(lc);
904  RestrictInfo *rinfo = iclause->rinfo;
905 
906  /* We might need to omit ScalarArrayOpExpr clauses */
907  if (IsA(rinfo->clause, ScalarArrayOpExpr))
908  {
909  if (!index->amsearcharray)
910  {
911  if (skip_nonnative_saop)
912  {
913  /* Ignore because not supported by index */
914  *skip_nonnative_saop = true;
915  continue;
916  }
917  /* Caller had better intend this only for bitmap scan */
918  Assert(scantype == ST_BITMAPSCAN);
919  }
920  if (indexcol > 0)
921  {
922  if (skip_lower_saop)
923  {
924  /* Caller doesn't want to lose index ordering */
925  *skip_lower_saop = true;
926  continue;
927  }
928  found_lower_saop_clause = true;
929  }
930  }
931 
932  /* OK to include this clause */
933  index_clauses = lappend(index_clauses, iclause);
934  outer_relids = bms_add_members(outer_relids,
935  rinfo->clause_relids);
936  }
937 
938  /*
939  * If no clauses match the first index column, check for amoptionalkey
940  * restriction. We can't generate a scan over an index with
941  * amoptionalkey = false unless there's at least one index clause.
942  * (When working on columns after the first, this test cannot fail. It
943  * is always okay for columns after the first to not have any
944  * clauses.)
945  */
946  if (index_clauses == NIL && !index->amoptionalkey)
947  return NIL;
948  }
949 
950  /* We do not want the index's rel itself listed in outer_relids */
951  outer_relids = bms_del_member(outer_relids, rel->relid);
952 
953  /* Compute loop_count for cost estimation purposes */
954  loop_count = get_loop_count(root, rel->relid, outer_relids);
955 
956  /*
957  * 2. Compute pathkeys describing index's ordering, if any, then see how
958  * many of them are actually useful for this query. This is not relevant
959  * if we are only trying to build bitmap indexscans, nor if we have to
960  * assume the scan is unordered.
961  */
962  pathkeys_possibly_useful = (scantype != ST_BITMAPSCAN &&
963  !found_lower_saop_clause &&
964  has_useful_pathkeys(root, rel));
965  index_is_ordered = (index->sortopfamily != NULL);
966  if (index_is_ordered && pathkeys_possibly_useful)
967  {
968  index_pathkeys = build_index_pathkeys(root, index,
970  useful_pathkeys = truncate_useless_pathkeys(root, rel,
971  index_pathkeys);
972  orderbyclauses = NIL;
973  orderbyclausecols = NIL;
974  }
975  else if (index->amcanorderbyop && pathkeys_possibly_useful)
976  {
977  /*
978  * See if we can generate ordering operators for query_pathkeys or at
979  * least some prefix thereof. Matching to just a prefix of the
980  * query_pathkeys will allow an incremental sort to be considered on
981  * the index's partially sorted results.
982  */
983  match_pathkeys_to_index(index, root->query_pathkeys,
984  &orderbyclauses,
985  &orderbyclausecols);
986  if (list_length(root->query_pathkeys) == list_length(orderbyclauses))
987  useful_pathkeys = root->query_pathkeys;
988  else
989  useful_pathkeys = list_copy_head(root->query_pathkeys,
990  list_length(orderbyclauses));
991  }
992  else
993  {
994  useful_pathkeys = NIL;
995  orderbyclauses = NIL;
996  orderbyclausecols = NIL;
997  }
998 
999  /*
1000  * 3. Check if an index-only scan is possible. If we're not building
1001  * plain indexscans, this isn't relevant since bitmap scans don't support
1002  * index data retrieval anyway.
1003  */
1004  index_only_scan = (scantype != ST_BITMAPSCAN &&
1005  check_index_only(rel, index));
1006 
1007  /*
1008  * 4. Generate an indexscan path if there are relevant restriction clauses
1009  * in the current clauses, OR the index ordering is potentially useful for
1010  * later merging or final output ordering, OR the index has a useful
1011  * predicate, OR an index-only scan is possible.
1012  */
1013  if (index_clauses != NIL || useful_pathkeys != NIL || useful_predicate ||
1014  index_only_scan)
1015  {
1016  ipath = create_index_path(root, index,
1017  index_clauses,
1018  orderbyclauses,
1019  orderbyclausecols,
1020  useful_pathkeys,
1022  index_only_scan,
1023  outer_relids,
1024  loop_count,
1025  false);
1026  result = lappend(result, ipath);
1027 
1028  /*
1029  * If appropriate, consider parallel index scan. We don't allow
1030  * parallel index scan for bitmap index scans.
1031  */
1032  if (index->amcanparallel &&
1033  rel->consider_parallel && outer_relids == NULL &&
1034  scantype != ST_BITMAPSCAN)
1035  {
1036  ipath = create_index_path(root, index,
1037  index_clauses,
1038  orderbyclauses,
1039  orderbyclausecols,
1040  useful_pathkeys,
1042  index_only_scan,
1043  outer_relids,
1044  loop_count,
1045  true);
1046 
1047  /*
1048  * if, after costing the path, we find that it's not worth using
1049  * parallel workers, just free it.
1050  */
1051  if (ipath->path.parallel_workers > 0)
1052  add_partial_path(rel, (Path *) ipath);
1053  else
1054  pfree(ipath);
1055  }
1056  }
1057 
1058  /*
1059  * 5. If the index is ordered, a backwards scan might be interesting.
1060  */
1061  if (index_is_ordered && pathkeys_possibly_useful)
1062  {
1063  index_pathkeys = build_index_pathkeys(root, index,
1065  useful_pathkeys = truncate_useless_pathkeys(root, rel,
1066  index_pathkeys);
1067  if (useful_pathkeys != NIL)
1068  {
1069  ipath = create_index_path(root, index,
1070  index_clauses,
1071  NIL,
1072  NIL,
1073  useful_pathkeys,
1075  index_only_scan,
1076  outer_relids,
1077  loop_count,
1078  false);
1079  result = lappend(result, ipath);
1080 
1081  /* If appropriate, consider parallel index scan */
1082  if (index->amcanparallel &&
1083  rel->consider_parallel && outer_relids == NULL &&
1084  scantype != ST_BITMAPSCAN)
1085  {
1086  ipath = create_index_path(root, index,
1087  index_clauses,
1088  NIL,
1089  NIL,
1090  useful_pathkeys,
1092  index_only_scan,
1093  outer_relids,
1094  loop_count,
1095  true);
1096 
1097  /*
1098  * if, after costing the path, we find that it's not worth
1099  * using parallel workers, just free it.
1100  */
1101  if (ipath->path.parallel_workers > 0)
1102  add_partial_path(rel, (Path *) ipath);
1103  else
1104  pfree(ipath);
1105  }
1106  }
1107  }
1108 
1109  return result;
1110 }
Bitmapset * bms_add_members(Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:917
Bitmapset * bms_del_member(Bitmapset *a, int x)
Definition: bitmapset.c:868
Bitmapset * bms_copy(const Bitmapset *a)
Definition: bitmapset.c:122
static bool check_index_only(RelOptInfo *rel, IndexOptInfo *index)
Definition: indxpath.c:1784
static void match_pathkeys_to_index(IndexOptInfo *index, List *pathkeys, List **orderby_clauses_p, List **clause_columns_p)
Definition: indxpath.c:3074
List * lappend(List *list, void *datum)
Definition: list.c:339
List * list_copy_head(const List *oldlist, int len)
Definition: list.c:1593
void pfree(void *pointer)
Definition: mcxt.c:1508
#define IsA(nodeptr, _type_)
Definition: nodes.h:158
bool has_useful_pathkeys(PlannerInfo *root, RelOptInfo *rel)
Definition: pathkeys.c:2261
List * truncate_useless_pathkeys(PlannerInfo *root, RelOptInfo *rel, List *pathkeys)
Definition: pathkeys.c:2215
List * build_index_pathkeys(PlannerInfo *root, IndexOptInfo *index, ScanDirection scandir)
Definition: pathkeys.c:755
IndexPath * create_index_path(PlannerInfo *root, IndexOptInfo *index, List *indexclauses, List *indexorderbys, List *indexorderbycols, List *pathkeys, ScanDirection indexscandir, bool indexonly, Relids required_outer, double loop_count, bool partial_path)
Definition: pathnode.c:993
void add_partial_path(RelOptInfo *parent_rel, Path *new_path)
Definition: pathnode.c:747
static int list_length(const List *l)
Definition: pg_list.h:152
@ BackwardScanDirection
Definition: sdir.h:26
@ ForwardScanDirection
Definition: sdir.h:28
List * indexclauses[INDEX_MAX_KEYS]
Definition: indxpath.c:56
struct RestrictInfo * rinfo
Definition: pathnodes.h:1743
Path path
Definition: pathnodes.h:1694
Definition: pg_list.h:54
bool consider_parallel
Definition: pathnodes.h:877
Relids lateral_relids
Definition: pathnodes.h:903
Expr * clause
Definition: pathnodes.h:2546
Definition: type.h:95

References add_partial_path(), Assert(), BackwardScanDirection, bms_add_members(), bms_copy(), bms_del_member(), build_index_pathkeys(), check_index_only(), RestrictInfo::clause, RelOptInfo::consider_parallel, create_index_path(), ForwardScanDirection, get_loop_count(), has_useful_pathkeys(), IndexClauseSet::indexclauses, IsA, lappend(), RelOptInfo::lateral_relids, lfirst, list_copy_head(), list_length(), match_pathkeys_to_index(), NIL, Path::parallel_workers, IndexPath::path, pfree(), RelOptInfo::relid, IndexClause::rinfo, root, ST_ANYSCAN, ST_BITMAPSCAN, ST_INDEXSCAN, and truncate_useless_pathkeys().

Referenced by build_paths_for_OR(), and get_index_paths().

◆ build_paths_for_OR()

static List * build_paths_for_OR ( PlannerInfo root,
RelOptInfo rel,
List clauses,
List other_clauses 
)
static

Definition at line 1139 of file indxpath.c.

1141 {
1142  List *result = NIL;
1143  List *all_clauses = NIL; /* not computed till needed */
1144  ListCell *lc;
1145 
1146  foreach(lc, rel->indexlist)
1147  {
1149  IndexClauseSet clauseset;
1150  List *indexpaths;
1151  bool useful_predicate;
1152 
1153  /* Ignore index if it doesn't support bitmap scans */
1154  if (!index->amhasgetbitmap)
1155  continue;
1156 
1157  /*
1158  * Ignore partial indexes that do not match the query. If a partial
1159  * index is marked predOK then we know it's OK. Otherwise, we have to
1160  * test whether the added clauses are sufficient to imply the
1161  * predicate. If so, we can use the index in the current context.
1162  *
1163  * We set useful_predicate to true iff the predicate was proven using
1164  * the current set of clauses. This is needed to prevent matching a
1165  * predOK index to an arm of an OR, which would be a legal but
1166  * pointlessly inefficient plan. (A better plan will be generated by
1167  * just scanning the predOK index alone, no OR.)
1168  */
1169  useful_predicate = false;
1170  if (index->indpred != NIL)
1171  {
1172  if (index->predOK)
1173  {
1174  /* Usable, but don't set useful_predicate */
1175  }
1176  else
1177  {
1178  /* Form all_clauses if not done already */
1179  if (all_clauses == NIL)
1180  all_clauses = list_concat_copy(clauses, other_clauses);
1181 
1182  if (!predicate_implied_by(index->indpred, all_clauses, false))
1183  continue; /* can't use it at all */
1184 
1185  if (!predicate_implied_by(index->indpred, other_clauses, false))
1186  useful_predicate = true;
1187  }
1188  }
1189 
1190  /*
1191  * Identify the restriction clauses that can match the index.
1192  */
1193  MemSet(&clauseset, 0, sizeof(clauseset));
1194  match_clauses_to_index(root, clauses, index, &clauseset);
1195 
1196  /*
1197  * If no matches so far, and the index predicate isn't useful, we
1198  * don't want it.
1199  */
1200  if (!clauseset.nonempty && !useful_predicate)
1201  continue;
1202 
1203  /*
1204  * Add "other" restriction clauses to the clauseset.
1205  */
1206  match_clauses_to_index(root, other_clauses, index, &clauseset);
1207 
1208  /*
1209  * Construct paths if possible.
1210  */
1211  indexpaths = build_index_paths(root, rel,
1212  index, &clauseset,
1213  useful_predicate,
1214  ST_BITMAPSCAN,
1215  NULL,
1216  NULL);
1217  result = list_concat(result, indexpaths);
1218  }
1219 
1220  return result;
1221 }
#define MemSet(start, val, len)
Definition: c.h:1007
static List * build_index_paths(PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *clauses, bool useful_predicate, ScanTypeControl scantype, bool *skip_nonnative_saop, bool *skip_lower_saop)
Definition: indxpath.c:835
static void match_clauses_to_index(PlannerInfo *root, List *clauses, IndexOptInfo *index, IndexClauseSet *clauseset)
Definition: indxpath.c:2105
List * list_concat(List *list1, const List *list2)
Definition: list.c:561
List * list_concat_copy(const List *list1, const List *list2)
Definition: list.c:598
bool predicate_implied_by(List *predicate_list, List *clause_list, bool weak)
Definition: predtest.c:152
bool nonempty
Definition: indxpath.c:54
List * indexlist
Definition: pathnodes.h:930

References build_index_paths(), RelOptInfo::indexlist, lfirst, list_concat(), list_concat_copy(), match_clauses_to_index(), MemSet, NIL, IndexClauseSet::nonempty, predicate_implied_by(), root, and ST_BITMAPSCAN.

Referenced by generate_bitmap_or_paths().

◆ check_index_only()

static bool check_index_only ( RelOptInfo rel,
IndexOptInfo index 
)
static

Definition at line 1784 of file indxpath.c.

1785 {
1786  bool result;
1787  Bitmapset *attrs_used = NULL;
1788  Bitmapset *index_canreturn_attrs = NULL;
1789  ListCell *lc;
1790  int i;
1791 
1792  /* Index-only scans must be enabled */
1793  if (!enable_indexonlyscan)
1794  return false;
1795 
1796  /*
1797  * Check that all needed attributes of the relation are available from the
1798  * index.
1799  */
1800 
1801  /*
1802  * First, identify all the attributes needed for joins or final output.
1803  * Note: we must look at rel's targetlist, not the attr_needed data,
1804  * because attr_needed isn't computed for inheritance child rels.
1805  */
1806  pull_varattnos((Node *) rel->reltarget->exprs, rel->relid, &attrs_used);
1807 
1808  /*
1809  * Add all the attributes used by restriction clauses; but consider only
1810  * those clauses not implied by the index predicate, since ones that are
1811  * so implied don't need to be checked explicitly in the plan.
1812  *
1813  * Note: attributes used only in index quals would not be needed at
1814  * runtime either, if we are certain that the index is not lossy. However
1815  * it'd be complicated to account for that accurately, and it doesn't
1816  * matter in most cases, since we'd conclude that such attributes are
1817  * available from the index anyway.
1818  */
1819  foreach(lc, index->indrestrictinfo)
1820  {
1821  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
1822 
1823  pull_varattnos((Node *) rinfo->clause, rel->relid, &attrs_used);
1824  }
1825 
1826  /*
1827  * Construct a bitmapset of columns that the index can return back in an
1828  * index-only scan.
1829  */
1830  for (i = 0; i < index->ncolumns; i++)
1831  {
1832  int attno = index->indexkeys[i];
1833 
1834  /*
1835  * For the moment, we just ignore index expressions. It might be nice
1836  * to do something with them, later.
1837  */
1838  if (attno == 0)
1839  continue;
1840 
1841  if (index->canreturn[i])
1842  index_canreturn_attrs =
1843  bms_add_member(index_canreturn_attrs,
1845  }
1846 
1847  /* Do we have all the necessary attributes? */
1848  result = bms_is_subset(attrs_used, index_canreturn_attrs);
1849 
1850  bms_free(attrs_used);
1851  bms_free(index_canreturn_attrs);
1852 
1853  return result;
1854 }
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:412
void bms_free(Bitmapset *a)
Definition: bitmapset.c:239
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:815
bool enable_indexonlyscan
Definition: costsize.c:136
int i
Definition: isn.c:73
Definition: nodes.h:129
List * exprs
Definition: pathnodes.h:1518
#define FirstLowInvalidHeapAttributeNumber
Definition: sysattr.h:27
void pull_varattnos(Node *node, Index varno, Bitmapset **varattnos)
Definition: var.c:291

References bms_add_member(), bms_free(), bms_is_subset(), RestrictInfo::clause, enable_indexonlyscan, PathTarget::exprs, FirstLowInvalidHeapAttributeNumber, i, lfirst, pull_varattnos(), RelOptInfo::relid, and RelOptInfo::reltarget.

Referenced by build_index_paths().

◆ check_index_predicates()

void check_index_predicates ( PlannerInfo root,
RelOptInfo rel 
)

Definition at line 3298 of file indxpath.c.

3299 {
3300  List *clauselist;
3301  bool have_partial;
3302  bool is_target_rel;
3303  Relids otherrels;
3304  ListCell *lc;
3305 
3306  /* Indexes are available only on base or "other" member relations. */
3307  Assert(IS_SIMPLE_REL(rel));
3308 
3309  /*
3310  * Initialize the indrestrictinfo lists to be identical to
3311  * baserestrictinfo, and check whether there are any partial indexes. If
3312  * not, this is all we need to do.
3313  */
3314  have_partial = false;
3315  foreach(lc, rel->indexlist)
3316  {
3318 
3319  index->indrestrictinfo = rel->baserestrictinfo;
3320  if (index->indpred)
3321  have_partial = true;
3322  }
3323  if (!have_partial)
3324  return;
3325 
3326  /*
3327  * Construct a list of clauses that we can assume true for the purpose of
3328  * proving the index(es) usable. Restriction clauses for the rel are
3329  * always usable, and so are any join clauses that are "movable to" this
3330  * rel. Also, we can consider any EC-derivable join clauses (which must
3331  * be "movable to" this rel, by definition).
3332  */
3333  clauselist = list_copy(rel->baserestrictinfo);
3334 
3335  /* Scan the rel's join clauses */
3336  foreach(lc, rel->joininfo)
3337  {
3338  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
3339 
3340  /* Check if clause can be moved to this rel */
3341  if (!join_clause_is_movable_to(rinfo, rel))
3342  continue;
3343 
3344  clauselist = lappend(clauselist, rinfo);
3345  }
3346 
3347  /*
3348  * Add on any equivalence-derivable join clauses. Computing the correct
3349  * relid sets for generate_join_implied_equalities is slightly tricky
3350  * because the rel could be a child rel rather than a true baserel, and in
3351  * that case we must subtract its parents' relid(s) from all_query_rels.
3352  * Additionally, we mustn't consider clauses that are only computable
3353  * after outer joins that can null the rel.
3354  */
3355  if (rel->reloptkind == RELOPT_OTHER_MEMBER_REL)
3356  otherrels = bms_difference(root->all_query_rels,
3357  find_childrel_parents(root, rel));
3358  else
3359  otherrels = bms_difference(root->all_query_rels, rel->relids);
3360  otherrels = bms_del_members(otherrels, rel->nulling_relids);
3361 
3362  if (!bms_is_empty(otherrels))
3363  clauselist =
3364  list_concat(clauselist,
3366  bms_union(rel->relids,
3367  otherrels),
3368  otherrels,
3369  rel,
3370  NULL));
3371 
3372  /*
3373  * Normally we remove quals that are implied by a partial index's
3374  * predicate from indrestrictinfo, indicating that they need not be
3375  * checked explicitly by an indexscan plan using this index. However, if
3376  * the rel is a target relation of UPDATE/DELETE/MERGE/SELECT FOR UPDATE,
3377  * we cannot remove such quals from the plan, because they need to be in
3378  * the plan so that they will be properly rechecked by EvalPlanQual
3379  * testing. Some day we might want to remove such quals from the main
3380  * plan anyway and pass them through to EvalPlanQual via a side channel;
3381  * but for now, we just don't remove implied quals at all for target
3382  * relations.
3383  */
3384  is_target_rel = (bms_is_member(rel->relid, root->all_result_relids) ||
3385  get_plan_rowmark(root->rowMarks, rel->relid) != NULL);
3386 
3387  /*
3388  * Now try to prove each index predicate true, and compute the
3389  * indrestrictinfo lists for partial indexes. Note that we compute the
3390  * indrestrictinfo list even for non-predOK indexes; this might seem
3391  * wasteful, but we may be able to use such indexes in OR clauses, cf
3392  * generate_bitmap_or_paths().
3393  */
3394  foreach(lc, rel->indexlist)
3395  {
3397  ListCell *lcr;
3398 
3399  if (index->indpred == NIL)
3400  continue; /* ignore non-partial indexes here */
3401 
3402  if (!index->predOK) /* don't repeat work if already proven OK */
3403  index->predOK = predicate_implied_by(index->indpred, clauselist,
3404  false);
3405 
3406  /* If rel is an update target, leave indrestrictinfo as set above */
3407  if (is_target_rel)
3408  continue;
3409 
3410  /* Else compute indrestrictinfo as the non-implied quals */
3411  index->indrestrictinfo = NIL;
3412  foreach(lcr, rel->baserestrictinfo)
3413  {
3414  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lcr);
3415 
3416  /* predicate_implied_by() assumes first arg is immutable */
3417  if (contain_mutable_functions((Node *) rinfo->clause) ||
3419  index->indpred, false))
3420  index->indrestrictinfo = lappend(index->indrestrictinfo, rinfo);
3421  }
3422  }
3423 }
Bitmapset * bms_union(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:251
Bitmapset * bms_difference(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:346
Bitmapset * bms_del_members(Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:1161
#define bms_is_empty(a)
Definition: bitmapset.h:118
bool contain_mutable_functions(Node *clause)
Definition: clauses.c:370
List * generate_join_implied_equalities(PlannerInfo *root, Relids join_relids, Relids outer_relids, RelOptInfo *inner_rel, SpecialJoinInfo *sjinfo)
Definition: equivclass.c:1392
List * list_copy(const List *oldlist)
Definition: list.c:1573
#define IS_SIMPLE_REL(rel)
Definition: pathnodes.h:829
@ RELOPT_OTHER_MEMBER_REL
Definition: pathnodes.h:819
#define list_make1(x1)
Definition: pg_list.h:212
PlanRowMark * get_plan_rowmark(List *rowmarks, Index rtindex)
Definition: preptlist.c:485
Relids find_childrel_parents(PlannerInfo *root, RelOptInfo *rel)
Definition: relnode.c:1514
bool join_clause_is_movable_to(RestrictInfo *rinfo, RelOptInfo *baserel)
Definition: restrictinfo.c:584
List * baserestrictinfo
Definition: pathnodes.h:971
List * joininfo
Definition: pathnodes.h:977
Relids relids
Definition: pathnodes.h:861
RelOptKind reloptkind
Definition: pathnodes.h:855
Relids nulling_relids
Definition: pathnodes.h:924

References Assert(), RelOptInfo::baserestrictinfo, bms_del_members(), bms_difference(), bms_is_empty, bms_is_member(), bms_union(), RestrictInfo::clause, contain_mutable_functions(), find_childrel_parents(), generate_join_implied_equalities(), get_plan_rowmark(), RelOptInfo::indexlist, IS_SIMPLE_REL, join_clause_is_movable_to(), RelOptInfo::joininfo, lappend(), lfirst, list_concat(), list_copy(), list_make1, NIL, RelOptInfo::nulling_relids, predicate_implied_by(), RelOptInfo::relid, RelOptInfo::relids, RELOPT_OTHER_MEMBER_REL, RelOptInfo::reloptkind, and root.

Referenced by set_plain_rel_size(), and set_tablesample_rel_size().

◆ choose_bitmap_and()

static Path * choose_bitmap_and ( PlannerInfo root,
RelOptInfo rel,
List paths 
)
static

Definition at line 1341 of file indxpath.c.

1342 {
1343  int npaths = list_length(paths);
1344  PathClauseUsage **pathinfoarray;
1345  PathClauseUsage *pathinfo;
1346  List *clauselist;
1347  List *bestpaths = NIL;
1348  Cost bestcost = 0;
1349  int i,
1350  j;
1351  ListCell *l;
1352 
1353  Assert(npaths > 0); /* else caller error */
1354  if (npaths == 1)
1355  return (Path *) linitial(paths); /* easy case */
1356 
1357  /*
1358  * In theory we should consider every nonempty subset of the given paths.
1359  * In practice that seems like overkill, given the crude nature of the
1360  * estimates, not to mention the possible effects of higher-level AND and
1361  * OR clauses. Moreover, it's completely impractical if there are a large
1362  * number of paths, since the work would grow as O(2^N).
1363  *
1364  * As a heuristic, we first check for paths using exactly the same sets of
1365  * WHERE clauses + index predicate conditions, and reject all but the
1366  * cheapest-to-scan in any such group. This primarily gets rid of indexes
1367  * that include the interesting columns but also irrelevant columns. (In
1368  * situations where the DBA has gone overboard on creating variant
1369  * indexes, this can make for a very large reduction in the number of
1370  * paths considered further.)
1371  *
1372  * We then sort the surviving paths with the cheapest-to-scan first, and
1373  * for each path, consider using that path alone as the basis for a bitmap
1374  * scan. Then we consider bitmap AND scans formed from that path plus
1375  * each subsequent (higher-cost) path, adding on a subsequent path if it
1376  * results in a reduction in the estimated total scan cost. This means we
1377  * consider about O(N^2) rather than O(2^N) path combinations, which is
1378  * quite tolerable, especially given than N is usually reasonably small
1379  * because of the prefiltering step. The cheapest of these is returned.
1380  *
1381  * We will only consider AND combinations in which no two indexes use the
1382  * same WHERE clause. This is a bit of a kluge: it's needed because
1383  * costsize.c and clausesel.c aren't very smart about redundant clauses.
1384  * They will usually double-count the redundant clauses, producing a
1385  * too-small selectivity that makes a redundant AND step look like it
1386  * reduces the total cost. Perhaps someday that code will be smarter and
1387  * we can remove this limitation. (But note that this also defends
1388  * against flat-out duplicate input paths, which can happen because
1389  * match_join_clauses_to_index will find the same OR join clauses that
1390  * extract_restriction_or_clauses has pulled OR restriction clauses out
1391  * of.)
1392  *
1393  * For the same reason, we reject AND combinations in which an index
1394  * predicate clause duplicates another clause. Here we find it necessary
1395  * to be even stricter: we'll reject a partial index if any of its
1396  * predicate clauses are implied by the set of WHERE clauses and predicate
1397  * clauses used so far. This covers cases such as a condition "x = 42"
1398  * used with a plain index, followed by a clauseless scan of a partial
1399  * index "WHERE x >= 40 AND x < 50". The partial index has been accepted
1400  * only because "x = 42" was present, and so allowing it would partially
1401  * double-count selectivity. (We could use predicate_implied_by on
1402  * regular qual clauses too, to have a more intelligent, but much more
1403  * expensive, check for redundancy --- but in most cases simple equality
1404  * seems to suffice.)
1405  */
1406 
1407  /*
1408  * Extract clause usage info and detect any paths that use exactly the
1409  * same set of clauses; keep only the cheapest-to-scan of any such groups.
1410  * The surviving paths are put into an array for qsort'ing.
1411  */
1412  pathinfoarray = (PathClauseUsage **)
1413  palloc(npaths * sizeof(PathClauseUsage *));
1414  clauselist = NIL;
1415  npaths = 0;
1416  foreach(l, paths)
1417  {
1418  Path *ipath = (Path *) lfirst(l);
1419 
1420  pathinfo = classify_index_clause_usage(ipath, &clauselist);
1421 
1422  /* If it's unclassifiable, treat it as distinct from all others */
1423  if (pathinfo->unclassifiable)
1424  {
1425  pathinfoarray[npaths++] = pathinfo;
1426  continue;
1427  }
1428 
1429  for (i = 0; i < npaths; i++)
1430  {
1431  if (!pathinfoarray[i]->unclassifiable &&
1432  bms_equal(pathinfo->clauseids, pathinfoarray[i]->clauseids))
1433  break;
1434  }
1435  if (i < npaths)
1436  {
1437  /* duplicate clauseids, keep the cheaper one */
1438  Cost ncost;
1439  Cost ocost;
1440  Selectivity nselec;
1441  Selectivity oselec;
1442 
1443  cost_bitmap_tree_node(pathinfo->path, &ncost, &nselec);
1444  cost_bitmap_tree_node(pathinfoarray[i]->path, &ocost, &oselec);
1445  if (ncost < ocost)
1446  pathinfoarray[i] = pathinfo;
1447  }
1448  else
1449  {
1450  /* not duplicate clauseids, add to array */
1451  pathinfoarray[npaths++] = pathinfo;
1452  }
1453  }
1454 
1455  /* If only one surviving path, we're done */
1456  if (npaths == 1)
1457  return pathinfoarray[0]->path;
1458 
1459  /* Sort the surviving paths by index access cost */
1460  qsort(pathinfoarray, npaths, sizeof(PathClauseUsage *),
1462 
1463  /*
1464  * For each surviving index, consider it as an "AND group leader", and see
1465  * whether adding on any of the later indexes results in an AND path with
1466  * cheaper total cost than before. Then take the cheapest AND group.
1467  *
1468  * Note: paths that are either clauseless or unclassifiable will have
1469  * empty clauseids, so that they will not be rejected by the clauseids
1470  * filter here, nor will they cause later paths to be rejected by it.
1471  */
1472  for (i = 0; i < npaths; i++)
1473  {
1474  Cost costsofar;
1475  List *qualsofar;
1476  Bitmapset *clauseidsofar;
1477 
1478  pathinfo = pathinfoarray[i];
1479  paths = list_make1(pathinfo->path);
1480  costsofar = bitmap_scan_cost_est(root, rel, pathinfo->path);
1481  qualsofar = list_concat_copy(pathinfo->quals, pathinfo->preds);
1482  clauseidsofar = bms_copy(pathinfo->clauseids);
1483 
1484  for (j = i + 1; j < npaths; j++)
1485  {
1486  Cost newcost;
1487 
1488  pathinfo = pathinfoarray[j];
1489  /* Check for redundancy */
1490  if (bms_overlap(pathinfo->clauseids, clauseidsofar))
1491  continue; /* consider it redundant */
1492  if (pathinfo->preds)
1493  {
1494  bool redundant = false;
1495 
1496  /* we check each predicate clause separately */
1497  foreach(l, pathinfo->preds)
1498  {
1499  Node *np = (Node *) lfirst(l);
1500 
1501  if (predicate_implied_by(list_make1(np), qualsofar, false))
1502  {
1503  redundant = true;
1504  break; /* out of inner foreach loop */
1505  }
1506  }
1507  if (redundant)
1508  continue;
1509  }
1510  /* tentatively add new path to paths, so we can estimate cost */
1511  paths = lappend(paths, pathinfo->path);
1512  newcost = bitmap_and_cost_est(root, rel, paths);
1513  if (newcost < costsofar)
1514  {
1515  /* keep new path in paths, update subsidiary variables */
1516  costsofar = newcost;
1517  qualsofar = list_concat(qualsofar, pathinfo->quals);
1518  qualsofar = list_concat(qualsofar, pathinfo->preds);
1519  clauseidsofar = bms_add_members(clauseidsofar,
1520  pathinfo->clauseids);
1521  }
1522  else
1523  {
1524  /* reject new path, remove it from paths list */
1525  paths = list_truncate(paths, list_length(paths) - 1);
1526  }
1527  }
1528 
1529  /* Keep the cheapest AND-group (or singleton) */
1530  if (i == 0 || costsofar < bestcost)
1531  {
1532  bestpaths = paths;
1533  bestcost = costsofar;
1534  }
1535 
1536  /* some easy cleanup (we don't try real hard though) */
1537  list_free(qualsofar);
1538  }
1539 
1540  if (list_length(bestpaths) == 1)
1541  return (Path *) linitial(bestpaths); /* no need for AND */
1542  return (Path *) create_bitmap_and_path(root, rel, bestpaths);
1543 }
bool bms_equal(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:142
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582
void cost_bitmap_tree_node(Path *path, Cost *cost, Selectivity *selec)
Definition: costsize.c:1114
static Cost bitmap_and_cost_est(PlannerInfo *root, RelOptInfo *rel, List *paths)
Definition: indxpath.c:1614
static PathClauseUsage * classify_index_clause_usage(Path *path, List **clauselist)
Definition: indxpath.c:1643
static int path_usage_comparator(const void *a, const void *b)
Definition: indxpath.c:1547
int j
Definition: isn.c:74
List * list_truncate(List *list, int new_size)
Definition: list.c:631
void list_free(List *list)
Definition: list.c:1546
void * palloc(Size size)
Definition: mcxt.c:1304
double Cost
Definition: nodes.h:251
double Selectivity
Definition: nodes.h:250
#define linitial(l)
Definition: pg_list.h:178
#define qsort(a, b, c, d)
Definition: port.h:449
List * quals
Definition: indxpath.c:63
List * preds
Definition: indxpath.c:64
Bitmapset * clauseids
Definition: indxpath.c:65
bool unclassifiable
Definition: indxpath.c:66
Path * path
Definition: indxpath.c:62

References Assert(), bitmap_and_cost_est(), bitmap_scan_cost_est(), bms_add_members(), bms_copy(), bms_equal(), bms_overlap(), classify_index_clause_usage(), PathClauseUsage::clauseids, cost_bitmap_tree_node(), create_bitmap_and_path(), i, j, lappend(), lfirst, linitial, list_concat(), list_concat_copy(), list_free(), list_length(), list_make1, list_truncate(), NIL, palloc(), PathClauseUsage::path, path_usage_comparator(), predicate_implied_by(), PathClauseUsage::preds, qsort, PathClauseUsage::quals, root, and PathClauseUsage::unclassifiable.

Referenced by create_index_paths(), and generate_bitmap_or_paths().

◆ classify_index_clause_usage()

static PathClauseUsage * classify_index_clause_usage ( Path path,
List **  clauselist 
)
static

Definition at line 1643 of file indxpath.c.

1644 {
1645  PathClauseUsage *result;
1646  Bitmapset *clauseids;
1647  ListCell *lc;
1648 
1649  result = (PathClauseUsage *) palloc(sizeof(PathClauseUsage));
1650  result->path = path;
1651 
1652  /* Recursively find the quals and preds used by the path */
1653  result->quals = NIL;
1654  result->preds = NIL;
1655  find_indexpath_quals(path, &result->quals, &result->preds);
1656 
1657  /*
1658  * Some machine-generated queries have outlandish numbers of qual clauses.
1659  * To avoid getting into O(N^2) behavior even in this preliminary
1660  * classification step, we want to limit the number of entries we can
1661  * accumulate in *clauselist. Treat any path with more than 100 quals +
1662  * preds as unclassifiable, which will cause calling code to consider it
1663  * distinct from all other paths.
1664  */
1665  if (list_length(result->quals) + list_length(result->preds) > 100)
1666  {
1667  result->clauseids = NULL;
1668  result->unclassifiable = true;
1669  return result;
1670  }
1671 
1672  /* Build up a bitmapset representing the quals and preds */
1673  clauseids = NULL;
1674  foreach(lc, result->quals)
1675  {
1676  Node *node = (Node *) lfirst(lc);
1677 
1678  clauseids = bms_add_member(clauseids,
1679  find_list_position(node, clauselist));
1680  }
1681  foreach(lc, result->preds)
1682  {
1683  Node *node = (Node *) lfirst(lc);
1684 
1685  clauseids = bms_add_member(clauseids,
1686  find_list_position(node, clauselist));
1687  }
1688  result->clauseids = clauseids;
1689  result->unclassifiable = false;
1690 
1691  return result;
1692 }
static void find_indexpath_quals(Path *bitmapqual, List **quals, List **preds)
Definition: indxpath.c:1711
static int find_list_position(Node *node, List **nodelist)
Definition: indxpath.c:1758

References bms_add_member(), PathClauseUsage::clauseids, find_indexpath_quals(), find_list_position(), lfirst, list_length(), NIL, palloc(), PathClauseUsage::path, PathClauseUsage::preds, PathClauseUsage::quals, and PathClauseUsage::unclassifiable.

Referenced by choose_bitmap_and().

◆ consider_index_join_clauses()

static void consider_index_join_clauses ( PlannerInfo root,
RelOptInfo rel,
IndexOptInfo index,
IndexClauseSet rclauseset,
IndexClauseSet jclauseset,
IndexClauseSet eclauseset,
List **  bitindexpaths 
)
static

Definition at line 432 of file indxpath.c.

438 {
439  int considered_clauses = 0;
440  List *considered_relids = NIL;
441  int indexcol;
442 
443  /*
444  * The strategy here is to identify every potentially useful set of outer
445  * rels that can provide indexable join clauses. For each such set,
446  * select all the join clauses available from those outer rels, add on all
447  * the indexable restriction clauses, and generate plain and/or bitmap
448  * index paths for that set of clauses. This is based on the assumption
449  * that it's always better to apply a clause as an indexqual than as a
450  * filter (qpqual); which is where an available clause would end up being
451  * applied if we omit it from the indexquals.
452  *
453  * This looks expensive, but in most practical cases there won't be very
454  * many distinct sets of outer rels to consider. As a safety valve when
455  * that's not true, we use a heuristic: limit the number of outer rel sets
456  * considered to a multiple of the number of clauses considered. (We'll
457  * always consider using each individual join clause, though.)
458  *
459  * For simplicity in selecting relevant clauses, we represent each set of
460  * outer rels as a maximum set of clause_relids --- that is, the indexed
461  * relation itself is also included in the relids set. considered_relids
462  * lists all relids sets we've already tried.
463  */
464  for (indexcol = 0; indexcol < index->nkeycolumns; indexcol++)
465  {
466  /* Consider each applicable simple join clause */
467  considered_clauses += list_length(jclauseset->indexclauses[indexcol]);
469  rclauseset, jclauseset, eclauseset,
470  bitindexpaths,
471  jclauseset->indexclauses[indexcol],
472  considered_clauses,
473  &considered_relids);
474  /* Consider each applicable eclass join clause */
475  considered_clauses += list_length(eclauseset->indexclauses[indexcol]);
477  rclauseset, jclauseset, eclauseset,
478  bitindexpaths,
479  eclauseset->indexclauses[indexcol],
480  considered_clauses,
481  &considered_relids);
482  }
483 }
static void consider_index_join_outer_rels(PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *rclauseset, IndexClauseSet *jclauseset, IndexClauseSet *eclauseset, List **bitindexpaths, List *indexjoinclauses, int considered_clauses, List **considered_relids)
Definition: indxpath.c:498

References consider_index_join_outer_rels(), IndexClauseSet::indexclauses, list_length(), NIL, and root.

Referenced by create_index_paths().

◆ consider_index_join_outer_rels()

static void consider_index_join_outer_rels ( PlannerInfo root,
RelOptInfo rel,
IndexOptInfo index,
IndexClauseSet rclauseset,
IndexClauseSet jclauseset,
IndexClauseSet eclauseset,
List **  bitindexpaths,
List indexjoinclauses,
int  considered_clauses,
List **  considered_relids 
)
static

Definition at line 498 of file indxpath.c.

507 {
508  ListCell *lc;
509 
510  /* Examine relids of each joinclause in the given list */
511  foreach(lc, indexjoinclauses)
512  {
513  IndexClause *iclause = (IndexClause *) lfirst(lc);
514  Relids clause_relids = iclause->rinfo->clause_relids;
515  EquivalenceClass *parent_ec = iclause->rinfo->parent_ec;
516  int num_considered_relids;
517 
518  /* If we already tried its relids set, no need to do so again */
519  if (list_member(*considered_relids, clause_relids))
520  continue;
521 
522  /*
523  * Generate the union of this clause's relids set with each
524  * previously-tried set. This ensures we try this clause along with
525  * every interesting subset of previous clauses. However, to avoid
526  * exponential growth of planning time when there are many clauses,
527  * limit the number of relid sets accepted to 10 * considered_clauses.
528  *
529  * Note: get_join_index_paths appends entries to *considered_relids,
530  * but we do not need to visit such newly-added entries within this
531  * loop, so we don't use foreach() here. No real harm would be done
532  * if we did visit them, since the subset check would reject them; but
533  * it would waste some cycles.
534  */
535  num_considered_relids = list_length(*considered_relids);
536  for (int pos = 0; pos < num_considered_relids; pos++)
537  {
538  Relids oldrelids = (Relids) list_nth(*considered_relids, pos);
539 
540  /*
541  * If either is a subset of the other, no new set is possible.
542  * This isn't a complete test for redundancy, but it's easy and
543  * cheap. get_join_index_paths will check more carefully if we
544  * already generated the same relids set.
545  */
546  if (bms_subset_compare(clause_relids, oldrelids) != BMS_DIFFERENT)
547  continue;
548 
549  /*
550  * If this clause was derived from an equivalence class, the
551  * clause list may contain other clauses derived from the same
552  * eclass. We should not consider that combining this clause with
553  * one of those clauses generates a usefully different
554  * parameterization; so skip if any clause derived from the same
555  * eclass would already have been included when using oldrelids.
556  */
557  if (parent_ec &&
558  eclass_already_used(parent_ec, oldrelids,
559  indexjoinclauses))
560  continue;
561 
562  /*
563  * If the number of relid sets considered exceeds our heuristic
564  * limit, stop considering combinations of clauses. We'll still
565  * consider the current clause alone, though (below this loop).
566  */
567  if (list_length(*considered_relids) >= 10 * considered_clauses)
568  break;
569 
570  /* OK, try the union set */
572  rclauseset, jclauseset, eclauseset,
573  bitindexpaths,
574  bms_union(clause_relids, oldrelids),
575  considered_relids);
576  }
577 
578  /* Also try this set of relids by itself */
580  rclauseset, jclauseset, eclauseset,
581  bitindexpaths,
582  clause_relids,
583  considered_relids);
584  }
585 }
BMS_Comparison bms_subset_compare(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:445
@ BMS_DIFFERENT
Definition: bitmapset.h:65
static void get_join_index_paths(PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *rclauseset, IndexClauseSet *jclauseset, IndexClauseSet *eclauseset, List **bitindexpaths, Relids relids, List **considered_relids)
Definition: indxpath.c:601
static bool eclass_already_used(EquivalenceClass *parent_ec, Relids oldrelids, List *indexjoinclauses)
Definition: indxpath.c:679
bool list_member(const List *list, const void *datum)
Definition: list.c:661
Bitmapset * Relids
Definition: pathnodes.h:30
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299

References BMS_DIFFERENT, bms_subset_compare(), bms_union(), eclass_already_used(), get_join_index_paths(), lfirst, list_length(), list_member(), list_nth(), IndexClause::rinfo, and root.

Referenced by consider_index_join_clauses().

◆ create_index_paths()

void create_index_paths ( PlannerInfo root,
RelOptInfo rel 
)

Definition at line 235 of file indxpath.c.

236 {
237  List *indexpaths;
238  List *bitindexpaths;
239  List *bitjoinpaths;
240  List *joinorclauses;
241  IndexClauseSet rclauseset;
242  IndexClauseSet jclauseset;
243  IndexClauseSet eclauseset;
244  ListCell *lc;
245 
246  /* Skip the whole mess if no indexes */
247  if (rel->indexlist == NIL)
248  return;
249 
250  /* Bitmap paths are collected and then dealt with at the end */
251  bitindexpaths = bitjoinpaths = joinorclauses = NIL;
252 
253  /* Examine each index in turn */
254  foreach(lc, rel->indexlist)
255  {
257 
258  /* Protect limited-size array in IndexClauseSets */
259  Assert(index->nkeycolumns <= INDEX_MAX_KEYS);
260 
261  /*
262  * Ignore partial indexes that do not match the query.
263  * (generate_bitmap_or_paths() might be able to do something with
264  * them, but that's of no concern here.)
265  */
266  if (index->indpred != NIL && !index->predOK)
267  continue;
268 
269  /*
270  * Identify the restriction clauses that can match the index.
271  */
272  MemSet(&rclauseset, 0, sizeof(rclauseset));
274 
275  /*
276  * Build index paths from the restriction clauses. These will be
277  * non-parameterized paths. Plain paths go directly to add_path(),
278  * bitmap paths are added to bitindexpaths to be handled below.
279  */
280  get_index_paths(root, rel, index, &rclauseset,
281  &bitindexpaths);
282 
283  /*
284  * Identify the join clauses that can match the index. For the moment
285  * we keep them separate from the restriction clauses. Note that this
286  * step finds only "loose" join clauses that have not been merged into
287  * EquivalenceClasses. Also, collect join OR clauses for later.
288  */
289  MemSet(&jclauseset, 0, sizeof(jclauseset));
291  &jclauseset, &joinorclauses);
292 
293  /*
294  * Look for EquivalenceClasses that can generate joinclauses matching
295  * the index.
296  */
297  MemSet(&eclauseset, 0, sizeof(eclauseset));
299  &eclauseset);
300 
301  /*
302  * If we found any plain or eclass join clauses, build parameterized
303  * index paths using them.
304  */
305  if (jclauseset.nonempty || eclauseset.nonempty)
307  &rclauseset,
308  &jclauseset,
309  &eclauseset,
310  &bitjoinpaths);
311  }
312 
313  /*
314  * Generate BitmapOrPaths for any suitable OR-clauses present in the
315  * restriction list. Add these to bitindexpaths.
316  */
317  indexpaths = generate_bitmap_or_paths(root, rel,
318  rel->baserestrictinfo, NIL);
319  bitindexpaths = list_concat(bitindexpaths, indexpaths);
320 
321  /*
322  * Likewise, generate BitmapOrPaths for any suitable OR-clauses present in
323  * the joinclause list. Add these to bitjoinpaths.
324  */
325  indexpaths = generate_bitmap_or_paths(root, rel,
326  joinorclauses, rel->baserestrictinfo);
327  bitjoinpaths = list_concat(bitjoinpaths, indexpaths);
328 
329  /*
330  * If we found anything usable, generate a BitmapHeapPath for the most
331  * promising combination of restriction bitmap index paths. Note there
332  * will be only one such path no matter how many indexes exist. This
333  * should be sufficient since there's basically only one figure of merit
334  * (total cost) for such a path.
335  */
336  if (bitindexpaths != NIL)
337  {
338  Path *bitmapqual;
339  BitmapHeapPath *bpath;
340 
341  bitmapqual = choose_bitmap_and(root, rel, bitindexpaths);
342  bpath = create_bitmap_heap_path(root, rel, bitmapqual,
343  rel->lateral_relids, 1.0, 0);
344  add_path(rel, (Path *) bpath);
345 
346  /* create a partial bitmap heap path */
347  if (rel->consider_parallel && rel->lateral_relids == NULL)
348  create_partial_bitmap_paths(root, rel, bitmapqual);
349  }
350 
351  /*
352  * Likewise, if we found anything usable, generate BitmapHeapPaths for the
353  * most promising combinations of join bitmap index paths. Our strategy
354  * is to generate one such path for each distinct parameterization seen
355  * among the available bitmap index paths. This may look pretty
356  * expensive, but usually there won't be very many distinct
357  * parameterizations. (This logic is quite similar to that in
358  * consider_index_join_clauses, but we're working with whole paths not
359  * individual clauses.)
360  */
361  if (bitjoinpaths != NIL)
362  {
363  List *all_path_outers;
364 
365  /* Identify each distinct parameterization seen in bitjoinpaths */
366  all_path_outers = NIL;
367  foreach(lc, bitjoinpaths)
368  {
369  Path *path = (Path *) lfirst(lc);
370  Relids required_outer = PATH_REQ_OUTER(path);
371 
372  all_path_outers = list_append_unique(all_path_outers,
373  required_outer);
374  }
375 
376  /* Now, for each distinct parameterization set ... */
377  foreach(lc, all_path_outers)
378  {
379  Relids max_outers = (Relids) lfirst(lc);
380  List *this_path_set;
381  Path *bitmapqual;
382  Relids required_outer;
383  double loop_count;
384  BitmapHeapPath *bpath;
385  ListCell *lcp;
386 
387  /* Identify all the bitmap join paths needing no more than that */
388  this_path_set = NIL;
389  foreach(lcp, bitjoinpaths)
390  {
391  Path *path = (Path *) lfirst(lcp);
392 
393  if (bms_is_subset(PATH_REQ_OUTER(path), max_outers))
394  this_path_set = lappend(this_path_set, path);
395  }
396 
397  /*
398  * Add in restriction bitmap paths, since they can be used
399  * together with any join paths.
400  */
401  this_path_set = list_concat(this_path_set, bitindexpaths);
402 
403  /* Select best AND combination for this parameterization */
404  bitmapqual = choose_bitmap_and(root, rel, this_path_set);
405 
406  /* And push that path into the mix */
407  required_outer = PATH_REQ_OUTER(bitmapqual);
408  loop_count = get_loop_count(root, rel->relid, required_outer);
409  bpath = create_bitmap_heap_path(root, rel, bitmapqual,
410  required_outer, loop_count, 0);
411  add_path(rel, (Path *) bpath);
412  }
413  }
414 }
void create_partial_bitmap_paths(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual)
Definition: allpaths.c:4180
static Path * choose_bitmap_and(PlannerInfo *root, RelOptInfo *rel, List *paths)
Definition: indxpath.c:1341
static void match_join_clauses_to_index(PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *clauseset, List **joinorclauses)
Definition: indxpath.c:2037
static void match_eclass_clauses_to_index(PlannerInfo *root, IndexOptInfo *index, IndexClauseSet *clauseset)
Definition: indxpath.c:2067
static void get_index_paths(PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *clauses, List **bitindexpaths)
Definition: indxpath.c:713
static void consider_index_join_clauses(PlannerInfo *root, RelOptInfo *rel, IndexOptInfo *index, IndexClauseSet *rclauseset, IndexClauseSet *jclauseset, IndexClauseSet *eclauseset, List **bitindexpaths)
Definition: indxpath.c:432
static void match_restriction_clauses_to_index(PlannerInfo *root, IndexOptInfo *index, IndexClauseSet *clauseset)
Definition: indxpath.c:2022
static List * generate_bitmap_or_paths(PlannerInfo *root, RelOptInfo *rel, List *clauses, List *other_clauses)
Definition: indxpath.c:1234
List * list_append_unique(List *list, void *datum)
Definition: list.c:1343
void add_path(RelOptInfo *parent_rel, Path *new_path)
Definition: pathnode.c:420
BitmapHeapPath * create_bitmap_heap_path(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual, Relids required_outer, double loop_count, int parallel_degree)
Definition: pathnode.c:1042
#define INDEX_MAX_KEYS

References add_path(), Assert(), RelOptInfo::baserestrictinfo, bms_is_subset(), choose_bitmap_and(), consider_index_join_clauses(), RelOptInfo::consider_parallel, create_bitmap_heap_path(), create_partial_bitmap_paths(), generate_bitmap_or_paths(), get_index_paths(), get_loop_count(), INDEX_MAX_KEYS, RelOptInfo::indexlist, lappend(), RelOptInfo::lateral_relids, lfirst, list_append_unique(), list_concat(), match_eclass_clauses_to_index(), match_join_clauses_to_index(), match_restriction_clauses_to_index(), MemSet, NIL, IndexClauseSet::nonempty, PATH_REQ_OUTER, RelOptInfo::relid, and root.

Referenced by set_plain_rel_pathlist().

◆ ec_member_matches_indexcol()

static bool ec_member_matches_indexcol ( PlannerInfo root,
RelOptInfo rel,
EquivalenceClass ec,
EquivalenceMember em,
void *  arg 
)
static

Definition at line 3436 of file indxpath.c.

3439 {
3440  IndexOptInfo *index = ((ec_member_matches_arg *) arg)->index;
3441  int indexcol = ((ec_member_matches_arg *) arg)->indexcol;
3442  Oid curFamily;
3443  Oid curCollation;
3444 
3445  Assert(indexcol < index->nkeycolumns);
3446 
3447  curFamily = index->opfamily[indexcol];
3448  curCollation = index->indexcollations[indexcol];
3449 
3450  /*
3451  * If it's a btree index, we can reject it if its opfamily isn't
3452  * compatible with the EC, since no clause generated from the EC could be
3453  * used with the index. For non-btree indexes, we can't easily tell
3454  * whether clauses generated from the EC could be used with the index, so
3455  * don't check the opfamily. This might mean we return "true" for a
3456  * useless EC, so we have to recheck the results of
3457  * generate_implied_equalities_for_column; see
3458  * match_eclass_clauses_to_index.
3459  */
3460  if (index->relam == BTREE_AM_OID &&
3461  !list_member_oid(ec->ec_opfamilies, curFamily))
3462  return false;
3463 
3464  /* We insist on collation match for all index types, though */
3465  if (!IndexCollMatchesExprColl(curCollation, ec->ec_collation))
3466  return false;
3467 
3468  return match_index_to_operand((Node *) em->em_expr, indexcol, index);
3469 }
#define IndexCollMatchesExprColl(idxcollation, exprcollation)
Definition: indxpath.c:40
bool match_index_to_operand(Node *operand, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:3758
bool list_member_oid(const List *list, Oid datum)
Definition: list.c:722
void * arg
unsigned int Oid
Definition: postgres_ext.h:31
List * ec_opfamilies
Definition: pathnodes.h:1375

References arg, Assert(), EquivalenceClass::ec_collation, EquivalenceClass::ec_opfamilies, EquivalenceMember::em_expr, IndexCollMatchesExprColl, list_member_oid(), and match_index_to_operand().

Referenced by match_eclass_clauses_to_index().

◆ eclass_already_used()

static bool eclass_already_used ( EquivalenceClass parent_ec,
Relids  oldrelids,
List indexjoinclauses 
)
static

Definition at line 679 of file indxpath.c.

681 {
682  ListCell *lc;
683 
684  foreach(lc, indexjoinclauses)
685  {
686  IndexClause *iclause = (IndexClause *) lfirst(lc);
687  RestrictInfo *rinfo = iclause->rinfo;
688 
689  if (rinfo->parent_ec == parent_ec &&
690  bms_is_subset(rinfo->clause_relids, oldrelids))
691  return true;
692  }
693  return false;
694 }

References bms_is_subset(), lfirst, and IndexClause::rinfo.

Referenced by consider_index_join_outer_rels().

◆ expand_indexqual_rowcompare()

static IndexClause * expand_indexqual_rowcompare ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index,
Oid  expr_op,
bool  var_on_left 
)
static

Definition at line 2852 of file indxpath.c.

2858 {
2859  IndexClause *iclause = makeNode(IndexClause);
2860  RowCompareExpr *clause = (RowCompareExpr *) rinfo->clause;
2861  int op_strategy;
2862  Oid op_lefttype;
2863  Oid op_righttype;
2864  int matching_cols;
2865  List *expr_ops;
2866  List *opfamilies;
2867  List *lefttypes;
2868  List *righttypes;
2869  List *new_ops;
2870  List *var_args;
2871  List *non_var_args;
2872 
2873  iclause->rinfo = rinfo;
2874  iclause->indexcol = indexcol;
2875 
2876  if (var_on_left)
2877  {
2878  var_args = clause->largs;
2879  non_var_args = clause->rargs;
2880  }
2881  else
2882  {
2883  var_args = clause->rargs;
2884  non_var_args = clause->largs;
2885  }
2886 
2887  get_op_opfamily_properties(expr_op, index->opfamily[indexcol], false,
2888  &op_strategy,
2889  &op_lefttype,
2890  &op_righttype);
2891 
2892  /* Initialize returned list of which index columns are used */
2893  iclause->indexcols = list_make1_int(indexcol);
2894 
2895  /* Build lists of ops, opfamilies and operator datatypes in case needed */
2896  expr_ops = list_make1_oid(expr_op);
2897  opfamilies = list_make1_oid(index->opfamily[indexcol]);
2898  lefttypes = list_make1_oid(op_lefttype);
2899  righttypes = list_make1_oid(op_righttype);
2900 
2901  /*
2902  * See how many of the remaining columns match some index column in the
2903  * same way. As in match_clause_to_indexcol(), the "other" side of any
2904  * potential index condition is OK as long as it doesn't use Vars from the
2905  * indexed relation.
2906  */
2907  matching_cols = 1;
2908 
2909  while (matching_cols < list_length(var_args))
2910  {
2911  Node *varop = (Node *) list_nth(var_args, matching_cols);
2912  Node *constop = (Node *) list_nth(non_var_args, matching_cols);
2913  int i;
2914 
2915  expr_op = list_nth_oid(clause->opnos, matching_cols);
2916  if (!var_on_left)
2917  {
2918  /* indexkey is on right, so commute the operator */
2919  expr_op = get_commutator(expr_op);
2920  if (expr_op == InvalidOid)
2921  break; /* operator is not usable */
2922  }
2923  if (bms_is_member(index->rel->relid, pull_varnos(root, constop)))
2924  break; /* no good, Var on wrong side */
2925  if (contain_volatile_functions(constop))
2926  break; /* no good, volatile comparison value */
2927 
2928  /*
2929  * The Var side can match any key column of the index.
2930  */
2931  for (i = 0; i < index->nkeycolumns; i++)
2932  {
2933  if (match_index_to_operand(varop, i, index) &&
2934  get_op_opfamily_strategy(expr_op,
2935  index->opfamily[i]) == op_strategy &&
2936  IndexCollMatchesExprColl(index->indexcollations[i],
2937  list_nth_oid(clause->inputcollids,
2938  matching_cols)))
2939  break;
2940  }
2941  if (i >= index->nkeycolumns)
2942  break; /* no match found */
2943 
2944  /* Add column number to returned list */
2945  iclause->indexcols = lappend_int(iclause->indexcols, i);
2946 
2947  /* Add operator info to lists */
2948  get_op_opfamily_properties(expr_op, index->opfamily[i], false,
2949  &op_strategy,
2950  &op_lefttype,
2951  &op_righttype);
2952  expr_ops = lappend_oid(expr_ops, expr_op);
2953  opfamilies = lappend_oid(opfamilies, index->opfamily[i]);
2954  lefttypes = lappend_oid(lefttypes, op_lefttype);
2955  righttypes = lappend_oid(righttypes, op_righttype);
2956 
2957  /* This column matches, keep scanning */
2958  matching_cols++;
2959  }
2960 
2961  /* Result is non-lossy if all columns are usable as index quals */
2962  iclause->lossy = (matching_cols != list_length(clause->opnos));
2963 
2964  /*
2965  * We can use rinfo->clause as-is if we have var on left and it's all
2966  * usable as index quals.
2967  */
2968  if (var_on_left && !iclause->lossy)
2969  iclause->indexquals = list_make1(rinfo);
2970  else
2971  {
2972  /*
2973  * We have to generate a modified rowcompare (possibly just one
2974  * OpExpr). The painful part of this is changing < to <= or > to >=,
2975  * so deal with that first.
2976  */
2977  if (!iclause->lossy)
2978  {
2979  /* very easy, just use the commuted operators */
2980  new_ops = expr_ops;
2981  }
2982  else if (op_strategy == BTLessEqualStrategyNumber ||
2983  op_strategy == BTGreaterEqualStrategyNumber)
2984  {
2985  /* easy, just use the same (possibly commuted) operators */
2986  new_ops = list_truncate(expr_ops, matching_cols);
2987  }
2988  else
2989  {
2990  ListCell *opfamilies_cell;
2991  ListCell *lefttypes_cell;
2992  ListCell *righttypes_cell;
2993 
2994  if (op_strategy == BTLessStrategyNumber)
2995  op_strategy = BTLessEqualStrategyNumber;
2996  else if (op_strategy == BTGreaterStrategyNumber)
2997  op_strategy = BTGreaterEqualStrategyNumber;
2998  else
2999  elog(ERROR, "unexpected strategy number %d", op_strategy);
3000  new_ops = NIL;
3001  forthree(opfamilies_cell, opfamilies,
3002  lefttypes_cell, lefttypes,
3003  righttypes_cell, righttypes)
3004  {
3005  Oid opfam = lfirst_oid(opfamilies_cell);
3006  Oid lefttype = lfirst_oid(lefttypes_cell);
3007  Oid righttype = lfirst_oid(righttypes_cell);
3008 
3009  expr_op = get_opfamily_member(opfam, lefttype, righttype,
3010  op_strategy);
3011  if (!OidIsValid(expr_op)) /* should not happen */
3012  elog(ERROR, "missing operator %d(%u,%u) in opfamily %u",
3013  op_strategy, lefttype, righttype, opfam);
3014  new_ops = lappend_oid(new_ops, expr_op);
3015  }
3016  }
3017 
3018  /* If we have more than one matching col, create a subset rowcompare */
3019  if (matching_cols > 1)
3020  {
3022 
3023  rc->rctype = (RowCompareType) op_strategy;
3024  rc->opnos = new_ops;
3025  rc->opfamilies = list_copy_head(clause->opfamilies,
3026  matching_cols);
3027  rc->inputcollids = list_copy_head(clause->inputcollids,
3028  matching_cols);
3029  rc->largs = list_copy_head(var_args, matching_cols);
3030  rc->rargs = list_copy_head(non_var_args, matching_cols);
3032  (Expr *) rc));
3033  }
3034  else
3035  {
3036  Expr *op;
3037 
3038  /* We don't report an index column list in this case */
3039  iclause->indexcols = NIL;
3040 
3041  op = make_opclause(linitial_oid(new_ops), BOOLOID, false,
3042  copyObject(linitial(var_args)),
3043  copyObject(linitial(non_var_args)),
3044  InvalidOid,
3045  linitial_oid(clause->inputcollids));
3047  }
3048  }
3049 
3050  return iclause;
3051 }
#define OidIsValid(objectId)
Definition: c.h:762
bool contain_volatile_functions(Node *clause)
Definition: clauses.c:538
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
List * lappend_int(List *list, int datum)
Definition: list.c:357
List * lappend_oid(List *list, Oid datum)
Definition: list.c:375
void get_op_opfamily_properties(Oid opno, Oid opfamily, bool ordering_op, int *strategy, Oid *lefttype, Oid *righttype)
Definition: lsyscache.c:136
int get_op_opfamily_strategy(Oid opno, Oid opfamily)
Definition: lsyscache.c:83
Oid get_opfamily_member(Oid opfamily, Oid lefttype, Oid righttype, int16 strategy)
Definition: lsyscache.c:166
Oid get_commutator(Oid opno)
Definition: lsyscache.c:1487
Expr * make_opclause(Oid opno, Oid opresulttype, bool opretset, Expr *leftop, Expr *rightop, Oid opcollid, Oid inputcollid)
Definition: makefuncs.c:612
#define copyObject(obj)
Definition: nodes.h:224
#define makeNode(_type_)
Definition: nodes.h:155
static Oid list_nth_oid(const List *list, int n)
Definition: pg_list.h:321
#define list_make1_oid(x1)
Definition: pg_list.h:242
#define forthree(cell1, list1, cell2, list2, cell3, list3)
Definition: pg_list.h:563
#define list_make1_int(x1)
Definition: pg_list.h:227
#define linitial_oid(l)
Definition: pg_list.h:180
#define lfirst_oid(lc)
Definition: pg_list.h:174
#define InvalidOid
Definition: postgres_ext.h:36
RowCompareType
Definition: primnodes.h:1409
#define make_simple_restrictinfo(root, clause)
Definition: restrictinfo.h:21
#define BTGreaterStrategyNumber
Definition: stratnum.h:33
#define BTLessStrategyNumber
Definition: stratnum.h:29
#define BTLessEqualStrategyNumber
Definition: stratnum.h:30
#define BTGreaterEqualStrategyNumber
Definition: stratnum.h:32
AttrNumber indexcol
Definition: pathnodes.h:1746
List * indexcols
Definition: pathnodes.h:1747
List * indexquals
Definition: pathnodes.h:1744
RowCompareType rctype
Definition: primnodes.h:1424
Relids pull_varnos(PlannerInfo *root, Node *node)
Definition: var.c:108

References bms_is_member(), BTGreaterEqualStrategyNumber, BTGreaterStrategyNumber, BTLessEqualStrategyNumber, BTLessStrategyNumber, RestrictInfo::clause, contain_volatile_functions(), copyObject, elog, ERROR, forthree, get_commutator(), get_op_opfamily_properties(), get_op_opfamily_strategy(), get_opfamily_member(), i, if(), IndexClause::indexcol, IndexCollMatchesExprColl, IndexClause::indexcols, IndexClause::indexquals, InvalidOid, lappend_int(), lappend_oid(), RowCompareExpr::largs, lfirst_oid, linitial, linitial_oid, list_copy_head(), list_length(), list_make1, list_make1_int, list_make1_oid, list_nth(), list_nth_oid(), list_truncate(), IndexClause::lossy, make_opclause(), make_simple_restrictinfo, makeNode, match_index_to_operand(), NIL, OidIsValid, pull_varnos(), RowCompareExpr::rargs, RowCompareExpr::rctype, IndexClause::rinfo, and root.

Referenced by match_rowcompare_to_indexcol().

◆ find_indexpath_quals()

static void find_indexpath_quals ( Path bitmapqual,
List **  quals,
List **  preds 
)
static

Definition at line 1711 of file indxpath.c.

1712 {
1713  if (IsA(bitmapqual, BitmapAndPath))
1714  {
1715  BitmapAndPath *apath = (BitmapAndPath *) bitmapqual;
1716  ListCell *l;
1717 
1718  foreach(l, apath->bitmapquals)
1719  {
1720  find_indexpath_quals((Path *) lfirst(l), quals, preds);
1721  }
1722  }
1723  else if (IsA(bitmapqual, BitmapOrPath))
1724  {
1725  BitmapOrPath *opath = (BitmapOrPath *) bitmapqual;
1726  ListCell *l;
1727 
1728  foreach(l, opath->bitmapquals)
1729  {
1730  find_indexpath_quals((Path *) lfirst(l), quals, preds);
1731  }
1732  }
1733  else if (IsA(bitmapqual, IndexPath))
1734  {
1735  IndexPath *ipath = (IndexPath *) bitmapqual;
1736  ListCell *l;
1737 
1738  foreach(l, ipath->indexclauses)
1739  {
1740  IndexClause *iclause = (IndexClause *) lfirst(l);
1741 
1742  *quals = lappend(*quals, iclause->rinfo->clause);
1743  }
1744  *preds = list_concat(*preds, ipath->indexinfo->indpred);
1745  }
1746  else
1747  elog(ERROR, "unrecognized node type: %d", nodeTag(bitmapqual));
1748 }
#define nodeTag(nodeptr)
Definition: nodes.h:133
List * bitmapquals
Definition: pathnodes.h:1782
List * bitmapquals
Definition: pathnodes.h:1795
List * indpred
Definition: pathnodes.h:1157
List * indexclauses
Definition: pathnodes.h:1696
IndexOptInfo * indexinfo
Definition: pathnodes.h:1695

References BitmapAndPath::bitmapquals, BitmapOrPath::bitmapquals, RestrictInfo::clause, elog, ERROR, IndexPath::indexclauses, IndexPath::indexinfo, IndexOptInfo::indpred, IsA, lappend(), lfirst, list_concat(), nodeTag, and IndexClause::rinfo.

Referenced by classify_index_clause_usage().

◆ find_list_position()

static int find_list_position ( Node node,
List **  nodelist 
)
static

Definition at line 1758 of file indxpath.c.

1759 {
1760  int i;
1761  ListCell *lc;
1762 
1763  i = 0;
1764  foreach(lc, *nodelist)
1765  {
1766  Node *oldnode = (Node *) lfirst(lc);
1767 
1768  if (equal(node, oldnode))
1769  return i;
1770  i++;
1771  }
1772 
1773  *nodelist = lappend(*nodelist, node);
1774 
1775  return i;
1776 }
bool equal(const void *a, const void *b)
Definition: equalfuncs.c:223

References equal(), i, lappend(), and lfirst.

Referenced by classify_index_clause_usage().

◆ generate_bitmap_or_paths()

static List * generate_bitmap_or_paths ( PlannerInfo root,
RelOptInfo rel,
List clauses,
List other_clauses 
)
static

Definition at line 1234 of file indxpath.c.

1236 {
1237  List *result = NIL;
1238  List *all_clauses;
1239  ListCell *lc;
1240 
1241  /*
1242  * We can use both the current and other clauses as context for
1243  * build_paths_for_OR; no need to remove ORs from the lists.
1244  */
1245  all_clauses = list_concat_copy(clauses, other_clauses);
1246 
1247  foreach(lc, clauses)
1248  {
1249  RestrictInfo *rinfo = lfirst_node(RestrictInfo, lc);
1250  List *pathlist;
1251  Path *bitmapqual;
1252  ListCell *j;
1253 
1254  /* Ignore RestrictInfos that aren't ORs */
1255  if (!restriction_is_or_clause(rinfo))
1256  continue;
1257 
1258  /*
1259  * We must be able to match at least one index to each of the arms of
1260  * the OR, else we can't use it.
1261  */
1262  pathlist = NIL;
1263  foreach(j, ((BoolExpr *) rinfo->orclause)->args)
1264  {
1265  Node *orarg = (Node *) lfirst(j);
1266  List *indlist;
1267 
1268  /* OR arguments should be ANDs or sub-RestrictInfos */
1269  if (is_andclause(orarg))
1270  {
1271  List *andargs = ((BoolExpr *) orarg)->args;
1272 
1273  indlist = build_paths_for_OR(root, rel,
1274  andargs,
1275  all_clauses);
1276 
1277  /* Recurse in case there are sub-ORs */
1278  indlist = list_concat(indlist,
1280  andargs,
1281  all_clauses));
1282  }
1283  else
1284  {
1285  RestrictInfo *ri = castNode(RestrictInfo, orarg);
1286  List *orargs;
1287 
1289  orargs = list_make1(ri);
1290 
1291  indlist = build_paths_for_OR(root, rel,
1292  orargs,
1293  all_clauses);
1294  }
1295 
1296  /*
1297  * If nothing matched this arm, we can't do anything with this OR
1298  * clause.
1299  */
1300  if (indlist == NIL)
1301  {
1302  pathlist = NIL;
1303  break;
1304  }
1305 
1306  /*
1307  * OK, pick the most promising AND combination, and add it to
1308  * pathlist.
1309  */
1310  bitmapqual = choose_bitmap_and(root, rel, indlist);
1311  pathlist = lappend(pathlist, bitmapqual);
1312  }
1313 
1314  /*
1315  * If we have a match for every arm, then turn them into a
1316  * BitmapOrPath, and add to result list.
1317  */
1318  if (pathlist != NIL)
1319  {
1320  bitmapqual = (Path *) create_bitmap_or_path(root, rel, pathlist);
1321  result = lappend(result, bitmapqual);
1322  }
1323  }
1324 
1325  return result;
1326 }
static List * build_paths_for_OR(PlannerInfo *root, RelOptInfo *rel, List *clauses, List *other_clauses)
Definition: indxpath.c:1139
static bool is_andclause(const void *clause)
Definition: nodeFuncs.h:105
#define castNode(_type_, nodeptr)
Definition: nodes.h:176
BitmapOrPath * create_bitmap_or_path(PlannerInfo *root, RelOptInfo *rel, List *bitmapquals)
Definition: pathnode.c:1127
#define lfirst_node(type, lc)
Definition: pg_list.h:176
bool restriction_is_or_clause(RestrictInfo *restrictinfo)
Definition: restrictinfo.c:416

References Assert(), build_paths_for_OR(), castNode, choose_bitmap_and(), create_bitmap_or_path(), is_andclause(), j, lappend(), lfirst, lfirst_node, list_concat(), list_concat_copy(), list_make1, NIL, restriction_is_or_clause(), and root.

Referenced by create_index_paths().

◆ get_index_clause_from_support()

static IndexClause * get_index_clause_from_support ( PlannerInfo root,
RestrictInfo rinfo,
Oid  funcid,
int  indexarg,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2611 of file indxpath.c.

2617 {
2618  Oid prosupport = get_func_support(funcid);
2620  List *sresult;
2621 
2622  if (!OidIsValid(prosupport))
2623  return NULL;
2624 
2625  req.type = T_SupportRequestIndexCondition;
2626  req.root = root;
2627  req.funcid = funcid;
2628  req.node = (Node *) rinfo->clause;
2629  req.indexarg = indexarg;
2630  req.index = index;
2631  req.indexcol = indexcol;
2632  req.opfamily = index->opfamily[indexcol];
2633  req.indexcollation = index->indexcollations[indexcol];
2634 
2635  req.lossy = true; /* default assumption */
2636 
2637  sresult = (List *)
2638  DatumGetPointer(OidFunctionCall1(prosupport,
2639  PointerGetDatum(&req)));
2640 
2641  if (sresult != NIL)
2642  {
2643  IndexClause *iclause = makeNode(IndexClause);
2644  List *indexquals = NIL;
2645  ListCell *lc;
2646 
2647  /*
2648  * The support function API says it should just give back bare
2649  * clauses, so here we must wrap each one in a RestrictInfo.
2650  */
2651  foreach(lc, sresult)
2652  {
2653  Expr *clause = (Expr *) lfirst(lc);
2654 
2655  indexquals = lappend(indexquals,
2656  make_simple_restrictinfo(root, clause));
2657  }
2658 
2659  iclause->rinfo = rinfo;
2660  iclause->indexquals = indexquals;
2661  iclause->lossy = req.lossy;
2662  iclause->indexcol = indexcol;
2663  iclause->indexcols = NIL;
2664 
2665  return iclause;
2666  }
2667 
2668  return NULL;
2669 }
#define OidFunctionCall1(functionId, arg1)
Definition: fmgr.h:680
RegProcedure get_func_support(Oid funcid)
Definition: lsyscache.c:1836
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
struct IndexOptInfo * index
Definition: supportnodes.h:232
struct PlannerInfo * root
Definition: supportnodes.h:228

References RestrictInfo::clause, DatumGetPointer(), SupportRequestIndexCondition::funcid, get_func_support(), SupportRequestIndexCondition::index, SupportRequestIndexCondition::indexarg, IndexClause::indexcol, SupportRequestIndexCondition::indexcol, SupportRequestIndexCondition::indexcollation, IndexClause::indexcols, IndexClause::indexquals, lappend(), lfirst, IndexClause::lossy, SupportRequestIndexCondition::lossy, make_simple_restrictinfo, makeNode, NIL, SupportRequestIndexCondition::node, OidFunctionCall1, OidIsValid, SupportRequestIndexCondition::opfamily, PointerGetDatum(), IndexClause::rinfo, root, SupportRequestIndexCondition::root, and SupportRequestIndexCondition::type.

Referenced by match_funcclause_to_indexcol(), and match_opclause_to_indexcol().

◆ get_index_paths()

static void get_index_paths ( PlannerInfo root,
RelOptInfo rel,
IndexOptInfo index,
IndexClauseSet clauses,
List **  bitindexpaths 
)
static

Definition at line 713 of file indxpath.c.

716 {
717  List *indexpaths;
718  bool skip_nonnative_saop = false;
719  bool skip_lower_saop = false;
720  ListCell *lc;
721 
722  /*
723  * Build simple index paths using the clauses. Allow ScalarArrayOpExpr
724  * clauses only if the index AM supports them natively, and skip any such
725  * clauses for index columns after the first (so that we produce ordered
726  * paths if possible).
727  */
728  indexpaths = build_index_paths(root, rel,
729  index, clauses,
730  index->predOK,
731  ST_ANYSCAN,
732  &skip_nonnative_saop,
733  &skip_lower_saop);
734 
735  /*
736  * If we skipped any lower-order ScalarArrayOpExprs on an index with an AM
737  * that supports them, then try again including those clauses. This will
738  * produce paths with more selectivity but no ordering.
739  */
740  if (skip_lower_saop)
741  {
742  indexpaths = list_concat(indexpaths,
743  build_index_paths(root, rel,
744  index, clauses,
745  index->predOK,
746  ST_ANYSCAN,
747  &skip_nonnative_saop,
748  NULL));
749  }
750 
751  /*
752  * Submit all the ones that can form plain IndexScan plans to add_path. (A
753  * plain IndexPath can represent either a plain IndexScan or an
754  * IndexOnlyScan, but for our purposes here that distinction does not
755  * matter. However, some of the indexes might support only bitmap scans,
756  * and those we mustn't submit to add_path here.)
757  *
758  * Also, pick out the ones that are usable as bitmap scans. For that, we
759  * must discard indexes that don't support bitmap scans, and we also are
760  * only interested in paths that have some selectivity; we should discard
761  * anything that was generated solely for ordering purposes.
762  */
763  foreach(lc, indexpaths)
764  {
765  IndexPath *ipath = (IndexPath *) lfirst(lc);
766 
767  if (index->amhasgettuple)
768  add_path(rel, (Path *) ipath);
769 
770  if (index->amhasgetbitmap &&
771  (ipath->path.pathkeys == NIL ||
772  ipath->indexselectivity < 1.0))
773  *bitindexpaths = lappend(*bitindexpaths, ipath);
774  }
775 
776  /*
777  * If there were ScalarArrayOpExpr clauses that the index can't handle
778  * natively, generate bitmap scan paths relying on executor-managed
779  * ScalarArrayOpExpr.
780  */
781  if (skip_nonnative_saop)
782  {
783  indexpaths = build_index_paths(root, rel,
784  index, clauses,
785  false,
787  NULL,
788  NULL);
789  *bitindexpaths = list_concat(*bitindexpaths, indexpaths);
790  }
791 }
Selectivity indexselectivity
Definition: pathnodes.h:1701

References add_path(), build_index_paths(), IndexPath::indexselectivity, lappend(), lfirst, list_concat(), NIL, IndexPath::path, Path::pathkeys, root, ST_ANYSCAN, and ST_BITMAPSCAN.

Referenced by create_index_paths(), and get_join_index_paths().

◆ get_join_index_paths()

static void get_join_index_paths ( PlannerInfo root,
RelOptInfo rel,
IndexOptInfo index,
IndexClauseSet rclauseset,
IndexClauseSet jclauseset,
IndexClauseSet eclauseset,
List **  bitindexpaths,
Relids  relids,
List **  considered_relids 
)
static

Definition at line 601 of file indxpath.c.

609 {
610  IndexClauseSet clauseset;
611  int indexcol;
612 
613  /* If we already considered this relids set, don't repeat the work */
614  if (list_member(*considered_relids, relids))
615  return;
616 
617  /* Identify indexclauses usable with this relids set */
618  MemSet(&clauseset, 0, sizeof(clauseset));
619 
620  for (indexcol = 0; indexcol < index->nkeycolumns; indexcol++)
621  {
622  ListCell *lc;
623 
624  /* First find applicable simple join clauses */
625  foreach(lc, jclauseset->indexclauses[indexcol])
626  {
627  IndexClause *iclause = (IndexClause *) lfirst(lc);
628 
629  if (bms_is_subset(iclause->rinfo->clause_relids, relids))
630  clauseset.indexclauses[indexcol] =
631  lappend(clauseset.indexclauses[indexcol], iclause);
632  }
633 
634  /*
635  * Add applicable eclass join clauses. The clauses generated for each
636  * column are redundant (cf generate_implied_equalities_for_column),
637  * so we need at most one. This is the only exception to the general
638  * rule of using all available index clauses.
639  */
640  foreach(lc, eclauseset->indexclauses[indexcol])
641  {
642  IndexClause *iclause = (IndexClause *) lfirst(lc);
643 
644  if (bms_is_subset(iclause->rinfo->clause_relids, relids))
645  {
646  clauseset.indexclauses[indexcol] =
647  lappend(clauseset.indexclauses[indexcol], iclause);
648  break;
649  }
650  }
651 
652  /* Add restriction clauses */
653  clauseset.indexclauses[indexcol] =
654  list_concat(clauseset.indexclauses[indexcol],
655  rclauseset->indexclauses[indexcol]);
656 
657  if (clauseset.indexclauses[indexcol] != NIL)
658  clauseset.nonempty = true;
659  }
660 
661  /* We should have found something, else caller passed silly relids */
662  Assert(clauseset.nonempty);
663 
664  /* Build index path(s) using the collected set of clauses */
665  get_index_paths(root, rel, index, &clauseset, bitindexpaths);
666 
667  /*
668  * Remember we considered paths for this set of relids.
669  */
670  *considered_relids = lappend(*considered_relids, relids);
671 }

References Assert(), bms_is_subset(), get_index_paths(), IndexClauseSet::indexclauses, lappend(), lfirst, list_concat(), list_member(), MemSet, NIL, IndexClauseSet::nonempty, IndexClause::rinfo, and root.

Referenced by consider_index_join_outer_rels().

◆ get_loop_count()

static double get_loop_count ( PlannerInfo root,
Index  cur_relid,
Relids  outer_relids 
)
static

Definition at line 1883 of file indxpath.c.

1884 {
1885  double result;
1886  int outer_relid;
1887 
1888  /* For a non-parameterized path, just return 1.0 quickly */
1889  if (outer_relids == NULL)
1890  return 1.0;
1891 
1892  result = 0.0;
1893  outer_relid = -1;
1894  while ((outer_relid = bms_next_member(outer_relids, outer_relid)) >= 0)
1895  {
1896  RelOptInfo *outer_rel;
1897  double rowcount;
1898 
1899  /* Paranoia: ignore bogus relid indexes */
1900  if (outer_relid >= root->simple_rel_array_size)
1901  continue;
1902  outer_rel = root->simple_rel_array[outer_relid];
1903  if (outer_rel == NULL)
1904  continue;
1905  Assert(outer_rel->relid == outer_relid); /* sanity check on array */
1906 
1907  /* Other relation could be proven empty, if so ignore */
1908  if (IS_DUMMY_REL(outer_rel))
1909  continue;
1910 
1911  /* Otherwise, rel's rows estimate should be valid by now */
1912  Assert(outer_rel->rows > 0);
1913 
1914  /* Check to see if rel is on the inside of any semijoins */
1916  cur_relid,
1917  outer_relid,
1918  outer_rel->rows);
1919 
1920  /* Remember smallest row count estimate among the outer rels */
1921  if (result == 0.0 || result > rowcount)
1922  result = rowcount;
1923  }
1924  /* Return 1.0 if we found no valid relations (shouldn't happen) */
1925  return (result > 0.0) ? result : 1.0;
1926 }
static double adjust_rowcount_for_semijoins(PlannerInfo *root, Index cur_relid, Index outer_relid, double rowcount)
Definition: indxpath.c:1936

References adjust_rowcount_for_semijoins(), Assert(), bms_next_member(), IS_DUMMY_REL, RelOptInfo::relid, root, and RelOptInfo::rows.

Referenced by bitmap_scan_cost_est(), build_index_paths(), and create_index_paths().

◆ indexcol_is_bool_constant_for_query()

bool indexcol_is_bool_constant_for_query ( PlannerInfo root,
IndexOptInfo index,
int  indexcol 
)

Definition at line 3707 of file indxpath.c.

3710 {
3711  ListCell *lc;
3712 
3713  /* If the index isn't boolean, we can't possibly get a match */
3714  if (!IsBooleanOpfamily(index->opfamily[indexcol]))
3715  return false;
3716 
3717  /* Check each restriction clause for the index's rel */
3718  foreach(lc, index->rel->baserestrictinfo)
3719  {
3720  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
3721 
3722  /*
3723  * As in match_clause_to_indexcol, never match pseudoconstants to
3724  * indexes. (It might be semantically okay to do so here, but the
3725  * odds of getting a match are negligible, so don't waste the cycles.)
3726  */
3727  if (rinfo->pseudoconstant)
3728  continue;
3729 
3730  /* See if we can match the clause's expression to the index column */
3731  if (match_boolean_index_clause(root, rinfo, indexcol, index))
3732  return true;
3733  }
3734 
3735  return false;
3736 }
static bool IsBooleanOpfamily(Oid opfamily)
Definition: indxpath.c:2334
static IndexClause * match_boolean_index_clause(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2359

References IsBooleanOpfamily(), lfirst, match_boolean_index_clause(), and root.

Referenced by build_index_pathkeys().

◆ is_pseudo_constant_for_index()

bool is_pseudo_constant_for_index ( PlannerInfo root,
Node expr,
IndexOptInfo index 
)

Definition at line 3844 of file indxpath.c.

3845 {
3846  /* pull_varnos is cheaper than volatility check, so do that first */
3847  if (bms_is_member(index->rel->relid, pull_varnos(root, expr)))
3848  return false; /* no good, contains Var of table */
3849  if (contain_volatile_functions(expr))
3850  return false; /* no good, volatile comparison value */
3851  return true;
3852 }

References bms_is_member(), contain_volatile_functions(), pull_varnos(), and root.

◆ IsBooleanOpfamily()

static bool IsBooleanOpfamily ( Oid  opfamily)
static

Definition at line 2334 of file indxpath.c.

2335 {
2336  if (opfamily < FirstNormalObjectId)
2337  return IsBuiltinBooleanOpfamily(opfamily);
2338  else
2339  return op_in_opfamily(BooleanEqualOperator, opfamily);
2340 }
bool op_in_opfamily(Oid opno, Oid opfamily)
Definition: lsyscache.c:66
#define FirstNormalObjectId
Definition: transam.h:197

References FirstNormalObjectId, and op_in_opfamily().

Referenced by indexcol_is_bool_constant_for_query(), and match_clause_to_indexcol().

◆ match_boolean_index_clause()

static IndexClause * match_boolean_index_clause ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2359 of file indxpath.c.

2363 {
2364  Node *clause = (Node *) rinfo->clause;
2365  Expr *op = NULL;
2366 
2367  /* Direct match? */
2368  if (match_index_to_operand(clause, indexcol, index))
2369  {
2370  /* convert to indexkey = TRUE */
2371  op = make_opclause(BooleanEqualOperator, BOOLOID, false,
2372  (Expr *) clause,
2373  (Expr *) makeBoolConst(true, false),
2375  }
2376  /* NOT clause? */
2377  else if (is_notclause(clause))
2378  {
2379  Node *arg = (Node *) get_notclausearg((Expr *) clause);
2380 
2381  if (match_index_to_operand(arg, indexcol, index))
2382  {
2383  /* convert to indexkey = FALSE */
2384  op = make_opclause(BooleanEqualOperator, BOOLOID, false,
2385  (Expr *) arg,
2386  (Expr *) makeBoolConst(false, false),
2388  }
2389  }
2390 
2391  /*
2392  * Since we only consider clauses at top level of WHERE, we can convert
2393  * indexkey IS TRUE and indexkey IS FALSE to index searches as well. The
2394  * different meaning for NULL isn't important.
2395  */
2396  else if (clause && IsA(clause, BooleanTest))
2397  {
2398  BooleanTest *btest = (BooleanTest *) clause;
2399  Node *arg = (Node *) btest->arg;
2400 
2401  if (btest->booltesttype == IS_TRUE &&
2402  match_index_to_operand(arg, indexcol, index))
2403  {
2404  /* convert to indexkey = TRUE */
2405  op = make_opclause(BooleanEqualOperator, BOOLOID, false,
2406  (Expr *) arg,
2407  (Expr *) makeBoolConst(true, false),
2409  }
2410  else if (btest->booltesttype == IS_FALSE &&
2411  match_index_to_operand(arg, indexcol, index))
2412  {
2413  /* convert to indexkey = FALSE */
2414  op = make_opclause(BooleanEqualOperator, BOOLOID, false,
2415  (Expr *) arg,
2416  (Expr *) makeBoolConst(false, false),
2418  }
2419  }
2420 
2421  /*
2422  * If we successfully made an operator clause from the given qual, we must
2423  * wrap it in an IndexClause. It's not lossy.
2424  */
2425  if (op)
2426  {
2427  IndexClause *iclause = makeNode(IndexClause);
2428 
2429  iclause->rinfo = rinfo;
2431  iclause->lossy = false;
2432  iclause->indexcol = indexcol;
2433  iclause->indexcols = NIL;
2434  return iclause;
2435  }
2436 
2437  return NULL;
2438 }
Node * makeBoolConst(bool value, bool isnull)
Definition: makefuncs.c:359
static Expr * get_notclausearg(const void *notclause)
Definition: nodeFuncs.h:132
static bool is_notclause(const void *clause)
Definition: nodeFuncs.h:123
@ IS_TRUE
Definition: primnodes.h:1861
@ IS_FALSE
Definition: primnodes.h:1861
BoolTestType booltesttype
Definition: primnodes.h:1868
Expr * arg
Definition: primnodes.h:1867

References arg, BooleanTest::arg, BooleanTest::booltesttype, RestrictInfo::clause, get_notclausearg(), if(), IndexClause::indexcol, IndexClause::indexcols, IndexClause::indexquals, InvalidOid, IS_FALSE, is_notclause(), IS_TRUE, IsA, list_make1, IndexClause::lossy, make_opclause(), make_simple_restrictinfo, makeBoolConst(), makeNode, match_index_to_operand(), NIL, IndexClause::rinfo, and root.

Referenced by indexcol_is_bool_constant_for_query(), and match_clause_to_indexcol().

◆ match_clause_to_index()

static void match_clause_to_index ( PlannerInfo root,
RestrictInfo rinfo,
IndexOptInfo index,
IndexClauseSet clauseset 
)
static

Definition at line 2138 of file indxpath.c.

2142 {
2143  int indexcol;
2144 
2145  /*
2146  * Never match pseudoconstants to indexes. (Normally a match could not
2147  * happen anyway, since a pseudoconstant clause couldn't contain a Var,
2148  * but what if someone builds an expression index on a constant? It's not
2149  * totally unreasonable to do so with a partial index, either.)
2150  */
2151  if (rinfo->pseudoconstant)
2152  return;
2153 
2154  /*
2155  * If clause can't be used as an indexqual because it must wait till after
2156  * some lower-security-level restriction clause, reject it.
2157  */
2158  if (!restriction_is_securely_promotable(rinfo, index->rel))
2159  return;
2160 
2161  /* OK, check each index key column for a match */
2162  for (indexcol = 0; indexcol < index->nkeycolumns; indexcol++)
2163  {
2164  IndexClause *iclause;
2165  ListCell *lc;
2166 
2167  /* Ignore duplicates */
2168  foreach(lc, clauseset->indexclauses[indexcol])
2169  {
2170  iclause = (IndexClause *) lfirst(lc);
2171 
2172  if (iclause->rinfo == rinfo)
2173  return;
2174  }
2175 
2176  /* OK, try to match the clause to the index column */
2177  iclause = match_clause_to_indexcol(root,
2178  rinfo,
2179  indexcol,
2180  index);
2181  if (iclause)
2182  {
2183  /* Success, so record it */
2184  clauseset->indexclauses[indexcol] =
2185  lappend(clauseset->indexclauses[indexcol], iclause);
2186  clauseset->nonempty = true;
2187  return;
2188  }
2189  }
2190 }
static IndexClause * match_clause_to_indexcol(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2257
bool restriction_is_securely_promotable(RestrictInfo *restrictinfo, RelOptInfo *rel)
Definition: restrictinfo.c:431

References IndexClauseSet::indexclauses, lappend(), lfirst, match_clause_to_indexcol(), IndexClauseSet::nonempty, restriction_is_securely_promotable(), IndexClause::rinfo, and root.

Referenced by match_clauses_to_index(), and match_join_clauses_to_index().

◆ match_clause_to_indexcol()

static IndexClause * match_clause_to_indexcol ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2257 of file indxpath.c.

2261 {
2262  IndexClause *iclause;
2263  Expr *clause = rinfo->clause;
2264  Oid opfamily;
2265 
2266  Assert(indexcol < index->nkeycolumns);
2267 
2268  /*
2269  * Historically this code has coped with NULL clauses. That's probably
2270  * not possible anymore, but we might as well continue to cope.
2271  */
2272  if (clause == NULL)
2273  return NULL;
2274 
2275  /* First check for boolean-index cases. */
2276  opfamily = index->opfamily[indexcol];
2277  if (IsBooleanOpfamily(opfamily))
2278  {
2279  iclause = match_boolean_index_clause(root, rinfo, indexcol, index);
2280  if (iclause)
2281  return iclause;
2282  }
2283 
2284  /*
2285  * Clause must be an opclause, funcclause, ScalarArrayOpExpr, or
2286  * RowCompareExpr. Or, if the index supports it, we can handle IS
2287  * NULL/NOT NULL clauses.
2288  */
2289  if (IsA(clause, OpExpr))
2290  {
2291  return match_opclause_to_indexcol(root, rinfo, indexcol, index);
2292  }
2293  else if (IsA(clause, FuncExpr))
2294  {
2295  return match_funcclause_to_indexcol(root, rinfo, indexcol, index);
2296  }
2297  else if (IsA(clause, ScalarArrayOpExpr))
2298  {
2299  return match_saopclause_to_indexcol(root, rinfo, indexcol, index);
2300  }
2301  else if (IsA(clause, RowCompareExpr))
2302  {
2303  return match_rowcompare_to_indexcol(root, rinfo, indexcol, index);
2304  }
2305  else if (index->amsearchnulls && IsA(clause, NullTest))
2306  {
2307  NullTest *nt = (NullTest *) clause;
2308 
2309  if (!nt->argisrow &&
2310  match_index_to_operand((Node *) nt->arg, indexcol, index))
2311  {
2312  iclause = makeNode(IndexClause);
2313  iclause->rinfo = rinfo;
2314  iclause->indexquals = list_make1(rinfo);
2315  iclause->lossy = false;
2316  iclause->indexcol = indexcol;
2317  iclause->indexcols = NIL;
2318  return iclause;
2319  }
2320  }
2321 
2322  return NULL;
2323 }
static IndexClause * match_saopclause_to_indexcol(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2677
static IndexClause * match_opclause_to_indexcol(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2446
static IndexClause * match_rowcompare_to_indexcol(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2745
static IndexClause * match_funcclause_to_indexcol(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2565
Expr * arg
Definition: primnodes.h:1843

References NullTest::arg, Assert(), RestrictInfo::clause, IndexClause::indexcol, IndexClause::indexcols, IndexClause::indexquals, IsA, IsBooleanOpfamily(), list_make1, IndexClause::lossy, makeNode, match_boolean_index_clause(), match_funcclause_to_indexcol(), match_index_to_operand(), match_opclause_to_indexcol(), match_rowcompare_to_indexcol(), match_saopclause_to_indexcol(), NIL, IndexClause::rinfo, and root.

Referenced by match_clause_to_index().

◆ match_clause_to_ordering_op()

static Expr * match_clause_to_ordering_op ( IndexOptInfo index,
int  indexcol,
Expr clause,
Oid  pk_opfamily 
)
static

Definition at line 3184 of file indxpath.c.

3188 {
3189  Oid opfamily;
3190  Oid idxcollation;
3191  Node *leftop,
3192  *rightop;
3193  Oid expr_op;
3194  Oid expr_coll;
3195  Oid sortfamily;
3196  bool commuted;
3197 
3198  Assert(indexcol < index->nkeycolumns);
3199 
3200  opfamily = index->opfamily[indexcol];
3201  idxcollation = index->indexcollations[indexcol];
3202 
3203  /*
3204  * Clause must be a binary opclause.
3205  */
3206  if (!is_opclause(clause))
3207  return NULL;
3208  leftop = get_leftop(clause);
3209  rightop = get_rightop(clause);
3210  if (!leftop || !rightop)
3211  return NULL;
3212  expr_op = ((OpExpr *) clause)->opno;
3213  expr_coll = ((OpExpr *) clause)->inputcollid;
3214 
3215  /*
3216  * We can forget the whole thing right away if wrong collation.
3217  */
3218  if (!IndexCollMatchesExprColl(idxcollation, expr_coll))
3219  return NULL;
3220 
3221  /*
3222  * Check for clauses of the form: (indexkey operator constant) or
3223  * (constant operator indexkey).
3224  */
3225  if (match_index_to_operand(leftop, indexcol, index) &&
3226  !contain_var_clause(rightop) &&
3227  !contain_volatile_functions(rightop))
3228  {
3229  commuted = false;
3230  }
3231  else if (match_index_to_operand(rightop, indexcol, index) &&
3232  !contain_var_clause(leftop) &&
3233  !contain_volatile_functions(leftop))
3234  {
3235  /* Might match, but we need a commuted operator */
3236  expr_op = get_commutator(expr_op);
3237  if (expr_op == InvalidOid)
3238  return NULL;
3239  commuted = true;
3240  }
3241  else
3242  return NULL;
3243 
3244  /*
3245  * Is the (commuted) operator an ordering operator for the opfamily? And
3246  * if so, does it yield the right sorting semantics?
3247  */
3248  sortfamily = get_op_opfamily_sortfamily(expr_op, opfamily);
3249  if (sortfamily != pk_opfamily)
3250  return NULL;
3251 
3252  /* We have a match. Return clause or a commuted version thereof. */
3253  if (commuted)
3254  {
3255  OpExpr *newclause = makeNode(OpExpr);
3256 
3257  /* flat-copy all the fields of clause */
3258  memcpy(newclause, clause, sizeof(OpExpr));
3259 
3260  /* commute it */
3261  newclause->opno = expr_op;
3262  newclause->opfuncid = InvalidOid;
3263  newclause->args = list_make2(rightop, leftop);
3264 
3265  clause = (Expr *) newclause;
3266  }
3267 
3268  return clause;
3269 }
Oid get_op_opfamily_sortfamily(Oid opno, Oid opfamily)
Definition: lsyscache.c:108
static bool is_opclause(const void *clause)
Definition: nodeFuncs.h:74
static Node * get_rightop(const void *clause)
Definition: nodeFuncs.h:93
static Node * get_leftop(const void *clause)
Definition: nodeFuncs.h:81
#define list_make2(x1, x2)
Definition: pg_list.h:214
Oid opno
Definition: primnodes.h:774
List * args
Definition: primnodes.h:792
bool contain_var_clause(Node *node)
Definition: var.c:403

References OpExpr::args, Assert(), contain_var_clause(), contain_volatile_functions(), get_commutator(), get_leftop(), get_op_opfamily_sortfamily(), get_rightop(), IndexCollMatchesExprColl, InvalidOid, is_opclause(), list_make2, makeNode, match_index_to_operand(), and OpExpr::opno.

Referenced by match_pathkeys_to_index().

◆ match_clauses_to_index()

static void match_clauses_to_index ( PlannerInfo root,
List clauses,
IndexOptInfo index,
IndexClauseSet clauseset 
)
static

Definition at line 2105 of file indxpath.c.

2109 {
2110  ListCell *lc;
2111 
2112  foreach(lc, clauses)
2113  {
2114  RestrictInfo *rinfo = lfirst_node(RestrictInfo, lc);
2115 
2116  match_clause_to_index(root, rinfo, index, clauseset);
2117  }
2118 }
static void match_clause_to_index(PlannerInfo *root, RestrictInfo *rinfo, IndexOptInfo *index, IndexClauseSet *clauseset)
Definition: indxpath.c:2138

References lfirst_node, match_clause_to_index(), and root.

Referenced by build_paths_for_OR(), match_eclass_clauses_to_index(), and match_restriction_clauses_to_index().

◆ match_eclass_clauses_to_index()

static void match_eclass_clauses_to_index ( PlannerInfo root,
IndexOptInfo index,
IndexClauseSet clauseset 
)
static

Definition at line 2067 of file indxpath.c.

2069 {
2070  int indexcol;
2071 
2072  /* No work if rel is not in any such ECs */
2073  if (!index->rel->has_eclass_joins)
2074  return;
2075 
2076  for (indexcol = 0; indexcol < index->nkeycolumns; indexcol++)
2077  {
2079  List *clauses;
2080 
2081  /* Generate clauses, skipping any that join to lateral_referencers */
2082  arg.index = index;
2083  arg.indexcol = indexcol;
2085  index->rel,
2087  (void *) &arg,
2088  index->rel->lateral_referencers);
2089 
2090  /*
2091  * We have to check whether the results actually do match the index,
2092  * since for non-btree indexes the EC's equality operators might not
2093  * be in the index opclass (cf ec_member_matches_indexcol).
2094  */
2095  match_clauses_to_index(root, clauses, index, clauseset);
2096  }
2097 }
List * generate_implied_equalities_for_column(PlannerInfo *root, RelOptInfo *rel, ec_matches_callback_type callback, void *callback_arg, Relids prohibited_rels)
Definition: equivclass.c:2956
static bool ec_member_matches_indexcol(PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, EquivalenceMember *em, void *arg)
Definition: indxpath.c:3436

References arg, ec_member_matches_indexcol(), generate_implied_equalities_for_column(), match_clauses_to_index(), and root.

Referenced by create_index_paths().

◆ match_funcclause_to_indexcol()

static IndexClause * match_funcclause_to_indexcol ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2565 of file indxpath.c.

2569 {
2570  FuncExpr *clause = (FuncExpr *) rinfo->clause;
2571  int indexarg;
2572  ListCell *lc;
2573 
2574  /*
2575  * We have no built-in intelligence about function clauses, but if there's
2576  * a planner support function, it might be able to do something. But, to
2577  * cut down on wasted planning cycles, only call the support function if
2578  * at least one argument matches the target index column.
2579  *
2580  * Note that we don't insist on the other arguments being pseudoconstants;
2581  * the support function has to check that. This is to allow cases where
2582  * only some of the other arguments need to be included in the indexqual.
2583  */
2584  indexarg = 0;
2585  foreach(lc, clause->args)
2586  {
2587  Node *op = (Node *) lfirst(lc);
2588 
2589  if (match_index_to_operand(op, indexcol, index))
2590  {
2592  rinfo,
2593  clause->funcid,
2594  indexarg,
2595  indexcol,
2596  index);
2597  }
2598 
2599  indexarg++;
2600  }
2601 
2602  return NULL;
2603 }
static IndexClause * get_index_clause_from_support(PlannerInfo *root, RestrictInfo *rinfo, Oid funcid, int indexarg, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:2611
Oid funcid
Definition: primnodes.h:706
List * args
Definition: primnodes.h:724

References FuncExpr::args, RestrictInfo::clause, FuncExpr::funcid, get_index_clause_from_support(), lfirst, match_index_to_operand(), and root.

Referenced by match_clause_to_indexcol().

◆ match_index_to_operand()

bool match_index_to_operand ( Node operand,
int  indexcol,
IndexOptInfo index 
)

Definition at line 3758 of file indxpath.c.

3761 {
3762  int indkey;
3763 
3764  /*
3765  * Ignore any RelabelType node above the operand. This is needed to be
3766  * able to apply indexscanning in binary-compatible-operator cases. Note:
3767  * we can assume there is at most one RelabelType node;
3768  * eval_const_expressions() will have simplified if more than one.
3769  */
3770  if (operand && IsA(operand, RelabelType))
3771  operand = (Node *) ((RelabelType *) operand)->arg;
3772 
3773  indkey = index->indexkeys[indexcol];
3774  if (indkey != 0)
3775  {
3776  /*
3777  * Simple index column; operand must be a matching Var.
3778  */
3779  if (operand && IsA(operand, Var) &&
3780  index->rel->relid == ((Var *) operand)->varno &&
3781  indkey == ((Var *) operand)->varattno &&
3782  ((Var *) operand)->varnullingrels == NULL)
3783  return true;
3784  }
3785  else
3786  {
3787  /*
3788  * Index expression; find the correct expression. (This search could
3789  * be avoided, at the cost of complicating all the callers of this
3790  * routine; doesn't seem worth it.)
3791  */
3792  ListCell *indexpr_item;
3793  int i;
3794  Node *indexkey;
3795 
3796  indexpr_item = list_head(index->indexprs);
3797  for (i = 0; i < indexcol; i++)
3798  {
3799  if (index->indexkeys[i] == 0)
3800  {
3801  if (indexpr_item == NULL)
3802  elog(ERROR, "wrong number of index expressions");
3803  indexpr_item = lnext(index->indexprs, indexpr_item);
3804  }
3805  }
3806  if (indexpr_item == NULL)
3807  elog(ERROR, "wrong number of index expressions");
3808  indexkey = (Node *) lfirst(indexpr_item);
3809 
3810  /*
3811  * Does it match the operand? Again, strip any relabeling.
3812  */
3813  if (indexkey && IsA(indexkey, RelabelType))
3814  indexkey = (Node *) ((RelabelType *) indexkey)->arg;
3815 
3816  if (equal(indexkey, operand))
3817  return true;
3818  }
3819 
3820  return false;
3821 }
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: primnodes.h:234

References arg, elog, equal(), ERROR, i, IsA, lfirst, list_head(), and lnext().

Referenced by ec_member_matches_indexcol(), expand_indexqual_rowcompare(), get_actual_variable_range(), match_boolean_index_clause(), match_clause_to_indexcol(), match_clause_to_ordering_op(), match_funcclause_to_indexcol(), match_opclause_to_indexcol(), match_rowcompare_to_indexcol(), match_saopclause_to_indexcol(), and relation_has_unique_index_ext().

◆ match_join_clauses_to_index()

static void match_join_clauses_to_index ( PlannerInfo root,
RelOptInfo rel,
IndexOptInfo index,
IndexClauseSet clauseset,
List **  joinorclauses 
)
static

Definition at line 2037 of file indxpath.c.

2041 {
2042  ListCell *lc;
2043 
2044  /* Scan the rel's join clauses */
2045  foreach(lc, rel->joininfo)
2046  {
2047  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
2048 
2049  /* Check if clause can be moved to this rel */
2050  if (!join_clause_is_movable_to(rinfo, rel))
2051  continue;
2052 
2053  /* Potentially usable, so see if it matches the index or is an OR */
2054  if (restriction_is_or_clause(rinfo))
2055  *joinorclauses = lappend(*joinorclauses, rinfo);
2056  else
2057  match_clause_to_index(root, rinfo, index, clauseset);
2058  }
2059 }

References join_clause_is_movable_to(), RelOptInfo::joininfo, lappend(), lfirst, match_clause_to_index(), restriction_is_or_clause(), and root.

Referenced by create_index_paths().

◆ match_opclause_to_indexcol()

static IndexClause * match_opclause_to_indexcol ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2446 of file indxpath.c.

2450 {
2451  IndexClause *iclause;
2452  OpExpr *clause = (OpExpr *) rinfo->clause;
2453  Node *leftop,
2454  *rightop;
2455  Oid expr_op;
2456  Oid expr_coll;
2457  Index index_relid;
2458  Oid opfamily;
2459  Oid idxcollation;
2460 
2461  /*
2462  * Only binary operators need apply. (In theory, a planner support
2463  * function could do something with a unary operator, but it seems
2464  * unlikely to be worth the cycles to check.)
2465  */
2466  if (list_length(clause->args) != 2)
2467  return NULL;
2468 
2469  leftop = (Node *) linitial(clause->args);
2470  rightop = (Node *) lsecond(clause->args);
2471  expr_op = clause->opno;
2472  expr_coll = clause->inputcollid;
2473 
2474  index_relid = index->rel->relid;
2475  opfamily = index->opfamily[indexcol];
2476  idxcollation = index->indexcollations[indexcol];
2477 
2478  /*
2479  * Check for clauses of the form: (indexkey operator constant) or
2480  * (constant operator indexkey). See match_clause_to_indexcol's notes
2481  * about const-ness.
2482  *
2483  * Note that we don't ask the support function about clauses that don't
2484  * have one of these forms. Again, in principle it might be possible to
2485  * do something, but it seems unlikely to be worth the cycles to check.
2486  */
2487  if (match_index_to_operand(leftop, indexcol, index) &&
2488  !bms_is_member(index_relid, rinfo->right_relids) &&
2489  !contain_volatile_functions(rightop))
2490  {
2491  if (IndexCollMatchesExprColl(idxcollation, expr_coll) &&
2492  op_in_opfamily(expr_op, opfamily))
2493  {
2494  iclause = makeNode(IndexClause);
2495  iclause->rinfo = rinfo;
2496  iclause->indexquals = list_make1(rinfo);
2497  iclause->lossy = false;
2498  iclause->indexcol = indexcol;
2499  iclause->indexcols = NIL;
2500  return iclause;
2501  }
2502 
2503  /*
2504  * If we didn't find a member of the index's opfamily, try the support
2505  * function for the operator's underlying function.
2506  */
2507  set_opfuncid(clause); /* make sure we have opfuncid */
2509  rinfo,
2510  clause->opfuncid,
2511  0, /* indexarg on left */
2512  indexcol,
2513  index);
2514  }
2515 
2516  if (match_index_to_operand(rightop, indexcol, index) &&
2517  !bms_is_member(index_relid, rinfo->left_relids) &&
2518  !contain_volatile_functions(leftop))
2519  {
2520  if (IndexCollMatchesExprColl(idxcollation, expr_coll))
2521  {
2522  Oid comm_op = get_commutator(expr_op);
2523 
2524  if (OidIsValid(comm_op) &&
2525  op_in_opfamily(comm_op, opfamily))
2526  {
2527  RestrictInfo *commrinfo;
2528 
2529  /* Build a commuted OpExpr and RestrictInfo */
2530  commrinfo = commute_restrictinfo(rinfo, comm_op);
2531 
2532  /* Make an IndexClause showing that as a derived qual */
2533  iclause = makeNode(IndexClause);
2534  iclause->rinfo = rinfo;
2535  iclause->indexquals = list_make1(commrinfo);
2536  iclause->lossy = false;
2537  iclause->indexcol = indexcol;
2538  iclause->indexcols = NIL;
2539  return iclause;
2540  }
2541  }
2542 
2543  /*
2544  * If we didn't find a member of the index's opfamily, try the support
2545  * function for the operator's underlying function.
2546  */
2547  set_opfuncid(clause); /* make sure we have opfuncid */
2549  rinfo,
2550  clause->opfuncid,
2551  1, /* indexarg on right */
2552  indexcol,
2553  index);
2554  }
2555 
2556  return NULL;
2557 }
unsigned int Index
Definition: c.h:601
void set_opfuncid(OpExpr *opexpr)
Definition: nodeFuncs.c:1868
#define lsecond(l)
Definition: pg_list.h:183
RestrictInfo * commute_restrictinfo(RestrictInfo *rinfo, Oid comm_op)
Definition: restrictinfo.c:359

References OpExpr::args, bms_is_member(), RestrictInfo::clause, commute_restrictinfo(), contain_volatile_functions(), get_commutator(), get_index_clause_from_support(), if(), IndexClause::indexcol, IndexCollMatchesExprColl, IndexClause::indexcols, IndexClause::indexquals, linitial, list_length(), list_make1, IndexClause::lossy, lsecond, makeNode, match_index_to_operand(), NIL, OidIsValid, op_in_opfamily(), OpExpr::opno, IndexClause::rinfo, root, and set_opfuncid().

Referenced by match_clause_to_indexcol().

◆ match_pathkeys_to_index()

static void match_pathkeys_to_index ( IndexOptInfo index,
List pathkeys,
List **  orderby_clauses_p,
List **  clause_columns_p 
)
static

Definition at line 3074 of file indxpath.c.

3077 {
3078  ListCell *lc1;
3079 
3080  *orderby_clauses_p = NIL; /* set default results */
3081  *clause_columns_p = NIL;
3082 
3083  /* Only indexes with the amcanorderbyop property are interesting here */
3084  if (!index->amcanorderbyop)
3085  return;
3086 
3087  foreach(lc1, pathkeys)
3088  {
3089  PathKey *pathkey = (PathKey *) lfirst(lc1);
3090  bool found = false;
3091  ListCell *lc2;
3092 
3093 
3094  /* Pathkey must request default sort order for the target opfamily */
3095  if (pathkey->pk_strategy != BTLessStrategyNumber ||
3096  pathkey->pk_nulls_first)
3097  return;
3098 
3099  /* If eclass is volatile, no hope of using an indexscan */
3100  if (pathkey->pk_eclass->ec_has_volatile)
3101  return;
3102 
3103  /*
3104  * Try to match eclass member expression(s) to index. Note that child
3105  * EC members are considered, but only when they belong to the target
3106  * relation. (Unlike regular members, the same expression could be a
3107  * child member of more than one EC. Therefore, the same index could
3108  * be considered to match more than one pathkey list, which is OK
3109  * here. See also get_eclass_for_sort_expr.)
3110  */
3111  foreach(lc2, pathkey->pk_eclass->ec_members)
3112  {
3113  EquivalenceMember *member = (EquivalenceMember *) lfirst(lc2);
3114  int indexcol;
3115 
3116  /* No possibility of match if it references other relations */
3117  if (!bms_equal(member->em_relids, index->rel->relids))
3118  continue;
3119 
3120  /*
3121  * We allow any column of the index to match each pathkey; they
3122  * don't have to match left-to-right as you might expect. This is
3123  * correct for GiST, and it doesn't matter for SP-GiST because
3124  * that doesn't handle multiple columns anyway, and no other
3125  * existing AMs support amcanorderbyop. We might need different
3126  * logic in future for other implementations.
3127  */
3128  for (indexcol = 0; indexcol < index->nkeycolumns; indexcol++)
3129  {
3130  Expr *expr;
3131 
3133  indexcol,
3134  member->em_expr,
3135  pathkey->pk_opfamily);
3136  if (expr)
3137  {
3138  *orderby_clauses_p = lappend(*orderby_clauses_p, expr);
3139  *clause_columns_p = lappend_int(*clause_columns_p, indexcol);
3140  found = true;
3141  break;
3142  }
3143  }
3144 
3145  if (found) /* don't want to look at remaining members */
3146  break;
3147  }
3148 
3149  /*
3150  * Return the matches found so far when this pathkey couldn't be
3151  * matched to the index.
3152  */
3153  if (!found)
3154  return;
3155  }
3156 }
static Expr * match_clause_to_ordering_op(IndexOptInfo *index, int indexcol, Expr *clause, Oid pk_opfamily)
Definition: indxpath.c:3184
bool pk_nulls_first
Definition: pathnodes.h:1463
int pk_strategy
Definition: pathnodes.h:1462
Oid pk_opfamily
Definition: pathnodes.h:1461

References bms_equal(), BTLessStrategyNumber, EquivalenceMember::em_expr, EquivalenceMember::em_relids, lappend(), lappend_int(), lfirst, match_clause_to_ordering_op(), NIL, PathKey::pk_nulls_first, PathKey::pk_opfamily, and PathKey::pk_strategy.

Referenced by build_index_paths().

◆ match_restriction_clauses_to_index()

static void match_restriction_clauses_to_index ( PlannerInfo root,
IndexOptInfo index,
IndexClauseSet clauseset 
)
static

Definition at line 2022 of file indxpath.c.

2025 {
2026  /* We can ignore clauses that are implied by the index predicate */
2027  match_clauses_to_index(root, index->indrestrictinfo, index, clauseset);
2028 }

References match_clauses_to_index(), and root.

Referenced by create_index_paths().

◆ match_rowcompare_to_indexcol()

static IndexClause * match_rowcompare_to_indexcol ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2745 of file indxpath.c.

2749 {
2750  RowCompareExpr *clause = (RowCompareExpr *) rinfo->clause;
2751  Index index_relid;
2752  Oid opfamily;
2753  Oid idxcollation;
2754  Node *leftop,
2755  *rightop;
2756  bool var_on_left;
2757  Oid expr_op;
2758  Oid expr_coll;
2759 
2760  /* Forget it if we're not dealing with a btree index */
2761  if (index->relam != BTREE_AM_OID)
2762  return NULL;
2763 
2764  index_relid = index->rel->relid;
2765  opfamily = index->opfamily[indexcol];
2766  idxcollation = index->indexcollations[indexcol];
2767 
2768  /*
2769  * We could do the matching on the basis of insisting that the opfamily
2770  * shown in the RowCompareExpr be the same as the index column's opfamily,
2771  * but that could fail in the presence of reverse-sort opfamilies: it'd be
2772  * a matter of chance whether RowCompareExpr had picked the forward or
2773  * reverse-sort family. So look only at the operator, and match if it is
2774  * a member of the index's opfamily (after commutation, if the indexkey is
2775  * on the right). We'll worry later about whether any additional
2776  * operators are matchable to the index.
2777  */
2778  leftop = (Node *) linitial(clause->largs);
2779  rightop = (Node *) linitial(clause->rargs);
2780  expr_op = linitial_oid(clause->opnos);
2781  expr_coll = linitial_oid(clause->inputcollids);
2782 
2783  /* Collations must match, if relevant */
2784  if (!IndexCollMatchesExprColl(idxcollation, expr_coll))
2785  return NULL;
2786 
2787  /*
2788  * These syntactic tests are the same as in match_opclause_to_indexcol()
2789  */
2790  if (match_index_to_operand(leftop, indexcol, index) &&
2791  !bms_is_member(index_relid, pull_varnos(root, rightop)) &&
2792  !contain_volatile_functions(rightop))
2793  {
2794  /* OK, indexkey is on left */
2795  var_on_left = true;
2796  }
2797  else if (match_index_to_operand(rightop, indexcol, index) &&
2798  !bms_is_member(index_relid, pull_varnos(root, leftop)) &&
2799  !contain_volatile_functions(leftop))
2800  {
2801  /* indexkey is on right, so commute the operator */
2802  expr_op = get_commutator(expr_op);
2803  if (expr_op == InvalidOid)
2804  return NULL;
2805  var_on_left = false;
2806  }
2807  else
2808  return NULL;
2809 
2810  /* We're good if the operator is the right type of opfamily member */
2811  switch (get_op_opfamily_strategy(expr_op, opfamily))
2812  {
2813  case BTLessStrategyNumber:
2818  rinfo,
2819  indexcol,
2820  index,
2821  expr_op,
2822  var_on_left);
2823  }
2824 
2825  return NULL;
2826 }
static IndexClause * expand_indexqual_rowcompare(PlannerInfo *root, RestrictInfo *rinfo, int indexcol, IndexOptInfo *index, Oid expr_op, bool var_on_left)
Definition: indxpath.c:2852

References bms_is_member(), BTGreaterEqualStrategyNumber, BTGreaterStrategyNumber, BTLessEqualStrategyNumber, BTLessStrategyNumber, RestrictInfo::clause, contain_volatile_functions(), expand_indexqual_rowcompare(), get_commutator(), get_op_opfamily_strategy(), if(), IndexCollMatchesExprColl, InvalidOid, RowCompareExpr::largs, linitial, linitial_oid, match_index_to_operand(), pull_varnos(), RowCompareExpr::rargs, and root.

Referenced by match_clause_to_indexcol().

◆ match_saopclause_to_indexcol()

static IndexClause * match_saopclause_to_indexcol ( PlannerInfo root,
RestrictInfo rinfo,
int  indexcol,
IndexOptInfo index 
)
static

Definition at line 2677 of file indxpath.c.

2681 {
2682  ScalarArrayOpExpr *saop = (ScalarArrayOpExpr *) rinfo->clause;
2683  Node *leftop,
2684  *rightop;
2685  Relids right_relids;
2686  Oid expr_op;
2687  Oid expr_coll;
2688  Index index_relid;
2689  Oid opfamily;
2690  Oid idxcollation;
2691 
2692  /* We only accept ANY clauses, not ALL */
2693  if (!saop->useOr)
2694  return NULL;
2695  leftop = (Node *) linitial(saop->args);
2696  rightop = (Node *) lsecond(saop->args);
2697  right_relids = pull_varnos(root, rightop);
2698  expr_op = saop->opno;
2699  expr_coll = saop->inputcollid;
2700 
2701  index_relid = index->rel->relid;
2702  opfamily = index->opfamily[indexcol];
2703  idxcollation = index->indexcollations[indexcol];
2704 
2705  /*
2706  * We must have indexkey on the left and a pseudo-constant array argument.
2707  */
2708  if (match_index_to_operand(leftop, indexcol, index) &&
2709  !bms_is_member(index_relid, right_relids) &&
2710  !contain_volatile_functions(rightop))
2711  {
2712  if (IndexCollMatchesExprColl(idxcollation, expr_coll) &&
2713  op_in_opfamily(expr_op, opfamily))
2714  {
2715  IndexClause *iclause = makeNode(IndexClause);
2716 
2717  iclause->rinfo = rinfo;
2718  iclause->indexquals = list_make1(rinfo);
2719  iclause->lossy = false;
2720  iclause->indexcol = indexcol;
2721  iclause->indexcols = NIL;
2722  return iclause;
2723  }
2724 
2725  /*
2726  * We do not currently ask support functions about ScalarArrayOpExprs,
2727  * though in principle we could.
2728  */
2729  }
2730 
2731  return NULL;
2732 }

References ScalarArrayOpExpr::args, bms_is_member(), RestrictInfo::clause, contain_volatile_functions(), if(), IndexClause::indexcol, IndexCollMatchesExprColl, IndexClause::indexcols, IndexClause::indexquals, linitial, list_make1, IndexClause::lossy, lsecond, makeNode, match_index_to_operand(), NIL, op_in_opfamily(), ScalarArrayOpExpr::opno, pull_varnos(), IndexClause::rinfo, root, and ScalarArrayOpExpr::useOr.

Referenced by match_clause_to_indexcol().

◆ path_usage_comparator()

static int path_usage_comparator ( const void *  a,
const void *  b 
)
static

Definition at line 1547 of file indxpath.c.

1548 {
1549  PathClauseUsage *pa = *(PathClauseUsage *const *) a;
1550  PathClauseUsage *pb = *(PathClauseUsage *const *) b;
1551  Cost acost;
1552  Cost bcost;
1553  Selectivity aselec;
1554  Selectivity bselec;
1555 
1556  cost_bitmap_tree_node(pa->path, &acost, &aselec);
1557  cost_bitmap_tree_node(pb->path, &bcost, &bselec);
1558 
1559  /*
1560  * If costs are the same, sort by selectivity.
1561  */
1562  if (acost < bcost)
1563  return -1;
1564  if (acost > bcost)
1565  return 1;
1566 
1567  if (aselec < bselec)
1568  return -1;
1569  if (aselec > bselec)
1570  return 1;
1571 
1572  return 0;
1573 }
int b
Definition: isn.c:70
int a
Definition: isn.c:69

References a, b, cost_bitmap_tree_node(), and PathClauseUsage::path.

Referenced by choose_bitmap_and().

◆ relation_has_unique_index_ext()

bool relation_has_unique_index_ext ( PlannerInfo root,
RelOptInfo rel,
List restrictlist,
List exprlist,
List oprlist,
List **  extra_clauses 
)

Definition at line 3509 of file indxpath.c.

3513 {
3514  ListCell *ic;
3515 
3516  Assert(list_length(exprlist) == list_length(oprlist));
3517 
3518  /* Short-circuit if no indexes... */
3519  if (rel->indexlist == NIL)
3520  return false;
3521 
3522  /*
3523  * Examine the rel's restriction clauses for usable var = const clauses
3524  * that we can add to the restrictlist.
3525  */
3526  foreach(ic, rel->baserestrictinfo)
3527  {
3528  RestrictInfo *restrictinfo = (RestrictInfo *) lfirst(ic);
3529 
3530  /*
3531  * Note: can_join won't be set for a restriction clause, but
3532  * mergeopfamilies will be if it has a mergejoinable operator and
3533  * doesn't contain volatile functions.
3534  */
3535  if (restrictinfo->mergeopfamilies == NIL)
3536  continue; /* not mergejoinable */
3537 
3538  /*
3539  * The clause certainly doesn't refer to anything but the given rel.
3540  * If either side is pseudoconstant then we can use it.
3541  */
3542  if (bms_is_empty(restrictinfo->left_relids))
3543  {
3544  /* righthand side is inner */
3545  restrictinfo->outer_is_left = true;
3546  }
3547  else if (bms_is_empty(restrictinfo->right_relids))
3548  {
3549  /* lefthand side is inner */
3550  restrictinfo->outer_is_left = false;
3551  }
3552  else
3553  continue;
3554 
3555  /* OK, add to list */
3556  restrictlist = lappend(restrictlist, restrictinfo);
3557  }
3558 
3559  /* Short-circuit the easy case */
3560  if (restrictlist == NIL && exprlist == NIL)
3561  return false;
3562 
3563  /* Examine each index of the relation ... */
3564  foreach(ic, rel->indexlist)
3565  {
3566  IndexOptInfo *ind = (IndexOptInfo *) lfirst(ic);
3567  int c;
3568  List *exprs = NIL;
3569 
3570  /*
3571  * If the index is not unique, or not immediately enforced, or if it's
3572  * a partial index, it's useless here. We're unable to make use of
3573  * predOK partial unique indexes due to the fact that
3574  * check_index_predicates() also makes use of join predicates to
3575  * determine if the partial index is usable. Here we need proofs that
3576  * hold true before any joins are evaluated.
3577  */
3578  if (!ind->unique || !ind->immediate || ind->indpred != NIL)
3579  continue;
3580 
3581  /*
3582  * Try to find each index column in the lists of conditions. This is
3583  * O(N^2) or worse, but we expect all the lists to be short.
3584  */
3585  for (c = 0; c < ind->nkeycolumns; c++)
3586  {
3587  bool matched = false;
3588  ListCell *lc;
3589  ListCell *lc2;
3590 
3591  foreach(lc, restrictlist)
3592  {
3593  RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);
3594  Node *rexpr;
3595 
3596  /*
3597  * The condition's equality operator must be a member of the
3598  * index opfamily, else it is not asserting the right kind of
3599  * equality behavior for this index. We check this first
3600  * since it's probably cheaper than match_index_to_operand().
3601  */
3602  if (!list_member_oid(rinfo->mergeopfamilies, ind->opfamily[c]))
3603  continue;
3604 
3605  /*
3606  * XXX at some point we may need to check collations here too.
3607  * For the moment we assume all collations reduce to the same
3608  * notion of equality.
3609  */
3610 
3611  /* OK, see if the condition operand matches the index key */
3612  if (rinfo->outer_is_left)
3613  rexpr = get_rightop(rinfo->clause);
3614  else
3615  rexpr = get_leftop(rinfo->clause);
3616 
3617  if (match_index_to_operand(rexpr, c, ind))
3618  {
3619  matched = true; /* column is unique */
3620 
3621  if (bms_membership(rinfo->clause_relids) == BMS_SINGLETON)
3622  {
3623  MemoryContext oldMemCtx =
3624  MemoryContextSwitchTo(root->planner_cxt);
3625 
3626  /*
3627  * Add filter clause into a list allowing caller to
3628  * know if uniqueness have made not only by join
3629  * clauses.
3630  */
3631  Assert(bms_is_empty(rinfo->left_relids) ||
3632  bms_is_empty(rinfo->right_relids));
3633  if (extra_clauses)
3634  exprs = lappend(exprs, rinfo);
3635  MemoryContextSwitchTo(oldMemCtx);
3636  }
3637 
3638  break;
3639  }
3640  }
3641 
3642  if (matched)
3643  continue;
3644 
3645  forboth(lc, exprlist, lc2, oprlist)
3646  {
3647  Node *expr = (Node *) lfirst(lc);
3648  Oid opr = lfirst_oid(lc2);
3649 
3650  /* See if the expression matches the index key */
3651  if (!match_index_to_operand(expr, c, ind))
3652  continue;
3653 
3654  /*
3655  * The equality operator must be a member of the index
3656  * opfamily, else it is not asserting the right kind of
3657  * equality behavior for this index. We assume the caller
3658  * determined it is an equality operator, so we don't need to
3659  * check any more tightly than this.
3660  */
3661  if (!op_in_opfamily(opr, ind->opfamily[c]))
3662  continue;
3663 
3664  /*
3665  * XXX at some point we may need to check collations here too.
3666  * For the moment we assume all collations reduce to the same
3667  * notion of equality.
3668  */
3669 
3670  matched = true; /* column is unique */
3671  break;
3672  }
3673 
3674  if (!matched)
3675  break; /* no match; this index doesn't help us */
3676  }
3677 
3678  /* Matched all key columns of this index? */
3679  if (c == ind->nkeycolumns)
3680  {
3681  if (extra_clauses)
3682  *extra_clauses = exprs;
3683  return true;
3684  }
3685  }
3686 
3687  return false;
3688 }
BMS_Membership bms_membership(const Bitmapset *a)
Definition: bitmapset.c:781
@ BMS_SINGLETON
Definition: bitmapset.h:72
#define forboth(cell1, list1, cell2, list2)
Definition: pg_list.h:518
char * c
MemoryContextSwitchTo(old_ctx)

References Assert(), RelOptInfo::baserestrictinfo, bms_is_empty, bms_membership(), BMS_SINGLETON, RestrictInfo::clause, forboth, get_leftop(), get_rightop(), RelOptInfo::indexlist, lappend(), lfirst, lfirst_oid, list_length(), list_member_oid(), match_index_to_operand(), MemoryContextSwitchTo(), NIL, op_in_opfamily(), and root.

Referenced by rel_is_distinct_for(), and relation_has_unique_index_for().

◆ relation_has_unique_index_for()

bool relation_has_unique_index_for ( PlannerInfo root,
RelOptInfo rel,
List restrictlist,
List exprlist,
List oprlist 
)

Definition at line 3494 of file indxpath.c.

3497 {
3498  return relation_has_unique_index_ext(root, rel, restrictlist,
3499  exprlist, oprlist, NULL);
3500 }
bool relation_has_unique_index_ext(PlannerInfo *root, RelOptInfo *rel, List *restrictlist, List *exprlist, List *oprlist, List **extra_clauses)
Definition: indxpath.c:3509

References relation_has_unique_index_ext(), and root.

Referenced by create_unique_path().