diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 16:11:44 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2012-08-28 16:13:41 -0400 |
commit | 0a664ec27f3937c0ce428c07a41b6d8c7526ec57 (patch) | |
tree | bc8aeea444ea2b80a9e231981c802341c84a680a | |
parent | 0a83f2492f38fd0b82452dfd2a80cc70486ba73d (diff) | |
download | postgresql-0a664ec27f3937c0ce428c07a41b6d8c7526ec57.tar.gz postgresql-0a664ec27f3937c0ce428c07a41b6d8c7526ec57.zip |
add #includes to plpy_subxactobject.h to make it compile standalone
-rw-r--r-- | src/pl/plpython/plpy_subxactobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pl/plpython/plpy_subxactobject.h b/src/pl/plpython/plpy_subxactobject.h index b8591c7bf07..d9c3929234d 100644 --- a/src/pl/plpython/plpy_subxactobject.h +++ b/src/pl/plpython/plpy_subxactobject.h @@ -5,6 +5,9 @@ #ifndef PLPY_SUBXACTOBJECT #define PLPY_SUBXACTOBJECT +#include "nodes/pg_list.h" +#include "utils/resowner.h" + /* a list of nested explicit subtransactions */ extern List *explicit_subtransactions; |