aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeAgg.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/nodeAgg.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/nodeAgg.c')
-rw-r--r--src/backend/executor/nodeAgg.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c
index e7bbc2fb59c..44e051a3038 100644
--- a/src/backend/executor/nodeAgg.c
+++ b/src/backend/executor/nodeAgg.c
@@ -15,7 +15,10 @@
*
*-------------------------------------------------------------------------
*/
+#include <string.h>
+
#include "postgres.h"
+#include "fmgr.h"
#include "access/heapam.h"
#include "catalog/pg_aggregate.h"
@@ -24,6 +27,7 @@
#include "executor/nodeAgg.h"
#include "storage/bufmgr.h"
#include "utils/palloc.h"
+#include "utils/syscache.h"
#include "parser/catalog_utils.h"
/*