PostgreSQL/src/include/storage/relfilenode.h
Vadim B. Mikheev b09bd214aa This is temporal place holder for Relation File Node till
reloid.version/unique_id file naming is not implemented
2000-09-10 00:06:52 +00:00

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 */