diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-02-12 11:20:16 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-02-12 11:20:16 -0500 |
commit | 99a9d6d563f389ad8137984aac13c9c0bd37cb66 (patch) | |
tree | 1e100ac8e4056a97b77d71af6dcde51a3b06ae1d /contrib/postgres_fdw/deparse.c | |
parent | bcac23de73b89b001fbc628d84471a392e928d1c (diff) | |
download | postgresql-99a9d6d563f389ad8137984aac13c9c0bd37cb66.tar.gz postgresql-99a9d6d563f389ad8137984aac13c9c0bd37cb66.zip |
Add missing "static" qualifier.
Per buildfarm member pademelon.
Diffstat (limited to 'contrib/postgres_fdw/deparse.c')
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 27ecdcd944e..cb418862cca 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -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) { |