From a6cab6a78ee58356967a447fa2c6414732856986 Mon Sep 17 00:00:00 2001 From: Peter Geoghegan Date: Sat, 12 Apr 2025 12:07:36 -0400 Subject: Harmonize function parameter names for Postgres 18. Make sure that function declarations use names that exactly match the corresponding names from function definitions in a few places. These inconsistencies were all introduced during Postgres 18 development. This commit was written with help from clang-tidy, by mechanically applying the same rules as similar clean-up commits (the earliest such commit was commit 035ce1fe). --- src/include/commands/explain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/commands') diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index 387839eb5d2..03c5b3d73e5 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -64,7 +64,7 @@ extern void ExplainOneUtility(Node *utilityStmt, IntoClause *into, ParamListInfo params); extern void ExplainOnePlan(PlannedStmt *plannedstmt, CachedPlan *cplan, - CachedPlanSource *plansource, int plan_index, + CachedPlanSource *plansource, int query_index, IntoClause *into, struct ExplainState *es, const char *queryString, ParamListInfo params, QueryEnvironment *queryEnv, -- cgit v1.2.3