]> granicus.if.org Git - postgresql/commitdiff
This is temporal place holder for Relation File Node till
authorVadim B. Mikheev <vadim4o@yahoo.com>
Sun, 10 Sep 2000 00:06:52 +0000 (00:06 +0000)
committerVadim B. Mikheev <vadim4o@yahoo.com>
Sun, 10 Sep 2000 00:06:52 +0000 (00:06 +0000)
reloid.version/unique_id file naming is not implemented

src/include/storage/relfilenode.h [new file with mode: 0644]

diff --git a/src/include/storage/relfilenode.h b/src/include/storage/relfilenode.h
new file mode 100644 (file)
index 0000000..405dee9
--- /dev/null
@@ -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 */