aboutsummaryrefslogtreecommitdiff
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:14:31 -0400
commitdc1a36f11ad629808795785fc55c495510db40a9 (patch)
treec238fe79fade330750d125012197212bd5c40016
parent3ca1d62080a9e148b71a2aaa4ee1d210ce92ad68 (diff)
downloadpostgresql-dc1a36f11ad629808795785fc55c495510db40a9.tar.gz
postgresql-dc1a36f11ad629808795785fc55c495510db40a9.zip
add #includes to plpy_subxactobject.h to make it compile standalone
-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;