mirror of
https://github.com/postgres/postgres.git
synced 2025-06-04 00:02:37 -04:00
15 lines
307 B
C
15 lines
307 B
C
#ifndef RELFILENODE_H
|
|
#define RELFILENODE_H
|
|
|
|
/*
|
|
* This is temporal place holder for Relation File Node till
|
|
* reloid.version/unique_id file naming is not implemented
|
|
*/
|
|
typedef struct RelFileNode
|
|
{
|
|
Oid dbId; /* database */
|
|
Oid relId; /* relation */
|
|
} RelFileNode;
|
|
|
|
#endif /* RELFILENODE_H */
|