summaryrefslogtreecommitdiff
path: root/src/backend/commands/policy.c
diff options
context:
space:
mode:
authorAndres Freund2019-01-21 18:18:20 +0000
committerAndres Freund2019-01-21 18:51:37 +0000
commit111944c5ee567f1c45bf0f1ecfdec682af467aa6 (patch)
tree26874b7be80065453d8571cfd9ab0c8bf21ad7b2 /src/backend/commands/policy.c
parent4b21acf522d751ba5b6679df391d5121b6c4a35f (diff)
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/[email protected]
Diffstat (limited to 'src/backend/commands/policy.c')
-rw-r--r--src/backend/commands/policy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/commands/policy.c b/src/backend/commands/policy.c
index 0adae130432..8465de0e1dd 100644
--- a/src/backend/commands/policy.c
+++ b/src/backend/commands/policy.c
@@ -13,9 +13,10 @@
#include "postgres.h"
#include "access/genam.h"
-#include "access/heapam.h"
#include "access/htup.h"
#include "access/htup_details.h"
+#include "access/relation.h"
+#include "access/table.h"
#include "access/sysattr.h"
#include "catalog/catalog.h"
#include "catalog/dependency.h"