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/executor/spi.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/executor/spi.c')
-rw-r--r-- | src/backend/executor/spi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c index 6e723ca092b..d71ea60b317 100644 --- a/src/backend/executor/spi.c +++ b/src/backend/executor/spi.c @@ -28,6 +28,7 @@ #include "utils/datum.h" #include "utils/lsyscache.h" #include "utils/memutils.h" +#include "utils/rel.h" #include "utils/snapmgr.h" #include "utils/syscache.h" #include "utils/typcache.h" |