mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Harmonize parameter names in contrib code.
Make sure that function declarations use names that exactly match the corresponding names from function definitions in contrib code. Like other recent commits that cleaned up function parameter names, this commit was written with help from clang-tidy. Author: Peter Geoghegan <pg@bowt.ie> Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
This commit is contained in:
@ -149,7 +149,7 @@ static void deparseReturningList(StringInfo buf, RangeTblEntry *rte,
|
||||
static void deparseColumnRef(StringInfo buf, int varno, int varattno,
|
||||
RangeTblEntry *rte, bool qualify_col);
|
||||
static void deparseRelation(StringInfo buf, Relation rel);
|
||||
static void deparseExpr(Expr *expr, deparse_expr_cxt *context);
|
||||
static void deparseExpr(Expr *node, deparse_expr_cxt *context);
|
||||
static void deparseVar(Var *node, deparse_expr_cxt *context);
|
||||
static void deparseConst(Const *node, deparse_expr_cxt *context, int showtype);
|
||||
static void deparseParam(Param *node, deparse_expr_cxt *context);
|
||||
|
@ -457,7 +457,7 @@ static PgFdwModifyState *create_foreign_modify(EState *estate,
|
||||
Plan *subplan,
|
||||
char *query,
|
||||
List *target_attrs,
|
||||
int len,
|
||||
int values_end,
|
||||
bool has_returning,
|
||||
List *retrieved_attrs);
|
||||
static TupleTableSlot **execute_foreign_modify(EState *estate,
|
||||
|
@ -226,7 +226,7 @@ extern EquivalenceMember *find_em_for_rel_target(PlannerInfo *root,
|
||||
RelOptInfo *rel);
|
||||
extern List *build_tlist_to_deparse(RelOptInfo *foreignrel);
|
||||
extern void deparseSelectStmtForRel(StringInfo buf, PlannerInfo *root,
|
||||
RelOptInfo *foreignrel, List *tlist,
|
||||
RelOptInfo *rel, List *tlist,
|
||||
List *remote_conds, List *pathkeys,
|
||||
bool has_final_sort, bool has_limit,
|
||||
bool is_subquery,
|
||||
|
Reference in New Issue
Block a user