From: Tom Lane Date: Wed, 6 Sep 2017 21:52:08 +0000 (-0400) Subject: Sync function prototype with its actual definition. X-Git-Tag: REL_11_BETA1~1660 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=793a89c1966733c84edacaa25ce47b72a75f3afb;p=postgresql.git Sync function prototype with its actual definition. Use the same parameter names as in the definition. Cosmetic fix only. Tatsuro Yamada Discussion: https://postgr.es/m/58E711AF.7070305@lab.ntt.co.jp --- diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 32dc4e6301f..fb65e2eb20c 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -278,7 +278,7 @@ static void postgresGetForeignPaths(PlannerInfo *root, RelOptInfo *baserel, Oid foreigntableid); static ForeignScan *postgresGetForeignPlan(PlannerInfo *root, - RelOptInfo *baserel, + RelOptInfo *foreignrel, Oid foreigntableid, ForeignPath *best_path, List *tlist,