diff options
Diffstat (limited to 'src/backend/access/gist/gistscan.c')
-rw-r--r-- | src/backend/access/gist/gistscan.c | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index bab14bac69b..0f3ce3b59d9 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -10,32 +10,21 @@ *------------------------------------------------------------------------- */ -#include <stdio.h> -#include <time.h> +#include <postgres.h> -#include "postgres.h" - -#include "access/relscan.h" -#include "access/gist.h" -#include "access/genam.h" -#include "storage/lmgr.h" +#include <access/gist.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" +# include <regex/utils.h> #else # include <string.h> #endif -#include "utils/palloc.h" - -#include "storage/block.h" -#include "storage/off.h" -#include "access/rtree.h" - -#include "storage/bufmgr.h" - -#include "access/giststrat.h" - /* routines defined and used here */ static void gistregscan(IndexScanDesc s); static void gistdropscan(IndexScanDesc s); |