aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2008-10-11 00:09:33 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2008-10-11 00:09:33 +0000
commit100aa2795de4488f12098308133fa7d73a5007eb (patch)
tree0feb0cea76895fefb7623e0969d1ec0fb6b6acc8 /src
parent74fd3d1b23734c2936ad0c8aef220aa35235ef0b (diff)
downloadpostgresql-100aa2795de4488f12098308133fa7d73a5007eb.tar.gz
postgresql-100aa2795de4488f12098308133fa7d73a5007eb.zip
Add missing header.
Diffstat (limited to 'src')
-rw-r--r--src/pl/plpython/plpython.c3
-rw-r--r--src/pl/tcl/pltcl.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c
index ae17289cd26..9fb612fd632 100644
--- a/src/pl/plpython/plpython.c
+++ b/src/pl/plpython/plpython.c
@@ -1,7 +1,7 @@
/**********************************************************************
* plpython.c - python as a procedural language for PostgreSQL
*
- * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.113 2008/10/09 17:24:05 alvherre Exp $
+ * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.114 2008/10/11 00:09:33 alvherre Exp $
*
*********************************************************************
*/
@@ -54,6 +54,7 @@ typedef int Py_ssize_t;
#include "executor/spi.h"
#include "funcapi.h"
#include "fmgr.h"
+#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "parser/parse_type.h"
#include "tcop/tcopprot.h"
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c
index 1bbab485d1c..722c7ed43b4 100644
--- a/src/pl/tcl/pltcl.c
+++ b/src/pl/tcl/pltcl.c
@@ -2,7 +2,7 @@
* pltcl.c - PostgreSQL support for Tcl as
* procedural language (PL)
*
- * $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.122 2008/10/09 17:24:05 alvherre Exp $
+ * $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.123 2008/10/11 00:09:33 alvherre Exp $
*
**********************************************************************/
@@ -23,6 +23,7 @@
#include "commands/trigger.h"
#include "executor/spi.h"
#include "fmgr.h"
+#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "parser/parse_type.h"
#include "tcop/tcopprot.h"