Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / access / gistscan.h
blobfc2385a079ca48f4800e673d3353c9a65090f0b3
1 /*-------------------------------------------------------------------------
3 * gistscan.h
4 * routines defined in access/gist/gistscan.c
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef GISTSCAN_H
15 #define GISTSCAN_H
17 #include "fmgr.h"
19 extern Datum gistbeginscan(PG_FUNCTION_ARGS);
20 extern Datum gistrescan(PG_FUNCTION_ARGS);
21 extern Datum gistmarkpos(PG_FUNCTION_ARGS);
22 extern Datum gistrestrpos(PG_FUNCTION_ARGS);
23 extern Datum gistendscan(PG_FUNCTION_ARGS);
25 #endif /* GISTSCAN_H */