From b09bd214aaf776222d93adf7d2b2eb83b795954d Mon Sep 17 00:00:00 2001
From: "Vadim B. Mikheev" <vadim4o@yahoo.com>
Date: Sun, 10 Sep 2000 00:06:52 +0000
Subject: [PATCH] This is temporal place holder for Relation File Node till
 reloid.version/unique_id file naming is not implemented

---
 src/include/storage/relfilenode.h | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 src/include/storage/relfilenode.h

diff --git a/src/include/storage/relfilenode.h b/src/include/storage/relfilenode.h
new file mode 100644
index 00000000000..405dee967c2
--- /dev/null
+++ b/src/include/storage/relfilenode.h
@@ -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 */
-- 
GitLab