mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
This commit is contained in:
@@ -147,32 +147,32 @@ typedef struct
|
||||
|
||||
static List *extract_nonindex_conditions(List *qual_clauses, List *indexclauses);
|
||||
static MergeScanSelCache *cached_scansel(PlannerInfo *root,
|
||||
RestrictInfo *rinfo,
|
||||
PathKey *pathkey);
|
||||
RestrictInfo *rinfo,
|
||||
PathKey *pathkey);
|
||||
static void cost_rescan(PlannerInfo *root, Path *path,
|
||||
Cost *rescan_startup_cost, Cost *rescan_total_cost);
|
||||
Cost *rescan_startup_cost, Cost *rescan_total_cost);
|
||||
static bool cost_qual_eval_walker(Node *node, cost_qual_eval_context *context);
|
||||
static void get_restriction_qual_cost(PlannerInfo *root, RelOptInfo *baserel,
|
||||
ParamPathInfo *param_info,
|
||||
QualCost *qpqual_cost);
|
||||
ParamPathInfo *param_info,
|
||||
QualCost *qpqual_cost);
|
||||
static bool has_indexed_join_quals(NestPath *joinpath);
|
||||
static double approx_tuple_count(PlannerInfo *root, JoinPath *path,
|
||||
List *quals);
|
||||
List *quals);
|
||||
static double calc_joinrel_size_estimate(PlannerInfo *root,
|
||||
RelOptInfo *joinrel,
|
||||
RelOptInfo *outer_rel,
|
||||
RelOptInfo *inner_rel,
|
||||
double outer_rows,
|
||||
double inner_rows,
|
||||
SpecialJoinInfo *sjinfo,
|
||||
List *restrictlist);
|
||||
RelOptInfo *joinrel,
|
||||
RelOptInfo *outer_rel,
|
||||
RelOptInfo *inner_rel,
|
||||
double outer_rows,
|
||||
double inner_rows,
|
||||
SpecialJoinInfo *sjinfo,
|
||||
List *restrictlist);
|
||||
static Selectivity get_foreign_key_join_selectivity(PlannerInfo *root,
|
||||
Relids outer_relids,
|
||||
Relids inner_relids,
|
||||
SpecialJoinInfo *sjinfo,
|
||||
List **restrictlist);
|
||||
Relids outer_relids,
|
||||
Relids inner_relids,
|
||||
SpecialJoinInfo *sjinfo,
|
||||
List **restrictlist);
|
||||
static Cost append_nonpartial_cost(List *subpaths, int numpaths,
|
||||
int parallel_workers);
|
||||
int parallel_workers);
|
||||
static void set_rel_width(PlannerInfo *root, RelOptInfo *rel);
|
||||
static double relation_byte_size(double tuples, int width);
|
||||
static double page_size(double tuples, int width);
|
||||
|
||||
Reference in New Issue
Block a user