summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2001-06-27 19:02:48 +0000
committerTom Lane2001-06-27 19:02:48 +0000
commit14807a3c986471f458ff4dc95c2ac2e07ead21d9 (patch)
treee2c3b22d9f8d444ff19009fdd910a726e0b66fc7
parent0787b904dcaa237dc89bcbb8955a9e4d964aad68 (diff)
Remove another unused include file with obsolete, useless,
confusing definitions in it.
-rw-r--r--src/include/storage/pagenum.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/include/storage/pagenum.h b/src/include/storage/pagenum.h
deleted file mode 100644
index 0d3d8d214d6..00000000000
--- a/src/include/storage/pagenum.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * pagenum.h
- * POSTGRES page number definitions.
- *
- *
- * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
- * Portions Copyright (c) 1994, Regents of the University of California
- *
- * $Id: pagenum.h,v 1.10 2001/01/24 19:43:28 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
-#ifndef PAGENUM_H
-#define PAGENUM_H
-
-
-typedef uint16 PageNumber;
-
-typedef uint32 LogicalPageNumber;
-
-#define InvalidLogicalPageNumber 0
-
-/*
- * LogicalPageNumberIsValid
- * True iff the logical page number is valid.
- */
-#define LogicalPageNumberIsValid(pageNumber) \
- ((bool)((pageNumber) != InvalidLogicalPageNumber))
-
-
-#endif /* PAGENUM_H */