diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-07-13 17:47:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-07-13 17:47:02 +0000 |
commit | b844dd3f9e0c2e569ce4465515d4c8cf3b6acd9b (patch) | |
tree | 2e85fe9d1fe7eeb0f9a8408213ac654333824973 /src/include/executor | |
parent | 66c15dfda1a710adc8c0dac061481774123ca27e (diff) | |
download | postgresql-b844dd3f9e0c2e569ce4465515d4c8cf3b6acd9b.tar.gz postgresql-b844dd3f9e0c2e569ce4465515d4c8cf3b6acd9b.zip |
More include file adjustments.
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/hashjoin.h | 3 | ||||
-rw-r--r-- | src/include/executor/tuptable.h | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/include/executor/hashjoin.h b/src/include/executor/hashjoin.h index c4e6e460fed..a225056a0b5 100644 --- a/src/include/executor/hashjoin.h +++ b/src/include/executor/hashjoin.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/executor/hashjoin.h,v 1.39 2006/06/27 21:31:20 tgl Exp $ + * $PostgreSQL: pgsql/src/include/executor/hashjoin.h,v 1.40 2006/07/13 17:47:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,6 +15,7 @@ #define HASHJOIN_H #include "access/htup.h" +#include "fmgr.h" #include "storage/buffile.h" /* ---------------------------------------------------------------- diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index 5e5f9b4c859..32f34e6fb74 100644 --- a/src/include/executor/tuptable.h +++ b/src/include/executor/tuptable.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/executor/tuptable.h,v 1.34 2006/07/13 16:49:19 momjian Exp $ + * $PostgreSQL: pgsql/src/include/executor/tuptable.h,v 1.35 2006/07/13 17:47:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,7 +15,8 @@ #define TUPTABLE_H #include "access/htup.h" - +#include "access/tupdesc.h" +#include "storage/buf.h" /*---------- * The executor stores tuples in a "tuple table" which is composed of |