diff options
author | Alvaro Herrera | 2011-02-23 17:18:09 +0000 |
---|---|---|
committer | Alvaro Herrera | 2011-07-04 18:35:58 +0000 |
commit | b93f5a5673b4bb09e14eb80fe28aa21fc20a6271 (patch) | |
tree | 0d9d146eab2407dc60627542c26902a933262b76 /src/backend/access/gist/gist.c | |
parent | d665162077862ef9e5886f870bf5ce909fc9342c (diff) |
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/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 1 |
1 files changed, 1 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 |