PostgreSQL Source Code  git master
paths.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * paths.h
4  * prototypes for various files in optimizer/path
5  *
6  *
7  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/optimizer/paths.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef PATHS_H
15 #define PATHS_H
16 
17 #include "nodes/pathnodes.h"
18 
19 
20 /*
21  * allpaths.c
22  */
23 extern PGDLLIMPORT bool enable_geqo;
24 extern PGDLLIMPORT int geqo_threshold;
28 
29 /* Hook for plugins to get control in set_rel_pathlist() */
31  RelOptInfo *rel,
32  Index rti,
33  RangeTblEntry *rte);
35 
36 /* Hook for plugins to get control in add_paths_to_joinrel() */
38  RelOptInfo *joinrel,
39  RelOptInfo *outerrel,
40  RelOptInfo *innerrel,
41  JoinType jointype,
42  JoinPathExtraData *extra);
44 
45 /* Hook for plugins to replace standard_join_search() */
46 typedef RelOptInfo *(*join_search_hook_type) (PlannerInfo *root,
47  int levels_needed,
48  List *initial_rels);
50 
51 
52 extern RelOptInfo *make_one_rel(PlannerInfo *root, List *joinlist);
53 extern RelOptInfo *standard_join_search(PlannerInfo *root, int levels_needed,
54  List *initial_rels);
55 
57  bool override_rows);
59  bool override_rows);
60 extern int compute_parallel_worker(RelOptInfo *rel, double heap_pages,
61  double index_pages, int max_workers);
63  Path *bitmapqual);
65  RelOptInfo *rel);
66 
67 /*
68  * indxpath.c
69  * routines to generate index paths
70  */
71 extern void create_index_paths(PlannerInfo *root, RelOptInfo *rel);
73  List *restrictlist,
74  List *exprlist, List *oprlist);
76  List *restrictlist, List *exprlist,
77  List *oprlist, List **extra_clauses);
80  int indexcol);
81 extern bool match_index_to_operand(Node *operand, int indexcol,
84 
85 /*
86  * tidpath.c
87  * routines to generate tid paths
88  */
90 
91 /*
92  * joinpath.c
93  * routines to create join paths
94  */
95 extern void add_paths_to_joinrel(PlannerInfo *root, RelOptInfo *joinrel,
96  RelOptInfo *outerrel, RelOptInfo *innerrel,
97  JoinType jointype, SpecialJoinInfo *sjinfo,
98  List *restrictlist);
99 
100 /*
101  * joinrels.c
102  * routines to determine which relations to join
103  */
104 extern void join_search_one_level(PlannerInfo *root, int level);
106  RelOptInfo *rel1, RelOptInfo *rel2);
108  SpecialJoinInfo *sjinfo,
109  List **pushed_down_joins);
111  RelOptInfo *rel1, RelOptInfo *rel2);
112 extern bool have_dangerous_phv(PlannerInfo *root,
113  Relids outer_relids, Relids inner_params);
114 extern void mark_dummy_rel(RelOptInfo *rel);
115 extern void init_dummy_sjinfo(SpecialJoinInfo *sjinfo, Relids left_relids,
116  Relids right_relids);
117 
118 /*
119  * equivclass.c
120  * routines for managing EquivalenceClasses
121  */
123  RelOptInfo *rel,
124  EquivalenceClass *ec,
125  EquivalenceMember *em,
126  void *arg);
127 
129  RestrictInfo **p_restrictinfo,
130  JoinDomain *jdomain);
131 extern Expr *canonicalize_ec_expression(Expr *expr,
132  Oid req_type, Oid req_collation);
135  Expr *expr,
136  List *opfamilies,
137  Oid opcintype,
138  Oid collation,
139  Index sortref,
140  Relids rel,
141  bool create_it);
143  Expr *expr,
144  Relids relids);
146  EquivalenceClass *ec,
147  List *exprs,
148  Relids relids,
149  bool require_parallel_safe);
151  EquivalenceClass *ec,
152  bool require_parallel_safe);
155  Relids join_relids,
156  Relids outer_relids,
157  RelOptInfo *inner_rel,
158  SpecialJoinInfo *sjinfo);
160  List *eclasses,
161  Relids join_relids,
162  Relids outer_relids,
163  RelOptInfo *inner_rel);
164 extern bool exprs_known_equal(PlannerInfo *root, Node *item1, Node *item2);
166  ForeignKeyOptInfo *fkinfo,
167  int colno);
169  EquivalenceMember *em);
171  AppendRelInfo *appinfo,
172  RelOptInfo *parent_rel,
173  RelOptInfo *child_rel);
175  int nappinfos,
176  AppendRelInfo **appinfos,
177  RelOptInfo *parent_joinrel,
178  RelOptInfo *child_joinrel);
180  RelOptInfo *child_rel,
181  List *child_tlist,
182  List *setop_pathkeys);
184  RelOptInfo *rel,
186  void *callback_arg,
187  Relids prohibited_rels);
189  RelOptInfo *rel1, RelOptInfo *rel2);
191  RelOptInfo *rel1);
194  RelOptInfo *rel);
195 extern bool is_redundant_derived_clause(RestrictInfo *rinfo, List *clauselist);
197  List *indexclauses);
198 
199 /*
200  * pathkeys.c
201  * utilities for matching and building path keys
202  */
203 typedef enum
204 {
205  PATHKEYS_EQUAL, /* pathkeys are identical */
206  PATHKEYS_BETTER1, /* pathkey 1 is a superset of pathkey 2 */
207  PATHKEYS_BETTER2, /* vice versa */
208  PATHKEYS_DIFFERENT, /* neither pathkey includes the other */
210 
211 extern PathKeysComparison compare_pathkeys(List *keys1, List *keys2);
212 extern bool pathkeys_contained_in(List *keys1, List *keys2);
213 extern bool pathkeys_count_contained_in(List *keys1, List *keys2, int *n_common);
215 extern Path *get_cheapest_path_for_pathkeys(List *paths, List *pathkeys,
216  Relids required_outer,
217  CostSelector cost_criterion,
218  bool require_parallel_safe);
220  List *pathkeys,
221  Relids required_outer,
222  double fraction);
225  ScanDirection scandir);
227  ScanDirection scandir, bool *partialkeys);
229  Oid opno,
230  Relids rel, bool create_it);
232  List *subquery_pathkeys,
233  List *subquery_tlist);
235  RelOptInfo *joinrel,
236  JoinType jointype,
237  List *outer_pathkeys);
239  List *sortclauses,
240  List *tlist);
242  List **sortclauses,
243  List *tlist,
244  bool remove_redundant,
245  bool *sortable);
247  RestrictInfo *restrictinfo);
249  RestrictInfo *restrictinfo);
251  List *pathkeys,
252  List *restrictinfos);
254  List *mergeclauses,
255  RelOptInfo *joinrel);
257  List *mergeclauses,
258  List *outer_pathkeys);
260  List *mergeclauses,
261  List *pathkeys);
263  RelOptInfo *rel,
264  List *pathkeys);
265 extern bool has_useful_pathkeys(PlannerInfo *root, RelOptInfo *rel);
266 extern List *append_pathkeys(List *target, List *source);
268  EquivalenceClass *eclass, Oid opfamily,
269  int strategy, bool nulls_first);
271  List *live_childrels);
272 
273 #endif /* PATHS_H */
#define PGDLLIMPORT
Definition: c.h:1316
unsigned char bool
Definition: c.h:456
unsigned int Index
Definition: c.h:614
JoinType
Definition: nodes.h:288
CostSelector
Definition: pathnodes.h:37
bool exprs_known_equal(PlannerInfo *root, Node *item1, Node *item2)
Definition: equivclass.c:2465
List * build_join_pathkeys(PlannerInfo *root, RelOptInfo *joinrel, JoinType jointype, List *outer_pathkeys)
Definition: pathkeys.c:1309
List * get_useful_group_keys_orderings(PlannerInfo *root, Path *path)
Definition: pathkeys.c:485
List * build_expression_pathkey(PlannerInfo *root, Expr *expr, Oid opno, Relids rel, bool create_it)
Definition: pathkeys.c:1015
EquivalenceMember * find_ec_member_matching_expr(EquivalenceClass *ec, Expr *expr, Relids relids)
Definition: equivclass.c:771
void add_child_rel_equivalences(PlannerInfo *root, AppendRelInfo *appinfo, RelOptInfo *parent_rel, RelOptInfo *child_rel)
Definition: equivclass.c:2647
bool is_redundant_with_indexclauses(RestrictInfo *rinfo, List *indexclauses)
Definition: equivclass.c:3308
void generate_base_implied_equalities(PlannerInfo *root)
Definition: equivclass.c:1044
PGDLLIMPORT int geqo_threshold
Definition: allpaths.c:80
void generate_partitionwise_join_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: allpaths.c:4303
RelOptInfo * standard_join_search(PlannerInfo *root, int levels_needed, List *initial_rels)
Definition: allpaths.c:3423
void join_search_one_level(PlannerInfo *root, int level)
Definition: joinrels.c:72
RestrictInfo * find_derived_clause_for_ec_member(EquivalenceClass *ec, EquivalenceMember *em)
Definition: equivclass.c:2607
List * make_inner_pathkeys_for_merge(PlannerInfo *root, List *mergeclauses, List *outer_pathkeys)
Definition: pathkeys.c:1838
PGDLLIMPORT set_rel_pathlist_hook_type set_rel_pathlist_hook
Definition: allpaths.c:85
Path * get_cheapest_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, CostSelector cost_criterion, bool require_parallel_safe)
Definition: pathkeys.c:635
bool pathkeys_count_contained_in(List *keys1, List *keys2, int *n_common)
Definition: pathkeys.c:573
Expr * canonicalize_ec_expression(Expr *expr, Oid req_type, Oid req_collation)
Definition: equivclass.c:472
bool relation_can_be_sorted_early(PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, bool require_parallel_safe)
Definition: equivclass.c:933
List * find_mergeclauses_for_outer_pathkeys(PlannerInfo *root, List *pathkeys, List *restrictinfos)
Definition: pathkeys.c:1527
void add_paths_to_joinrel(PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *outerrel, RelOptInfo *innerrel, JoinType jointype, SpecialJoinInfo *sjinfo, List *restrictlist)
Definition: joinpath.c:124
PGDLLIMPORT bool enable_group_by_reordering
Definition: pathkeys.c:31
bool has_useful_pathkeys(PlannerInfo *root, RelOptInfo *rel)
Definition: pathkeys.c:2261
Relids add_outer_joins_to_relids(PlannerInfo *root, Relids input_relids, SpecialJoinInfo *sjinfo, List **pushed_down_joins)
Definition: joinrels.c:801
List * append_pathkeys(List *target, List *source)
Definition: pathkeys.c:106
void(* set_join_pathlist_hook_type)(PlannerInfo *root, RelOptInfo *joinrel, RelOptInfo *outerrel, RelOptInfo *innerrel, JoinType jointype, JoinPathExtraData *extra)
Definition: paths.h:37
void check_index_predicates(PlannerInfo *root, RelOptInfo *rel)
Definition: indxpath.c:3244
List * truncate_useless_pathkeys(PlannerInfo *root, RelOptInfo *rel, List *pathkeys)
Definition: pathkeys.c:2215
bool process_equivalence(PlannerInfo *root, RestrictInfo **p_restrictinfo, JoinDomain *jdomain)
Definition: equivclass.c:118
RelOptInfo *(* join_search_hook_type)(PlannerInfo *root, int levels_needed, List *initial_rels)
Definition: paths.h:46
int compute_parallel_worker(RelOptInfo *rel, double heap_pages, double index_pages, int max_workers)
Definition: allpaths.c:4215
void generate_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_rows)
Definition: allpaths.c:3064
List * generate_join_implied_equalities_for_ecs(PlannerInfo *root, List *eclasses, Relids join_relids, Relids outer_relids, RelOptInfo *inner_rel)
Definition: equivclass.c:1492
List * trim_mergeclauses_for_inner_pathkeys(PlannerInfo *root, List *mergeclauses, List *pathkeys)
Definition: pathkeys.c:1941
void(* set_rel_pathlist_hook_type)(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
Definition: paths.h:30
List * select_outer_pathkeys_for_merge(PlannerInfo *root, List *mergeclauses, RelOptInfo *joinrel)
Definition: pathkeys.c:1642
void update_mergeclause_eclasses(PlannerInfo *root, RestrictInfo *restrictinfo)
Definition: pathkeys.c:1493
bool relation_has_unique_index_for(PlannerInfo *root, RelOptInfo *rel, List *restrictlist, List *exprlist, List *oprlist)
Definition: indxpath.c:3440
PGDLLIMPORT int min_parallel_table_scan_size
Definition: allpaths.c:81
List * build_index_pathkeys(PlannerInfo *root, IndexOptInfo *index, ScanDirection scandir)
Definition: pathkeys.c:755
EquivalenceClass * get_eclass_for_sort_expr(PlannerInfo *root, Expr *expr, List *opfamilies, Oid opcintype, Oid collation, Index sortref, Relids rel, bool create_it)
Definition: equivclass.c:587
List * generate_join_implied_equalities(PlannerInfo *root, Relids join_relids, Relids outer_relids, RelOptInfo *inner_rel, SpecialJoinInfo *sjinfo)
Definition: equivclass.c:1392
bool have_relevant_eclass_joinclause(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
Definition: equivclass.c:3103
void create_index_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: indxpath.c:234
RelOptInfo * make_join_rel(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
Definition: joinrels.c:704
List * generate_implied_equalities_for_column(PlannerInfo *root, RelOptInfo *rel, ec_matches_callback_type callback, void *callback_arg, Relids prohibited_rels)
Definition: equivclass.c:2971
List * make_pathkeys_for_sortclauses_extended(PlannerInfo *root, List **sortclauses, List *tlist, bool remove_redundant, bool *sortable)
Definition: pathkeys.c:1384
PathKey * make_canonical_pathkey(PlannerInfo *root, EquivalenceClass *eclass, Oid opfamily, int strategy, bool nulls_first)
Definition: pathkeys.c:55
void generate_useful_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_rows)
Definition: allpaths.c:3202
void mark_dummy_rel(RelOptInfo *rel)
Definition: joinrels.c:1381
bool have_dangerous_phv(PlannerInfo *root, Relids outer_relids, Relids inner_params)
Definition: joinrels.c:1304
void add_setop_child_rel_equivalences(PlannerInfo *root, RelOptInfo *child_rel, List *child_tlist, List *setop_pathkeys)
Definition: equivclass.c:2899
Path * get_cheapest_parallel_safe_total_inner(List *paths)
Definition: pathkeys.c:714
void reconsider_outer_join_clauses(PlannerInfo *root)
Definition: equivclass.c:2008
bool have_join_order_restriction(PlannerInfo *root, RelOptInfo *rel1, RelOptInfo *rel2)
Definition: joinrels.c:1071
bool eclass_useful_for_merging(PlannerInfo *root, EquivalenceClass *eclass, RelOptInfo *rel)
Definition: equivclass.c:3223
List * make_pathkeys_for_sortclauses(PlannerInfo *root, List *sortclauses, List *tlist)
Definition: pathkeys.c:1347
PGDLLIMPORT int min_parallel_index_scan_size
Definition: allpaths.c:82
void add_child_join_rel_equivalences(PlannerInfo *root, int nappinfos, AppendRelInfo **appinfos, RelOptInfo *parent_joinrel, RelOptInfo *child_joinrel)
Definition: equivclass.c:2769
List * convert_subquery_pathkeys(PlannerInfo *root, RelOptInfo *rel, List *subquery_pathkeys, List *subquery_tlist)
Definition: pathkeys.c:1069
EquivalenceClass * match_eclasses_to_foreign_key_col(PlannerInfo *root, ForeignKeyOptInfo *fkinfo, int colno)
Definition: equivclass.c:2516
void initialize_mergeclause_eclasses(PlannerInfo *root, RestrictInfo *restrictinfo)
Definition: pathkeys.c:1446
bool match_index_to_operand(Node *operand, int indexcol, IndexOptInfo *index)
Definition: indxpath.c:3704
void init_dummy_sjinfo(SpecialJoinInfo *sjinfo, Relids left_relids, Relids right_relids)
Definition: joinrels.c:669
Path * get_cheapest_fractional_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, double fraction)
Definition: pathkeys.c:681
bool is_redundant_derived_clause(RestrictInfo *rinfo, List *clauselist)
Definition: equivclass.c:3281
void create_partial_bitmap_paths(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual)
Definition: allpaths.c:4179
bool pathkeys_contained_in(List *keys1, List *keys2)
Definition: pathkeys.c:341
void create_tidscan_paths(PlannerInfo *root, RelOptInfo *rel)
Definition: tidpath.c:459
PathKeysComparison compare_pathkeys(List *keys1, List *keys2)
Definition: pathkeys.c:302
PGDLLIMPORT join_search_hook_type join_search_hook
Definition: allpaths.c:88
void add_paths_to_append_rel(PlannerInfo *root, RelOptInfo *rel, List *live_childrels)
Definition: allpaths.c:1302
PathKeysComparison
Definition: paths.h:204
@ PATHKEYS_BETTER2
Definition: paths.h:207
@ PATHKEYS_BETTER1
Definition: paths.h:206
@ PATHKEYS_DIFFERENT
Definition: paths.h:208
@ PATHKEYS_EQUAL
Definition: paths.h:205
bool indexcol_is_bool_constant_for_query(PlannerInfo *root, IndexOptInfo *index, int indexcol)
Definition: indxpath.c:3653
EquivalenceMember * find_computable_ec_member(PlannerInfo *root, EquivalenceClass *ec, List *exprs, Relids relids, bool require_parallel_safe)
Definition: equivclass.c:836
bool relation_has_unique_index_ext(PlannerInfo *root, RelOptInfo *rel, List *restrictlist, List *exprlist, List *oprlist, List **extra_clauses)
Definition: indxpath.c:3455
RelOptInfo * make_one_rel(PlannerInfo *root, List *joinlist)
Definition: allpaths.c:171
List * build_partition_pathkeys(PlannerInfo *root, RelOptInfo *partrel, ScanDirection scandir, bool *partialkeys)
Definition: pathkeys.c:934
bool has_relevant_eclass_joinclause(PlannerInfo *root, RelOptInfo *rel1)
Definition: equivclass.c:3179
PGDLLIMPORT bool enable_geqo
Definition: allpaths.c:79
bool(* ec_matches_callback_type)(PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, EquivalenceMember *em, void *arg)
Definition: paths.h:122
PGDLLIMPORT set_join_pathlist_hook_type set_join_pathlist_hook
Definition: joinpath.c:30
void * arg
static rewind_source * source
Definition: pg_rewind.c:89
unsigned int Oid
Definition: postgres_ext.h:31
tree ctl root
Definition: radixtree.h:1884
static struct cvec * eclass(struct vars *v, chr c, int cases)
Definition: regc_locale.c:500
ScanDirection
Definition: sdir.h:25
Definition: pg_list.h:54
Definition: nodes.h:129
Definition: type.h:95
static void callback(struct sockaddr *addr, struct sockaddr *mask, void *unused)
Definition: test_ifaddrs.c:46