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/pl/plpython/plpython.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/pl/plpython/plpython.c')
-rw-r--r-- | src/pl/plpython/plpython.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 9081cffb498..0227f1a1829 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -108,6 +108,7 @@ typedef int Py_ssize_t; #include "utils/hsearch.h" #include "utils/lsyscache.h" #include "utils/memutils.h" +#include "utils/rel.h" #include "utils/syscache.h" #include "utils/typcache.h" |