Add missing "static" qualifier.
authorTom Lane <[email protected]>
Fri, 12 Feb 2016 16:20:16 +0000 (11:20 -0500)
committerTom Lane <[email protected]>
Fri, 12 Feb 2016 16:20:16 +0000 (11:20 -0500)
Per buildfarm member pademelon.

contrib/postgres_fdw/deparse.c

index 27ecdcd944ec4fc2871b06e6aac41964c8915413..cb418862cca564460587c41f85c2312113232df2 100644 (file)
@@ -1136,7 +1136,7 @@ deparseExplicitTargetList(List *tlist, List **retrieved_attrs,
  * relation it just returns schema-qualified tablename, with the appropriate
  * alias if so requested.
  */
-void
+static void
 deparseFromExprForRel(StringInfo buf, PlannerInfo *root, RelOptInfo *foreignrel,
                      bool use_alias, List **params_list)
 {