Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / storage / indexfsm.h
blob1885b816a2731319ee903a3d74d447e0cddb60fb
1 /*-------------------------------------------------------------------------
3 * indexfsm.h
4 * POSTGRES free space map for quickly finding an unused page in index
7 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/storage/indexfsm.h
12 *-------------------------------------------------------------------------
14 #ifndef INDEXFSM_H_
15 #define INDEXFSM_H_
17 #include "storage/block.h"
18 #include "utils/relcache.h"
20 extern BlockNumber GetFreeIndexPage(Relation rel);
21 extern void RecordFreeIndexPage(Relation rel, BlockNumber page);
22 extern void RecordUsedIndexPage(Relation rel, BlockNumber page);
24 extern void IndexFreeSpaceMapVacuum(Relation rel);
26 #endif /* INDEXFSM_H_ */