diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-15 22:40:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-15 22:40:16 +0000 |
commit | 2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (patch) | |
tree | bb72a1ec4e38514c726a73b1344971307c2db01e /src/backend/access/gist | |
parent | 40a89e08b2d7bb592d940e56f696df4a6459e7a3 (diff) | |
download | postgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.tar.gz postgresql-2e6b1e63a3f4990594af94afe1b3cef90ae752b5.zip |
Remove unused #includes in *.c files.
Diffstat (limited to 'src/backend/access/gist')
-rw-r--r-- | src/backend/access/gist/gist.c | 6 | ||||
-rw-r--r-- | src/backend/access/gist/gistget.c | 6 | ||||
-rw-r--r-- | src/backend/access/gist/gistscan.c | 5 |
3 files changed, 0 insertions, 17 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index bf2499fa05f..2e905427d89 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -13,7 +13,6 @@ #include <postgres.h> -#include <fmgr.h> #include <catalog/pg_index.h> #include <access/genam.h> #include <access/gist.h> @@ -21,14 +20,9 @@ #include <access/heapam.h> #include <catalog/index.h> #include <executor/executor.h> -#include <storage/bufmgr.h> -#include <storage/bufpage.h> -#include <storage/lmgr.h> #include <utils/syscache.h> -#include <utils/tqual.h> #ifndef HAVE_MEMMOVE -#include <regex/utils.h> #else #include <string.h> #endif diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index 665bc830357..07dbd269471 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -13,16 +13,10 @@ #include <postgres.h> -#include <access/relscan.h> -#include <storage/bufpage.h> -#include <access/sdir.h> -#include <access/itup.h> #include <access/gist.h> #include <executor/execdebug.h> -#include <storage/bufmgr.h> #ifndef HAVE_MEMMOVE -#include <regex/utils.h> #else #include <string.h> #endif diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index d26387d8280..2fe9222b2d4 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -15,13 +15,8 @@ #include <access/gist.h> #include <access/gistscan.h> #include <access/genam.h> -#include <access/rtree.h> -#include <storage/bufmgr.h> -#include <access/giststrat.h> -#include <storage/lmgr.h> #ifndef HAVE_MEMMOVE -#include <regex/utils.h> #else #include <string.h> #endif |