aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2012-08-28 16:11:44 -0400
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2012-08-28 16:13:41 -0400
commit0a664ec27f3937c0ce428c07a41b6d8c7526ec57 (patch)
treebc8aeea444ea2b80a9e231981c802341c84a680a /src
parent0a83f2492f38fd0b82452dfd2a80cc70486ba73d (diff)
downloadpostgresql-0a664ec27f3937c0ce428c07a41b6d8c7526ec57.tar.gz
postgresql-0a664ec27f3937c0ce428c07a41b6d8c7526ec57.zip
add #includes to plpy_subxactobject.h to make it compile standalone
Diffstat (limited to 'src')
-rw-r--r--src/pl/plpython/plpy_subxactobject.h3
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;