PostgreSQL Source Code
git master
indexfsm.h
Go to the documentation of this file.
1
/*-------------------------------------------------------------------------
2
*
3
* indexfsm.h
4
* POSTGRES free space map for quickly finding an unused page in index
5
*
6
*
7
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
8
* Portions Copyright (c) 1994, Regents of the University of California
9
*
10
* src/include/storage/indexfsm.h
11
*
12
*-------------------------------------------------------------------------
13
*/
14
#ifndef INDEXFSM_H_
15
#define INDEXFSM_H_
16
17
#include "
storage/block.h
"
18
#include "
utils/relcache.h
"
19
20
extern
BlockNumber
GetFreeIndexPage
(
Relation
rel);
21
extern
void
RecordFreeIndexPage
(
Relation
rel,
BlockNumber
freeBlock);
22
extern
void
RecordUsedIndexPage
(
Relation
rel,
BlockNumber
usedBlock);
23
24
extern
void
IndexFreeSpaceMapVacuum
(
Relation
rel);
25
26
#endif
/* INDEXFSM_H_ */
block.h
BlockNumber
uint32 BlockNumber
Definition:
block.h:31
RecordUsedIndexPage
void RecordUsedIndexPage(Relation rel, BlockNumber usedBlock)
Definition:
indexfsm.c:62
GetFreeIndexPage
BlockNumber GetFreeIndexPage(Relation rel)
Definition:
indexfsm.c:38
IndexFreeSpaceMapVacuum
void IndexFreeSpaceMapVacuum(Relation rel)
Definition:
indexfsm.c:71
RecordFreeIndexPage
void RecordFreeIndexPage(Relation rel, BlockNumber freeBlock)
Definition:
indexfsm.c:52
relcache.h
RelationData
Definition:
rel.h:56
src
include
storage
indexfsm.h
Generated on Sat Sep 7 2024 18:13:24 for PostgreSQL Source Code by
1.9.1