PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
relfilenumbermap.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * relfilenumbermap.h
4 * relfilenumber to oid mapping cache.
5 *
6 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 * src/include/utils/relfilenumbermap.h
10 *
11 *-------------------------------------------------------------------------
12 */
13#ifndef RELFILENUMBERMAP_H
14#define RELFILENUMBERMAP_H
15
16#include "common/relpath.h"
17
18extern Oid RelidByRelfilenumber(Oid reltablespace,
19 RelFileNumber relfilenumber);
20
21#endif /* RELFILENUMBERMAP_H */
unsigned int Oid
Definition: postgres_ext.h:31
Oid RelidByRelfilenumber(Oid reltablespace, RelFileNumber relfilenumber)
Oid RelFileNumber
Definition: relpath.h:25