summaryrefslogtreecommitdiff
path: root/src/include/storage/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage/page.h')
-rw-r--r--src/include/storage/page.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/storage/page.h b/src/include/storage/page.h
new file mode 100644
index 00000000000..aee623f3697
--- /dev/null
+++ b/src/include/storage/page.h
@@ -0,0 +1,26 @@
+/*-------------------------------------------------------------------------
+ *
+ * page.h--
+ * POSTGRES buffer page abstraction definitions.
+ *
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: page.h,v 1.1 1996/08/28 01:58:20 scrappy Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef PAGE_H
+#define PAGE_H
+
+#include "c.h"
+
+typedef Pointer Page;
+
+/*
+ * PageIsValid --
+ * True iff page is valid.
+ */
+#define PageIsValid(page) PointerIsValid(page)
+
+#endif /* PAGE_H */