From 0a664ec27f3937c0ce428c07a41b6d8c7526ec57 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 28 Aug 2012 16:11:44 -0400 Subject: [PATCH] add #includes to plpy_subxactobject.h to make it compile standalone --- src/pl/plpython/plpy_subxactobject.h | 3 +++ 1 file changed, 3 insertions(+) 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;