53#define UNSAFE_HAS_VOLATILE_FUNC (1 << 0)
54#define UNSAFE_HAS_SET_FUNC (1 << 1)
55#define UNSAFE_NOTIN_DISTINCTON_CLAUSE (1 << 2)
56#define UNSAFE_NOTIN_PARTITIONBY_CLAUSE (1 << 3)
57#define UNSAFE_TYPE_MISMATCH (1 << 4)
118 List *live_childrels,
119 List *all_child_pathkeys);
125 List **special_subpaths);
200 for (rti = 1; rti <
root->simple_rel_array_size; rti++)
214 total_pages += (double) brel->
pages;
216 root->total_table_pages = total_pages;
264 foreach(lc,
root->join_info_list)
294 for (rti = 1; rti <
root->simple_rel_array_size; rti++)
309 rte =
root->simple_rte_array[rti];
319 if (
root->glob->parallelModeOK)
337 for (rti = 1; rti <
root->simple_rel_array_size; rti++)
389 if (rte->relkind == RELKIND_FOREIGN_TABLE)
394 else if (rte->relkind == RELKIND_PARTITIONED_TABLE)
439 if (rte->self_reference)
486 if (rte->relkind == RELKIND_FOREIGN_TABLE)
539 (*set_rel_pathlist_hook) (
root, rel, rti, rte);
562#ifdef OPTIMIZER_DEBUG
630 if (proparallel != PROPARALLEL_SAFE)
644 if (rte->relkind == RELKIND_FOREIGN_TABLE)
647 if (!rel->fdwroutine->IsForeignScanParallelSafe)
649 if (!rel->fdwroutine->IsForeignScanParallelSafe(
root, rel, rte))
808 int parallel_workers;
814 if (parallel_workers <= 0)
897 if ((
root->query_level > 1 ||
920 rel->fdwroutine->GetForeignRelSize(
root, rel, rte->relid);
941 rel->fdwroutine->GetForeignPaths(
root, rel, rte->relid);
959 int parentRTindex = rti;
960 bool has_live_children;
961 double parent_tuples;
964 double *parent_attrsizes;
980 rte->relkind == RELKIND_PARTITIONED_TABLE &&
1007 has_live_children =
false;
1012 parent_attrsizes = (
double *)
palloc0(nattrs *
sizeof(
double));
1014 foreach(l,
root->append_rel_list)
1030 childRTE =
root->simple_rte_array[childRTindex];
1076 childrinfos =
lappend(childrinfos,
1156 has_live_children =
true;
1175 parent_tuples += childrel->
tuples;
1176 parent_rows += childrel->
rows;
1193 if (
IsA(parentvar,
Var) && parentvar->
varno == parentRTindex)
1196 int32 child_width = 0;
1198 if (
IsA(childvar,
Var) &&
1199 ((
Var *) childvar)->varno == childrel->
relid)
1201 int cndx = ((
Var *) childvar)->varattno - childrel->
min_attr;
1203 child_width = childrel->attr_widths[cndx];
1205 if (child_width <= 0)
1209 parent_attrsizes[pndx] += child_width * childrel->
rows;
1214 if (has_live_children)
1222 rel->
tuples = parent_tuples;
1223 rel->
rows = parent_rows;
1225 for (
i = 0;
i < nattrs;
i++)
1226 rel->attr_widths[
i] = rint(parent_attrsizes[
i] / parent_rows);
1243 pfree(parent_attrsizes);
1254 int parentRTindex = rti;
1262 foreach(l,
root->append_rel_list)
1275 childRTE =
root->simple_rte_array[childRTindex];
1276 childrel =
root->simple_rel_array[childRTindex];
1301 live_childrels =
lappend(live_childrels, childrel);
1322 List *live_childrels)
1325 bool subpaths_valid =
true;
1327 bool startup_subpaths_valid =
true;
1329 List *pa_partial_subpaths =
NIL;
1330 List *pa_nonpartial_subpaths =
NIL;
1331 bool partial_subpaths_valid =
true;
1332 bool pa_subpaths_valid;
1333 List *all_child_pathkeys =
NIL;
1336 double partial_rows = -1;
1346 foreach(l, live_childrels)
1350 Path *cheapest_partial_path = NULL;
1365 subpaths_valid =
false;
1374 Path *cheapest_path;
1381 if (
root->tuple_fraction > 0.0)
1384 root->tuple_fraction);
1389 Assert(cheapest_path->param_info == NULL);
1395 startup_subpaths_valid =
false;
1403 &partial_subpaths, NULL);
1406 partial_subpaths_valid =
false;
1412 if (pa_subpaths_valid)
1414 Path *nppath = NULL;
1419 if (cheapest_partial_path == NULL && nppath == NULL)
1422 pa_subpaths_valid =
false;
1424 else if (nppath == NULL ||
1425 (cheapest_partial_path != NULL &&
1429 Assert(cheapest_partial_path != NULL);
1431 &pa_partial_subpaths,
1432 &pa_nonpartial_subpaths);
1450 &pa_nonpartial_subpaths,
1468 if (childkeys !=
NIL)
1474 foreach(lpk, all_child_pathkeys)
1488 all_child_pathkeys =
lappend(all_child_pathkeys,
1500 foreach(lco, all_child_outers)
1504 if (
bms_equal(existing_outers, childouter))
1513 all_child_outers =
lappend(all_child_outers,
1527 NIL, NULL, 0,
false,
1531 if (startup_subpaths_valid)
1533 NIL,
NIL, NULL, 0,
false, -1));
1539 if (partial_subpaths_valid && partial_subpaths !=
NIL)
1543 int parallel_workers = 0;
1546 foreach(lc, partial_subpaths)
1552 Assert(parallel_workers > 0);
1565 parallel_workers =
Max(parallel_workers,
1567 parallel_workers =
Min(parallel_workers,
1570 Assert(parallel_workers > 0);
1574 NIL, NULL, parallel_workers,
1582 partial_rows = appendpath->
path.
rows;
1594 if (pa_subpaths_valid && pa_nonpartial_subpaths !=
NIL)
1598 int parallel_workers = 0;
1604 foreach(lc, pa_partial_subpaths)
1616 parallel_workers =
Max(parallel_workers,
1618 parallel_workers =
Min(parallel_workers,
1620 Assert(parallel_workers > 0);
1623 pa_partial_subpaths,
1624 NIL, NULL, parallel_workers,
true,
1635 all_child_pathkeys);
1650 foreach(l, all_child_outers)
1657 subpaths_valid =
true;
1658 foreach(lcr, live_childrels)
1666 subpaths_valid =
false;
1676 subpaths_valid =
false;
1685 NIL, required_outer, 0,
false,
1748 List *live_childrels,
1749 List *all_child_pathkeys)
1752 List *partition_pathkeys =
NIL;
1753 List *partition_pathkeys_desc =
NIL;
1754 bool partition_pathkeys_partial =
true;
1755 bool partition_pathkeys_desc_partial =
true;
1770 &partition_pathkeys_partial);
1774 &partition_pathkeys_desc_partial);
1788 foreach(lcp, all_child_pathkeys)
1793 List *fractional_subpaths =
NIL;
1794 bool startup_neq_total =
false;
1795 bool match_partition_order;
1796 bool match_partition_order_desc;
1810 match_partition_order =
1812 (!partition_pathkeys_partial &&
1815 match_partition_order_desc = !match_partition_order &&
1817 (!partition_pathkeys_desc_partial &&
1827 if (match_partition_order_desc)
1838 match_partition_order =
true;
1849 for (
int i = first_index;
i != end_index;
i += direction)
1852 Path *cheapest_startup,
1854 *cheapest_fractional = NULL;
1874 if (cheapest_startup == NULL || cheapest_total == NULL)
1876 cheapest_startup = cheapest_total =
1879 Assert(cheapest_total->param_info == NULL);
1892 if (
root->tuple_fraction > 0)
1894 double path_fraction = (1.0 /
root->tuple_fraction);
1896 cheapest_fractional =
1910 if (!cheapest_fractional)
1911 cheapest_fractional = cheapest_total;
1919 if (cheapest_startup != cheapest_total)
1920 startup_neq_total =
true;
1926 if (match_partition_order)
1938 startup_subpaths =
lappend(startup_subpaths, cheapest_startup);
1939 total_subpaths =
lappend(total_subpaths, cheapest_total);
1941 if (cheapest_fractional)
1944 fractional_subpaths =
lappend(fractional_subpaths, cheapest_fractional);
1954 &startup_subpaths, NULL);
1956 &total_subpaths, NULL);
1958 if (cheapest_fractional)
1960 &fractional_subpaths, NULL);
1965 if (match_partition_order)
1977 if (startup_neq_total)
1988 if (fractional_subpaths)
1991 fractional_subpaths,
2007 if (startup_neq_total)
2014 if (fractional_subpaths)
2017 fractional_subpaths,
2048 Assert(cheapest != NULL);
2073 if (cheapest != NULL &&
2085 if (cheapest != NULL &&
2131 else if (special_subpaths != NULL)
2133 List *new_special_subpaths;
2141 *special_subpaths =
list_concat(*special_subpaths,
2142 new_special_subpaths);
2154 *subpaths =
lappend(*subpaths, path);
2249 bool wfunc_left,
bool *keep_original,
2262 *keep_original =
true;
2298 req.
type = T_SupportRequestWFuncMonotonic;
2318 foreach(lc, opinfos)
2334 *keep_original =
false;
2336 runoperator = opexpr->
opno;
2351 *keep_original =
false;
2353 runoperator = opexpr->
opno;
2370 *keep_original =
false;
2372 runoperator = opexpr->
opno;
2389 *keep_original =
true;
2401 if (runopexpr != NULL)
2406 wfuncrc->
opno = runoperator;
2407 wfuncrc->inputcollid = runopexpr->inputcollid;
2411 wfunc->runCondition =
lappend(wfunc->runCondition, wfuncrc);
2442 bool keep_original =
true;
2479 opexpr,
true, &keep_original,
2481 return keep_original;
2492 opexpr,
false, &keep_original,
2494 return keep_original;
2518 bool trivial_pathtarget;
2521 double tuple_fraction;
2548 memset(&safetyInfo, 0,
sizeof(safetyInfo));
2585 List *upperrestrictlist =
NIL;
2593 if (rinfo->pseudoconstant)
2595 upperrestrictlist =
lappend(upperrestrictlist, rinfo);
2614 if (!subquery->hasWindowFuncs ||
2623 upperrestrictlist =
lappend(upperrestrictlist, rinfo);
2628 upperrestrictlist =
lappend(upperrestrictlist, rinfo);
2652 if (
parse->hasAggs ||
2653 parse->groupClause ||
2654 parse->groupingSets ||
2655 root->hasHavingQual ||
2656 parse->distinctClause ||
2657 parse->sortClause ||
2659 tuple_fraction = 0.0;
2661 tuple_fraction =
root->tuple_fraction;
2668 tuple_fraction, NULL);
2700 trivial_pathtarget =
false;
2703 trivial_pathtarget =
true;
2711 trivial_pathtarget =
false;
2715 if (var->
varno != rti ||
2718 trivial_pathtarget =
false;
2728 foreach(lc, sub_final_rel->
pathlist)
2743 pathkeys, required_outer));
2839 pathkeys, required_outer));
2909 while (levelsup-- > 0)
2911 cteroot = cteroot->parent_root;
3041 while (levelsup-- > 0)
3043 cteroot = cteroot->parent_root;
3085 Path *cheapest_partial_path;
3086 Path *simple_gather_path;
3089 double *rowsp = NULL;
3106 simple_gather_path = (
Path *)
3125 subpath->pathkeys, NULL, rowsp);
3153 bool require_parallel_safe)
3155 List *useful_pathkeys_list =
NIL;
3163 if (
root->query_pathkeys)
3168 foreach(lc,
root->query_pathkeys)
3186 require_parallel_safe))
3198 useful_pathkeys_list =
lappend(useful_pathkeys_list,
3199 root->query_pathkeys);
3200 else if (npathkeys > 0)
3201 useful_pathkeys_list =
lappend(useful_pathkeys_list,
3206 return useful_pathkeys_list;
3224 double *rowsp = NULL;
3225 List *useful_pathkeys_list =
NIL;
3226 Path *cheapest_partial_path = NULL;
3249 foreach(lc, useful_pathkeys_list)
3284 if (
subpath != cheapest_partial_path &&
3349 if (levels_needed <= 0)
3358 foreach(jl, joinlist)
3376 elog(
ERROR,
"unrecognized joinlist node type: %d",
3381 initial_rels =
lappend(initial_rels, thisrel);
3384 if (levels_needed == 1)
3400 root->initial_rels = initial_rels;
3405 return geqo(
root, levels_needed, initial_rels);
3465 root->join_rel_level[1] = initial_rels;
3467 for (lev = 2; lev <= levels_needed; lev++)
3488 foreach(lc,
root->join_rel_level[lev])
3507#ifdef OPTIMIZER_DEBUG
3516 if (
root->join_rel_level[levels_needed] ==
NIL)
3517 elog(
ERROR,
"failed to build any %d-way joins", levels_needed);
3522 root->join_rel_level = NULL;
3627 subquery->hasWindowFuncs ||
3628 subquery->hasTargetSRFs)
3641 if (subquery == topquery)
3677 Assert(subquery != NULL);
3695 elog(
ERROR,
"unrecognized node type: %d",
3749 if (subquery->hasTargetSRFs &&
3768 if (subquery->hasDistinctOn &&
3779 if (subquery->hasWindowFuncs &&
3821 if (colType == NULL)
3822 elog(
ERROR,
"wrong number of tlist entries");
3825 colType =
lnext(colTypes, colType);
3827 if (colType != NULL)
3828 elog(
ERROR,
"wrong number of tlist entries");
3942 if (var->
varno != rti)
4007 subquery->resultRelation,
4009 &subquery->hasSubLinks);
4043 Assert(subquery != NULL);
4055 elog(
ERROR,
"unrecognized node type: %d",
4096 attrs_used = extra_used_attrs;
4171 if (subquery->hasTargetSRFs &&
4201 int parallel_workers;
4202 double pages_fetched;
4211 if (parallel_workers <= 0)
4237 int parallel_workers = 0;
4260 if (heap_pages >= 0)
4262 int heap_parallel_threshold;
4263 int heap_parallel_workers = 1;
4273 while (heap_pages >= (
BlockNumber) (heap_parallel_threshold * 3))
4275 heap_parallel_workers++;
4276 heap_parallel_threshold *= 3;
4277 if (heap_parallel_threshold > INT_MAX / 3)
4281 parallel_workers = heap_parallel_workers;
4284 if (index_pages >= 0)
4286 int index_parallel_workers = 1;
4287 int index_parallel_threshold;
4291 while (index_pages >= (
BlockNumber) (index_parallel_threshold * 3))
4293 index_parallel_workers++;
4294 index_parallel_threshold *= 3;
4295 if (index_parallel_threshold > INT_MAX / 3)
4299 if (parallel_workers > 0)
4300 parallel_workers =
Min(parallel_workers, index_parallel_workers);
4302 parallel_workers = index_parallel_workers;
4307 parallel_workers =
Min(parallel_workers, max_workers);
4309 return parallel_workers;
4344 part_rels = rel->part_rels;
4347 for (cnt_parts = 0; cnt_parts < num_parts; cnt_parts++)
4349 RelOptInfo *child_rel = part_rels[cnt_parts];
4352 if (child_rel == NULL)
4376#ifdef OPTIMIZER_DEBUG
4380 live_children =
lappend(live_children, child_rel);
static void set_base_rel_sizes(PlannerInfo *root)
static List * get_useful_pathkeys_for_relation(PlannerInfo *root, RelOptInfo *rel, bool require_parallel_safe)
static void set_subquery_pathlist(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
static bool find_window_run_conditions(Query *subquery, RangeTblEntry *rte, Index rti, AttrNumber attno, WindowFunc *wfunc, OpExpr *opexpr, bool wfunc_left, bool *keep_original, Bitmapset **run_cond_attrs)
#define UNSAFE_TYPE_MISMATCH
static Path * get_cheapest_parameterized_child_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
static void set_namedtuplestore_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void subquery_push_qual(Query *subquery, RangeTblEntry *rte, Index rti, Node *qual)
void generate_partitionwise_join_paths(PlannerInfo *root, RelOptInfo *rel)
static void set_base_rel_consider_startup(PlannerInfo *root)
#define UNSAFE_HAS_VOLATILE_FUNC
#define UNSAFE_NOTIN_DISTINCTON_CLAUSE
static void set_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
static Path * get_singleton_append_subpath(Path *path)
static void set_tablesample_rel_size(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void set_tablesample_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void set_foreign_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void set_base_rel_pathlists(PlannerInfo *root)
RelOptInfo * standard_join_search(PlannerInfo *root, int levels_needed, List *initial_rels)
static void set_append_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
static pushdown_safe_type qual_is_pushdown_safe(Query *subquery, Index rti, RestrictInfo *rinfo, pushdown_safety_info *safetyInfo)
static void set_result_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
int compute_parallel_worker(RelOptInfo *rel, double heap_pages, double index_pages, int max_workers)
void generate_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_rows)
static void set_dummy_rel_pathlist(RelOptInfo *rel)
static void compare_tlist_datatypes(List *tlist, List *colTypes, pushdown_safety_info *safetyInfo)
static void set_worktable_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static bool targetIsInAllPartitionLists(TargetEntry *tle, Query *query)
static void create_plain_partial_paths(PlannerInfo *root, RelOptInfo *rel)
static bool subquery_is_pushdown_safe(Query *subquery, Query *topquery, pushdown_safety_info *safetyInfo)
join_search_hook_type join_search_hook
static bool check_and_push_window_quals(Query *subquery, RangeTblEntry *rte, Index rti, Node *clause, Bitmapset **run_cond_attrs)
void generate_useful_gather_paths(PlannerInfo *root, RelOptInfo *rel, bool override_rows)
static RelOptInfo * make_rel_from_joinlist(PlannerInfo *root, List *joinlist)
static void set_function_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void recurse_push_qual(Node *setOp, Query *topquery, RangeTblEntry *rte, Index rti, Node *qual)
static void set_plain_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void remove_unused_subquery_outputs(Query *subquery, RelOptInfo *rel, Bitmapset *extra_used_attrs)
static void check_output_expressions(Query *subquery, pushdown_safety_info *safetyInfo)
static void set_tablefunc_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void set_foreign_size(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
set_rel_pathlist_hook_type set_rel_pathlist_hook
static void set_values_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
struct pushdown_safety_info pushdown_safety_info
RelOptInfo * make_one_rel(PlannerInfo *root, List *joinlist)
#define UNSAFE_HAS_SET_FUNC
static void set_cte_pathlist(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void set_rel_consider_parallel(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
static void set_append_rel_size(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
void create_partial_bitmap_paths(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual)
static void set_plain_rel_size(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
void add_paths_to_append_rel(PlannerInfo *root, RelOptInfo *rel, List *live_childrels)
static void set_rel_size(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
static void generate_orderedappend_paths(PlannerInfo *root, RelOptInfo *rel, List *live_childrels, List *all_child_pathkeys)
#define UNSAFE_NOTIN_PARTITIONBY_CLAUSE
static bool recurse_pushdown_safe(Node *setOp, Query *topquery, pushdown_safety_info *safetyInfo)
@ PUSHDOWN_WINDOWCLAUSE_RUNCOND
static void accumulate_append_subpath(Path *path, List **subpaths, List **special_subpaths)
int min_parallel_index_scan_size
int min_parallel_table_scan_size
Node * adjust_appendrel_attrs(PlannerInfo *root, Node *node, int nappinfos, AppendRelInfo **appinfos)
#define InvalidAttrNumber
void pprint(const void *obj)
bool bms_equal(const Bitmapset *a, const Bitmapset *b)
bool bms_is_subset(const Bitmapset *a, const Bitmapset *b)
bool bms_is_member(int x, const Bitmapset *a)
Bitmapset * bms_add_member(Bitmapset *a, int x)
BMS_Membership bms_membership(const Bitmapset *a)
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
bool bms_get_singleton_member(const Bitmapset *a, int *member)
#define OidIsValid(objectId)
bool is_pseudo_constant_clause(Node *clause)
bool contain_leaked_vars(Node *clause)
bool is_parallel_safe(PlannerInfo *root, Node *node)
bool contain_subplans(Node *clause)
bool contain_volatile_functions(Node *clause)
void set_namedtuplestore_size_estimates(PlannerInfo *root, RelOptInfo *rel)
int max_parallel_workers_per_gather
void set_baserel_size_estimates(PlannerInfo *root, RelOptInfo *rel)
void set_function_size_estimates(PlannerInfo *root, RelOptInfo *rel)
void set_cte_size_estimates(PlannerInfo *root, RelOptInfo *rel, double cte_rows)
double compute_gather_rows(Path *path)
void set_result_size_estimates(PlannerInfo *root, RelOptInfo *rel)
bool enable_partitionwise_join
double compute_bitmap_pages(PlannerInfo *root, RelOptInfo *baserel, Path *bitmapqual, double loop_count, Cost *cost_p, double *tuples_p)
void set_subquery_size_estimates(PlannerInfo *root, RelOptInfo *rel)
bool enable_parallel_append
void set_foreign_size_estimates(PlannerInfo *root, RelOptInfo *rel)
double clamp_row_est(double nrows)
void set_tablefunc_size_estimates(PlannerInfo *root, RelOptInfo *rel)
void set_values_size_estimates(PlannerInfo *root, RelOptInfo *rel)
bool enable_incremental_sort
void add_child_rel_equivalences(PlannerInfo *root, AppendRelInfo *appinfo, RelOptInfo *parent_rel, RelOptInfo *child_rel)
bool relation_can_be_sorted_early(PlannerInfo *root, RelOptInfo *rel, EquivalenceClass *ec, bool require_parallel_safe)
#define OidFunctionCall1(functionId, arg1)
RelOptInfo * geqo(PlannerInfo *root, int number_of_rels, List *initial_rels)
Assert(PointerIsAligned(start, uint64))
void check_index_predicates(PlannerInfo *root, RelOptInfo *rel)
void create_index_paths(PlannerInfo *root, RelOptInfo *rel)
if(TABLE==NULL||TABLE_index==NULL)
void join_search_one_level(PlannerInfo *root, int level)
void mark_dummy_rel(RelOptInfo *rel)
List * lappend(List *list, void *datum)
List * list_copy_tail(const List *oldlist, int nskip)
List * list_concat(List *list1, const List *list2)
void list_free(List *list)
List * list_copy_head(const List *oldlist, int len)
char get_rel_persistence(Oid relid)
char func_parallel(Oid funcid)
Oid get_opfamily_member_for_cmptype(Oid opfamily, Oid lefttype, Oid righttype, CompareType cmptype)
RegProcedure get_func_support(Oid funcid)
bool func_strict(Oid funcid)
List * get_op_index_interpretation(Oid opno)
int32 get_typavgwidth(Oid typid, int32 typmod)
Datum subpath(PG_FUNCTION_ARGS)
Const * makeNullConst(Oid consttype, int32 consttypmod, Oid constcollid)
Node * make_and_qual(Node *qual1, Node *qual2)
void pfree(void *pointer)
void * palloc0(Size size)
Oid exprType(const Node *expr)
int32 exprTypmod(const Node *expr)
Oid exprCollation(const Node *expr)
bool expression_returns_set(Node *clause)
void set_opfuncid(OpExpr *opexpr)
#define IsA(nodeptr, _type_)
#define castNode(_type_, nodeptr)
#define PVC_INCLUDE_PLACEHOLDERS
bool targetIsInSortList(TargetEntry *tle, Oid sortop, List *sortList)
#define rt_fetch(rangetable_index, rangetable)
bool partitions_are_ordered(PartitionBoundInfo boundinfo, Bitmapset *live_parts)
Path * get_cheapest_fractional_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, double fraction)
Path * get_cheapest_path_for_pathkeys(List *paths, List *pathkeys, Relids required_outer, CostSelector cost_criterion, bool require_parallel_safe)
bool pathkeys_count_contained_in(List *keys1, List *keys2, int *n_common)
bool has_useful_pathkeys(PlannerInfo *root, RelOptInfo *rel)
List * build_expression_pathkey(PlannerInfo *root, Expr *expr, Oid opno, Relids rel, bool create_it)
List * build_partition_pathkeys(PlannerInfo *root, RelOptInfo *partrel, ScanDirection scandir, bool *partialkeys)
List * convert_subquery_pathkeys(PlannerInfo *root, RelOptInfo *rel, List *subquery_pathkeys, List *subquery_tlist)
bool pathkeys_contained_in(List *keys1, List *keys2)
PathKeysComparison compare_pathkeys(List *keys1, List *keys2)
Path * get_cheapest_parallel_safe_total_inner(List *paths)
Path * create_functionscan_path(PlannerInfo *root, RelOptInfo *rel, List *pathkeys, Relids required_outer)
Path * create_valuesscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Path * create_worktablescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Path * create_seqscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer, int parallel_workers)
GatherMergePath * create_gather_merge_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, List *pathkeys, Relids required_outer, double *rows)
void set_cheapest(RelOptInfo *parent_rel)
void add_partial_path(RelOptInfo *parent_rel, Path *new_path)
AppendPath * create_append_path(PlannerInfo *root, RelOptInfo *rel, List *subpaths, List *partial_subpaths, List *pathkeys, Relids required_outer, int parallel_workers, bool parallel_aware, double rows)
Path * create_namedtuplestorescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
SubqueryScanPath * create_subqueryscan_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, bool trivial_pathtarget, List *pathkeys, Relids required_outer)
IncrementalSortPath * create_incremental_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, int presorted_keys, double limit_tuples)
BitmapHeapPath * create_bitmap_heap_path(PlannerInfo *root, RelOptInfo *rel, Path *bitmapqual, Relids required_outer, double loop_count, int parallel_degree)
Path * create_tablefuncscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
SortPath * create_sort_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, List *pathkeys, double limit_tuples)
GatherPath * create_gather_path(PlannerInfo *root, RelOptInfo *rel, Path *subpath, PathTarget *target, Relids required_outer, double *rows)
Path * create_samplescan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
MaterialPath * create_material_path(RelOptInfo *rel, Path *subpath)
void add_path(RelOptInfo *parent_rel, Path *new_path)
int compare_path_costs(Path *path1, Path *path2, CostSelector criterion)
Path * create_resultscan_path(PlannerInfo *root, RelOptInfo *rel, Relids required_outer)
Path * create_ctescan_path(PlannerInfo *root, RelOptInfo *rel, List *pathkeys, Relids required_outer)
MergeAppendPath * create_merge_append_path(PlannerInfo *root, RelOptInfo *rel, List *subpaths, List *pathkeys, Relids required_outer)
Path * reparameterize_path(PlannerInfo *root, Path *path, Relids required_outer, double loop_count)
#define IS_SIMPLE_REL(rel)
#define IS_PARTITIONED_REL(rel)
#define PATH_REQ_OUTER(path)
@ RELOPT_OTHER_MEMBER_REL
void(* set_rel_pathlist_hook_type)(PlannerInfo *root, RelOptInfo *rel, Index rti, RangeTblEntry *rte)
RelOptInfo *(* join_search_hook_type)(PlannerInfo *root, int levels_needed, List *initial_rels)
static int pg_leftmost_one_pos32(uint32 word)
static int list_length(const List *l)
#define forboth(cell1, list1, cell2, list2)
#define foreach_current_index(var_or_cell)
#define for_each_from(cell, lst, N)
static void * list_nth(const List *list, int n)
static ListCell * list_head(const List *l)
#define list_nth_node(type, list, n)
static ListCell * lnext(const List *l, const ListCell *c)
static int list_nth_int(const List *list, int n)
bool relation_excluded_by_constraints(PlannerInfo *root, RelOptInfo *rel, RangeTblEntry *rte)
Path * get_cheapest_fractional_path(RelOptInfo *rel, double tuple_fraction)
PlannerInfo * subquery_planner(PlannerGlobal *glob, Query *parse, PlannerInfo *parent_root, bool hasRecursion, double tuple_fraction, SetOperationStmt *setops)
bool limit_needed(Query *parse)
@ MONOTONICFUNC_DECREASING
@ MONOTONICFUNC_INCREASING
static Datum PointerGetDatum(const void *X)
static Pointer DatumGetPointer(Datum X)
static struct subre * parse(struct vars *v, int stopper, int type, struct state *init, struct state *final)
RelOptInfo * find_base_rel(PlannerInfo *root, int relid)
RelOptInfo * fetch_upper_rel(PlannerInfo *root, UpperRelationKind kind, Relids relids)
Node * ReplaceVarsFromTargetList(Node *node, int target_varno, int sublevels_up, RangeTblEntry *target_rte, List *targetlist, int result_relation, ReplaceVarsNoMatchOption nomatch_option, int nomatch_varno, bool *outer_hasSubLinks)
@ REPLACEVARS_REPORT_ERROR
void check_stack_depth(void)
struct Path * non_recursive_path
struct TableSampleClause * tablesample
bool consider_param_startup
struct PathTarget * reltarget
struct Path * cheapest_startup_path
struct Path * cheapest_total_path
bool consider_partitionwise_join
struct WindowClause * window_clause
MonotonicFunction monotonic
bool repeatable_across_scans
SampleScanGetSampleSize_function SampleScanGetSampleSize
unsigned char * unsafeFlags
#define FirstLowInvalidHeapAttributeNumber
TsmRoutine * GetTsmRoutine(Oid tsmhandler)
bool create_tidscan_paths(PlannerInfo *root, RelOptInfo *rel)
List * make_tlist_from_pathtarget(PathTarget *target)
List * pull_var_clause(Node *node, int flags)
void pull_varattnos(Node *node, Index varno, Bitmapset **varattnos)