From: Tom Lane Date: Sat, 6 Feb 2016 17:21:14 +0000 (-0500) Subject: Add missing "static" qualifier. X-Git-Tag: REL9_6_BETA1~754 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=392998bc58a985ea978c94c23594eb214d04c744;p=postgresql Add missing "static" qualifier. Per buildfarm member pademelon. --- diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index d778e61486..7c1a619b89 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -757,7 +757,7 @@ deparseSelectStmtForRel(StringInfo buf, PlannerInfo *root, RelOptInfo *rel, * We also create an integer List of the columns being retrieved, which is * returned to *retrieved_attrs. */ -void +static void deparseSelectSql(Bitmapset *attrs_used, List **retrieved_attrs, deparse_expr_cxt *context) {