summaryrefslogtreecommitdiff
path: root/src/include/storage/relfilenode.h
blob: 405dee967c27f5a95c4cbaabe51a9feba6dbfd7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 */