Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 100aa27

Browse files
committed
Add missing header.
1 parent 74fd3d1 commit 100aa27

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/pl/plpython/plpython.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**********************************************************************
22
* plpython.c - python as a procedural language for PostgreSQL
33
*
4-
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.113 2008/10/09 17:24:05 alvherre Exp $
4+
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.114 2008/10/11 00:09:33 alvherre Exp $
55
*
66
*********************************************************************
77
*/
@@ -54,6 +54,7 @@ typedef int Py_ssize_t;
5454
#include "executor/spi.h"
5555
#include "funcapi.h"
5656
#include "fmgr.h"
57+
#include "miscadmin.h"
5758
#include "nodes/makefuncs.h"
5859
#include "parser/parse_type.h"
5960
#include "tcop/tcopprot.h"

src/pl/tcl/pltcl.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* pltcl.c - PostgreSQL support for Tcl as
33
* procedural language (PL)
44
*
5-
* $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.122 2008/10/09 17:24:05 alvherre Exp $
5+
* $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.123 2008/10/11 00:09:33 alvherre Exp $
66
*
77
**********************************************************************/
88

@@ -23,6 +23,7 @@
2323
#include "commands/trigger.h"
2424
#include "executor/spi.h"
2525
#include "fmgr.h"
26+
#include "miscadmin.h"
2627
#include "nodes/makefuncs.h"
2728
#include "parser/parse_type.h"
2829
#include "tcop/tcopprot.h"

0 commit comments

Comments
 (0)