mirror of
https://github.com/postgres/postgres.git
synced 2025-11-08 00:21:12 -05:00
Buildfarm member crake ran headerscheck, which complained about a missing include here. Defect introduced by commit 2f47715cc8649f854b1df28dfc338af9801db217.
22 lines
629 B
C
22 lines
629 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* relfilenumbermap.h
|
|
* relfilenumber to oid mapping cache.
|
|
*
|
|
* Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/utils/relfilenumbermap.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef RELFILENUMBERMAP_H
|
|
#define RELFILENUMBERMAP_H
|
|
|
|
#include "common/relpath.h"
|
|
|
|
extern Oid RelidByRelfilenumber(Oid reltablespace,
|
|
RelFileNumber relfilenumber);
|
|
|
|
#endif /* RELFILENUMBERMAP_H */
|