diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-06-22 12:44:53 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-06-22 12:44:53 -0400 |
commit | 2c77903b2bfba01f159138ba34b95d4b470395a8 (patch) | |
tree | 57efc61b163bfcd813957119f5781e55a23c2105 /contrib/postgres_fdw/postgres_fdw.h | |
parent | da6bf130750dec5bcaab0696b00c513c17b14ff9 (diff) | |
download | postgresql-2c77903b2bfba01f159138ba34b95d4b470395a8.tar.gz postgresql-2c77903b2bfba01f159138ba34b95d4b470395a8.zip |
postgres_fdw: Move function prototype to correct section.
Etsuro Fujita, reviewed by Ashutosh Bapat.
Discussion: http://postgr.es/m/93a9c487-9920-a38f-da96-503422c50f59@lab.ntt.co.jp
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.h')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.h b/contrib/postgres_fdw/postgres_fdw.h index f396dae7fbc..788b0036505 100644 --- a/contrib/postgres_fdw/postgres_fdw.h +++ b/contrib/postgres_fdw/postgres_fdw.h @@ -176,10 +176,10 @@ extern void deparseSelectStmtForRel(StringInfo buf, PlannerInfo *root, RelOptInfo *foreignrel, List *tlist, List *remote_conds, List *pathkeys, bool is_subquery, List **retrieved_attrs, List **params_list); +extern const char *get_jointype_name(JoinType jointype); /* in shippable.c */ extern bool is_builtin(Oid objectId); extern bool is_shippable(Oid objectId, Oid classId, PgFdwRelationInfo *fpinfo); -extern const char *get_jointype_name(JoinType jointype); #endif /* POSTGRES_FDW_H */ |