mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-11 19:20:40 +08:00
This is temporal place holder for Relation File Node till
reloid.version/unique_id file naming is not implemented
This commit is contained in:
parent
c44ed0fb79
commit
b09bd214aa
14
src/include/storage/relfilenode.h
Normal file
14
src/include/storage/relfilenode.h
Normal file
@ -0,0 +1,14 @@
|
||||
#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 */
|
Loading…
Reference in New Issue
Block a user