From: Tom Lane Date: Thu, 11 Jan 2018 16:53:59 +0000 (-0500) Subject: Cosmetic fix in postgres_fdw.c. X-Git-Tag: REL_11_BETA1~947 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ff4f758ee430dbce0be13ab5da315be52cb6f55;p=thirdparty%2Fpostgresql.git Cosmetic fix in postgres_fdw.c. Make the forward declaration of estimate_path_cost_size match its actual definition. Tatsuro Yamada Discussion: https://postgr.es/m/96f2f554-1eeb-fe6f-e0db-650771886781@lab.ntt.co.jp --- diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 7992ba58529..c6e1211f8f6 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -353,8 +353,8 @@ static void postgresGetForeignUpperPaths(PlannerInfo *root, * Helper functions */ static void estimate_path_cost_size(PlannerInfo *root, - RelOptInfo *baserel, - List *join_conds, + RelOptInfo *foreignrel, + List *param_join_conds, List *pathkeys, double *p_rows, int *p_width, Cost *p_startup_cost, Cost *p_total_cost);