mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-04 09:57:33 +08:00
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
25 lines
736 B
C
25 lines
736 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* gistscan.h
|
|
* routines defined in access/gist/gistscan.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/access/gistscan.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef GISTSCAN_H
|
|
#define GISTSCAN_H
|
|
|
|
#include "access/amapi.h"
|
|
|
|
extern IndexScanDesc gistbeginscan(Relation r, int nkeys, int norderbys);
|
|
extern void gistrescan(IndexScanDesc scan, ScanKey key, int nkeys,
|
|
ScanKey orderbys, int norderbys);
|
|
extern void gistendscan(IndexScanDesc scan);
|
|
|
|
#endif /* GISTSCAN_H */
|