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 /contrib/lo | |
| 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 'contrib/lo')
| -rw-r--r-- | contrib/lo/lo.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/contrib/lo/lo.c b/contrib/lo/lo.c index 0e3559c0201..6946150fed5 100644 --- a/contrib/lo/lo.c +++ b/contrib/lo/lo.c @@ -7,15 +7,12 @@ #include "postgres.h" -/* Required for SPI */ +#include "commands/trigger.h" #include "executor/spi.h" - -/* Required for largeobjects */ #include "libpq/be-fsstubs.h" #include "libpq/libpq-fs.h" +#include "utils/rel.h" -/* Required for triggers */ -#include "commands/trigger.h" PG_MODULE_MAGIC; |
