diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2014-11-14 21:48:53 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2014-11-14 21:48:53 -0300 |
commit | f9ef578d050c509d0f4bc02b3c0a3a0497056a2a (patch) | |
tree | 59d679cf8c2bd5384dab191124e413c96462f358 | |
parent | 522c85a6a27b614589543eddb68a4c8f7fcac901 (diff) | |
download | postgresql-f9ef578d050c509d0f4bc02b3c0a3a0497056a2a.tar.gz postgresql-f9ef578d050c509d0f4bc02b3c0a3a0497056a2a.zip |
postgres_fdw.h: don't pull in rel.h when relcache.h is enough
-rw-r--r-- | contrib/postgres_fdw/deparse.c | 1 | ||||
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 1 | ||||
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.h | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/deparse.c b/contrib/postgres_fdw/deparse.c index 2045774f24f..7992191f79d 100644 --- a/contrib/postgres_fdw/deparse.c +++ b/contrib/postgres_fdw/deparse.c @@ -50,6 +50,7 @@ #include "parser/parsetree.h" #include "utils/builtins.h" #include "utils/lsyscache.h" +#include "utils/rel.h" #include "utils/syscache.h" diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 4c497768257..905a821ad07 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -36,6 +36,7 @@ #include "utils/guc.h" #include "utils/lsyscache.h" #include "utils/memutils.h" +#include "utils/rel.h" PG_MODULE_MAGIC; diff --git a/contrib/postgres_fdw/postgres_fdw.h b/contrib/postgres_fdw/postgres_fdw.h index 94eadae8916..0382c5572fc 100644 --- a/contrib/postgres_fdw/postgres_fdw.h +++ b/contrib/postgres_fdw/postgres_fdw.h @@ -16,7 +16,7 @@ #include "foreign/foreign.h" #include "lib/stringinfo.h" #include "nodes/relation.h" -#include "utils/rel.h" +#include "utils/relcache.h" #include "libpq-fe.h" |