postgresql/src/include/utils/relfilenodemap.h

19 lines
561 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* relfilenodemap.h
* relfilenode to oid mapping cache.
*
2017-01-03 19:48:53 +01:00
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/utils/relfilenodemap.h
*
*-------------------------------------------------------------------------
*/
#ifndef RELFILENODEMAP_H
#define RELFILENODEMAP_H
extern Oid RelidByRelfilenode(Oid reltablespace, Oid relfilenode);
#endif /* RELFILENODEMAP_H */