00001 /*------------------------------------------------------------------------- 00002 * 00003 * gistscan.h 00004 * routines defined in access/gist/gistscan.c 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/access/gistscan.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef GISTSCAN_H 00015 #define GISTSCAN_H 00016 00017 #include "fmgr.h" 00018 00019 extern Datum gistbeginscan(PG_FUNCTION_ARGS); 00020 extern Datum gistrescan(PG_FUNCTION_ARGS); 00021 extern Datum gistmarkpos(PG_FUNCTION_ARGS); 00022 extern Datum gistrestrpos(PG_FUNCTION_ARGS); 00023 extern Datum gistendscan(PG_FUNCTION_ARGS); 00024 00025 #endif /* GISTSCAN_H */