diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2011-02-23 14:18:09 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2011-07-04 14:35:58 -0400 |
commit | b93f5a5673b4bb09e14eb80fe28aa21fc20a6271 (patch) | |
tree | 0d9d146eab2407dc60627542c26902a933262b76 /src/backend/access/gist | |
parent | d665162077862ef9e5886f870bf5ce909fc9342c (diff) | |
download | postgresql-b93f5a5673b4bb09e14eb80fe28aa21fc20a6271.tar.gz postgresql-b93f5a5673b4bb09e14eb80fe28aa21fc20a6271.zip |
Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.h
This lets us stop including rel.h into execnodes.h, which is a widely
used header.
Diffstat (limited to 'src/backend/access/gist')
-rw-r--r-- | src/backend/access/gist/gist.c | 1 | ||||
-rw-r--r-- | src/backend/access/gist/gistget.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index cdb0343d104..b756f6e0e30 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -22,6 +22,7 @@ #include "storage/bufmgr.h" #include "storage/indexfsm.h" #include "utils/memutils.h" +#include "utils/rel.h" /* Working state for gistbuild and its callback */ typedef struct diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index 1aba6868447..5d5fd5b738e 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -22,6 +22,7 @@ #include "storage/bufmgr.h" #include "utils/builtins.h" #include "utils/memutils.h" +#include "utils/rel.h" /* |