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 /contrib/dblink | |
parent | d665162077862ef9e5886f870bf5ce909fc9342c (diff) | |
download | postgresql-b93f5a5673b4bb09e14eb80fe28aa21fc20a6271.tar.gz |
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/dblink')
-rw-r--r-- | contrib/dblink/dblink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index b8d0342085..76617e3f36 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -63,6 +63,7 @@ #include "utils/hsearch.h" #include "utils/lsyscache.h" #include "utils/memutils.h" +#include "utils/rel.h" #include "utils/syscache.h" #include "utils/tqual.h" |