mirror of
https://github.com/postgres/postgres.git
synced 2025-08-22 21:53:06 +03:00
Phase 2 pgindent run for v12.
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
This commit is contained in:
@@ -198,29 +198,29 @@ extern bytea *spgoptions(Datum reloptions, bool validate);
|
||||
|
||||
/* spginsert.c */
|
||||
extern IndexBuildResult *spgbuild(Relation heap, Relation index,
|
||||
struct IndexInfo *indexInfo);
|
||||
struct IndexInfo *indexInfo);
|
||||
extern void spgbuildempty(Relation index);
|
||||
extern bool spginsert(Relation index, Datum *values, bool *isnull,
|
||||
ItemPointer ht_ctid, Relation heapRel,
|
||||
IndexUniqueCheck checkUnique,
|
||||
struct IndexInfo *indexInfo);
|
||||
ItemPointer ht_ctid, Relation heapRel,
|
||||
IndexUniqueCheck checkUnique,
|
||||
struct IndexInfo *indexInfo);
|
||||
|
||||
/* spgscan.c */
|
||||
extern IndexScanDesc spgbeginscan(Relation rel, int keysz, int orderbysz);
|
||||
extern void spgendscan(IndexScanDesc scan);
|
||||
extern void spgrescan(IndexScanDesc scan, ScanKey scankey, int nscankeys,
|
||||
ScanKey orderbys, int norderbys);
|
||||
ScanKey orderbys, int norderbys);
|
||||
extern int64 spggetbitmap(IndexScanDesc scan, TIDBitmap *tbm);
|
||||
extern bool spggettuple(IndexScanDesc scan, ScanDirection dir);
|
||||
extern bool spgcanreturn(Relation index, int attno);
|
||||
|
||||
/* spgvacuum.c */
|
||||
extern IndexBulkDeleteResult *spgbulkdelete(IndexVacuumInfo *info,
|
||||
IndexBulkDeleteResult *stats,
|
||||
IndexBulkDeleteCallback callback,
|
||||
void *callback_state);
|
||||
IndexBulkDeleteResult *stats,
|
||||
IndexBulkDeleteCallback callback,
|
||||
void *callback_state);
|
||||
extern IndexBulkDeleteResult *spgvacuumcleanup(IndexVacuumInfo *info,
|
||||
IndexBulkDeleteResult *stats);
|
||||
IndexBulkDeleteResult *stats);
|
||||
|
||||
/* spgvalidate.c */
|
||||
extern bool spgvalidate(Oid opclassoid);
|
||||
|
Reference in New Issue
Block a user