diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 06:52:23 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 06:52:23 +0000 |
commit | ce4c0ce1dec3f34dbbc812a49026f70003a63d18 (patch) | |
tree | a45e10088e6d6fa41c7050b0824675378dec7b0f /src/backend/executor/execMain.c | |
parent | e4725ee76a3fcdf40548c93badc4a8f679a953bb (diff) | |
download | postgresql-ce4c0ce1dec3f34dbbc812a49026f70003a63d18.tar.gz postgresql-ce4c0ce1dec3f34dbbc812a49026f70003a63d18.zip |
Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk>
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index ff41238959b..c5e26186087 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -26,23 +26,32 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.7 1996/10/31 10:11:24 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.8 1996/11/06 06:47:32 scrappy Exp $ * *------------------------------------------------------------------------- */ +#include <string.h> #include "postgres.h" +#include "miscadmin.h" #include "executor/executor.h" +#include "executor/execdefs.h" +#include "executor/execdebug.h" #include "executor/nodeIndexscan.h" #include "utils/builtins.h" #include "utils/palloc.h" #include "utils/acl.h" +#include "utils/syscache.h" #include "parser/parsetree.h" /* rt_fetch() */ #include "storage/bufmgr.h" #include "storage/lmgr.h" +#include "storage/smgr.h" #include "commands/async.h" /* #include "access/localam.h" */ #include "optimizer/var.h" +#include "access/heapam.h" +#include "catalog/heap.h" + /* decls for local routines only used within this module */ |