diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-09-06 17:52:08 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-09-06 17:52:08 -0400 |
commit | 793a89c1966733c84edacaa25ce47b72a75f3afb (patch) | |
tree | bdd47ffa66b91ffdd10b23957fb8c82f6ed0f59e | |
parent | ca4e20fde87d182aa699c5384fb1b6091f6e5f79 (diff) | |
download | postgresql-793a89c1966733c84edacaa25ce47b72a75f3afb.tar.gz postgresql-793a89c1966733c84edacaa25ce47b72a75f3afb.zip |
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
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |