diff options
author | Andres Freund <andres@anarazel.de> | 2019-01-21 10:18:20 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-01-21 10:51:37 -0800 |
commit | 111944c5ee567f1c45bf0f1ecfdec682af467aa6 (patch) | |
tree | 26874b7be80065453d8571cfd9ab0c8bf21ad7b2 /contrib/postgres_fdw/postgres_fdw.c | |
parent | 4b21acf522d751ba5b6679df391d5121b6c4a35f (diff) | |
download | postgresql-111944c5ee567f1c45bf0f1ecfdec682af467aa6.tar.gz postgresql-111944c5ee567f1c45bf0f1ecfdec682af467aa6.zip |
Replace heapam.h includes with {table, relation}.h where applicable.
A lot of files only included heapam.h for relation_open, heap_open etc
- replace the heapam.h include in those files with the narrower
header.
Author: Andres Freund
Discussion: https://postgr.es/m/20190111000539.xbv7s6w7ilcvm7dp@alap3.anarazel.de
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 685259a0033..36ae10db115 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -14,9 +14,9 @@ #include "postgres_fdw.h" -#include "access/heapam.h" #include "access/htup_details.h" #include "access/sysattr.h" +#include "access/table.h" #include "catalog/pg_class.h" #include "commands/defrem.h" #include "commands/explain.h" |