aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execQual.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-06 06:52:23 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-06 06:52:23 +0000
commitce4c0ce1dec3f34dbbc812a49026f70003a63d18 (patch)
treea45e10088e6d6fa41c7050b0824675378dec7b0f /src/backend/executor/execQual.c
parente4725ee76a3fcdf40548c93badc4a8f679a953bb (diff)
downloadpostgresql-ce4c0ce1dec3f34dbbc812a49026f70003a63d18.tar.gz
postgresql-ce4c0ce1dec3f34dbbc812a49026f70003a63d18.zip
Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk>
Diffstat (limited to 'src/backend/executor/execQual.c')
-rw-r--r--src/backend/executor/execQual.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/executor/execQual.c b/src/backend/executor/execQual.c
index a632ed50054..f18cb4ed936 100644
--- a/src/backend/executor/execQual.c
+++ b/src/backend/executor/execQual.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.8 1996/10/31 10:11:28 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.9 1996/11/06 06:47:34 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -30,6 +30,7 @@
*
*/
#include "postgres.h"
+#include "fmgr.h"
#include "nodes/primnodes.h"
#include "nodes/relation.h"
@@ -38,7 +39,9 @@
#include "nodes/memnodes.h"
#include "catalog/pg_language.h"
+#include "catalog/pg_proc.h"
#include "executor/executor.h"
+#include "executor/execdebug.h"
#include "executor/execFlatten.h"
#include "executor/functions.h"
#include "access/heapam.h"
@@ -48,6 +51,7 @@
#include "utils/fcache.h"
#include "utils/fcache2.h"
#include "utils/array.h"
+#include "utils/mcxt.h"
/* ----------------
* externs and constants