diff options
Diffstat (limited to 'src/include/access/gistscan.h')
-rw-r--r-- | src/include/access/gistscan.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/include/access/gistscan.h b/src/include/access/gistscan.h deleted file mode 100644 index bf9cb36ccaa..00000000000 --- a/src/include/access/gistscan.h +++ /dev/null @@ -1,27 +0,0 @@ -/*------------------------------------------------------------------------- - * - * gistscan.h - * routines defined in access/gist/gistscan.c - * - * - * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: gistscan.h,v 1.20 2002/06/20 20:29:42 momjian Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef GISTSCAN_H -#define GISTSCAN_H - -#include "access/relscan.h" - -extern Datum gistbeginscan(PG_FUNCTION_ARGS); -extern Datum gistrescan(PG_FUNCTION_ARGS); -extern Datum gistmarkpos(PG_FUNCTION_ARGS); -extern Datum gistrestrpos(PG_FUNCTION_ARGS); -extern Datum gistendscan(PG_FUNCTION_ARGS); -extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum); -extern void AtEOXact_gist(void); - -#endif /* GISTSCAN_H */ |