From: Alvaro Herrera Date: Tue, 28 Aug 2012 20:11:44 +0000 (-0400) Subject: add #includes to plpy_subxactobject.h to make it compile standalone X-Git-Tag: REL9_2_0~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc1a36f11ad629808795785fc55c495510db40a9;p=thirdparty%2Fpostgresql.git add #includes to plpy_subxactobject.h to make it compile standalone --- 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;