Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / storage / freespace.h
blobb76acd8f60e2d1724644d51e6bf88eabcbf0f9bd
1 /*-------------------------------------------------------------------------
3 * freespace.h
4 * POSTGRES free space map for quickly finding free space in relations
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef FREESPACE_H_
15 #define FREESPACE_H_
17 #include "utils/rel.h"
18 #include "storage/bufpage.h"
19 #include "access/xlog.h"
21 /* prototypes for public functions in freespace.c */
22 extern Size GetRecordedFreeSpace(Relation rel, BlockNumber heapBlk);
23 extern BlockNumber GetPageWithFreeSpace(Relation rel, Size spaceNeeded);
24 extern BlockNumber RecordAndGetPageWithFreeSpace(Relation rel,
25 BlockNumber oldPage,
26 Size oldSpaceAvail,
27 Size spaceNeeded);
28 extern void RecordPageWithFreeSpace(Relation rel, BlockNumber heapBlk,
29 Size spaceAvail);
30 extern void XLogRecordPageWithFreeSpace(RelFileNode rnode, BlockNumber heapBlk,
31 Size spaceAvail);
33 extern void FreeSpaceMapTruncateRel(Relation rel, BlockNumber nblocks);
34 extern void FreeSpaceMapVacuum(Relation rel);
36 #endif /* FREESPACE_H */