diff options
author | Peter Eisentraut | 2020-03-10 09:22:52 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-03-10 09:27:00 +0000 |
commit | 3c173a53a825075f3efe32b9917eff5063e81f4d (patch) | |
tree | b567cad953a950f079d7864cb265819e6ff969ec /src/backend/executor | |
parent | 17b9e7f9fe238eeb5f6b40061b444ebf28d9e06f (diff) |
Remove utils/acl.h from catalog/objectaddress.h
The need for this was removed by
8b9e9644dc6a9bd4b7a97950e6212f63880cf18b.
A number of files now need to include utils/acl.h or
parser/parse_node.h explicitly where they previously got it indirectly
somehow.
Since parser/parse_node.h already includes nodes/parsenodes.h, the
latter is then removed where the former was added. Also, remove
nodes/pg_list.h from objectaddress.h, since that's included via
nodes/parsenodes.h.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Reviewed-by: Alvaro Herrera <alvherre@2ndquadrant.com>
Discussion: https://www.postgresql.org/message-id/flat/7601e258-26b2-8481-36d0-dc9dca6f28f1%402ndquadrant.com
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/execExpr.c | 1 | ||||
-rw-r--r-- | src/backend/executor/execPartition.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/executor/execExpr.c b/src/backend/executor/execExpr.c index 8c5ead93d68..1370ffec509 100644 --- a/src/backend/executor/execExpr.c +++ b/src/backend/executor/execExpr.c @@ -42,6 +42,7 @@ #include "nodes/nodeFuncs.h" #include "optimizer/optimizer.h" #include "pgstat.h" +#include "utils/acl.h" #include "utils/array.h" #include "utils/builtins.h" #include "utils/datum.h" diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index c13b1d3501f..ef74ad85ff9 100644 --- a/src/backend/executor/execPartition.c +++ b/src/backend/executor/execPartition.c @@ -28,6 +28,7 @@ #include "partitioning/partdesc.h" #include "partitioning/partprune.h" #include "rewrite/rewriteManip.h" +#include "utils/acl.h" #include "utils/lsyscache.h" #include "utils/partcache.h" #include "utils/rls.h" |