Unmark gen_random_uuid() function leakproof.
[pgsql.git] / src / include / storage / indexfsm.h
blobad376b1131933eb03f7d844b27b3ebe1ec610af1
1 /*-------------------------------------------------------------------------
3 * indexfsm.h
4 * POSTGRES free space map for quickly finding an unused page in index
7 * Portions Copyright (c) 1996-2024, 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 freeBlock);
22 extern void RecordUsedIndexPage(Relation rel, BlockNumber usedBlock);
24 extern void IndexFreeSpaceMapVacuum(Relation rel);
26 #endif /* INDEXFSM_H_ */