Skip to content

Commit f9ef578

Browse files
committed
postgres_fdw.h: don't pull in rel.h when relcache.h is enough
1 parent 522c85a commit f9ef578

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

contrib/postgres_fdw/deparse.c

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
#include "parser/parsetree.h"
5151
#include "utils/builtins.h"
5252
#include "utils/lsyscache.h"
53+
#include "utils/rel.h"
5354
#include "utils/syscache.h"
5455

5556

contrib/postgres_fdw/postgres_fdw.c

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include "utils/guc.h"
3737
#include "utils/lsyscache.h"
3838
#include "utils/memutils.h"
39+
#include "utils/rel.h"
3940

4041
PG_MODULE_MAGIC;
4142

contrib/postgres_fdw/postgres_fdw.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "foreign/foreign.h"
1717
#include "lib/stringinfo.h"
1818
#include "nodes/relation.h"
19-
#include "utils/rel.h"
19+
#include "utils/relcache.h"
2020

2121
#include "libpq-fe.h"
2222

0 commit comments

Comments
 (0)