mirror of
https://github.com/postgres/postgres.git
synced 2025-10-19 15:49:24 +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:
6
src/backend/utils/cache/plancache.c
vendored
6
src/backend/utils/cache/plancache.c
vendored
@@ -98,12 +98,12 @@ static dlist_head cached_expression_list = DLIST_STATIC_INIT(cached_expression_l
|
||||
|
||||
static void ReleaseGenericPlan(CachedPlanSource *plansource);
|
||||
static List *RevalidateCachedQuery(CachedPlanSource *plansource,
|
||||
QueryEnvironment *queryEnv);
|
||||
QueryEnvironment *queryEnv);
|
||||
static bool CheckCachedPlan(CachedPlanSource *plansource);
|
||||
static CachedPlan *BuildCachedPlan(CachedPlanSource *plansource, List *qlist,
|
||||
ParamListInfo boundParams, QueryEnvironment *queryEnv);
|
||||
ParamListInfo boundParams, QueryEnvironment *queryEnv);
|
||||
static bool choose_custom_plan(CachedPlanSource *plansource,
|
||||
ParamListInfo boundParams);
|
||||
ParamListInfo boundParams);
|
||||
static double cached_plan_cost(CachedPlan *plan, bool include_planner);
|
||||
static Query *QueryListGetPrimaryStmt(List *stmts);
|
||||
static void AcquireExecutorLocks(List *stmt_list, bool acquire);
|
||||
|
Reference in New Issue
Block a user