PostgreSQL Source Code git master
Loading...
Searching...
No Matches
visibilitymap.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * visibilitymap.h
4 * visibility map interface
5 *
6 *
7 * Portions Copyright (c) 2007-2026, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/access/visibilitymap.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef VISIBILITYMAP_H
15#define VISIBILITYMAP_H
16
18#include "storage/block.h"
19#include "storage/buf.h"
21#include "utils/relcache.h"
22
23/* Macros for visibilitymap test */
24#define VM_ALL_VISIBLE(r, b, v) \
25 ((visibilitymap_get_status((r), (b), (v)) & VISIBILITYMAP_ALL_VISIBLE) != 0)
26#define VM_ALL_FROZEN(r, b, v) \
27 ((visibilitymap_get_status((r), (b), (v)) & VISIBILITYMAP_ALL_FROZEN) != 0)
28
29extern bool visibilitymap_clear(Relation rel, BlockNumber heapBlk,
30 Buffer vmbuf, uint8 flags);
31extern void visibilitymap_pin(Relation rel, BlockNumber heapBlk,
32 Buffer *vmbuf);
33extern bool visibilitymap_pin_ok(BlockNumber heapBlk, Buffer vmbuf);
34extern void visibilitymap_set(BlockNumber heapBlk,
35 Buffer vmBuf, uint8 flags,
36 const RelFileLocator rlocator);
38extern void visibilitymap_count(Relation rel, BlockNumber *all_visible, BlockNumber *all_frozen);
42
43#endif /* VISIBILITYMAP_H */
uint32 BlockNumber
Definition block.h:31
int Buffer
Definition buf.h:23
uint8_t uint8
Definition c.h:622
static int fb(int x)
BlockNumber visibilitymap_truncation_length(BlockNumber nheapblocks)
void visibilitymap_set(BlockNumber heapBlk, Buffer vmBuf, uint8 flags, const RelFileLocator rlocator)
bool visibilitymap_pin_ok(BlockNumber heapBlk, Buffer vmbuf)
bool visibilitymap_clear(Relation rel, BlockNumber heapBlk, Buffer vmbuf, uint8 flags)
void visibilitymap_pin(Relation rel, BlockNumber heapBlk, Buffer *vmbuf)
uint8 visibilitymap_get_status(Relation rel, BlockNumber heapBlk, Buffer *vmbuf)
BlockNumber visibilitymap_prepare_truncate(Relation rel, BlockNumber nheapblocks)
void visibilitymap_count(Relation rel, BlockNumber *all_visible, BlockNumber *all_frozen)