summaryrefslogtreecommitdiff
path: root/src/backend/access/valid.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-27 21:49:14 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-27 21:49:14 +0000
commit9247b29228c05e1e368c14d339fcbabeb27b426b (patch)
tree9ab68b8bb9118aa21b47c5398c7df2571d41506c /src/backend/access/valid.h
parente1f31a2bb67d5b70f12951562da3fa33b141cafe (diff)
The use of include files is a mess...alot of redundancy, it seems...
First Step: Centralize them under on src/include hierarchy
Diffstat (limited to 'src/backend/access/valid.h')
-rw-r--r--src/backend/access/valid.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/backend/access/valid.h b/src/backend/access/valid.h
deleted file mode 100644
index 1c5cf8cdeb3..00000000000
--- a/src/backend/access/valid.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * valid.h--
- * POSTGRES tuple qualification validity definitions.
- *
- *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: valid.h,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $
- *
- *-------------------------------------------------------------------------
- */
-#ifndef VALID_H
-#define VALID_H
-
-#include "c.h"
-#include "access/skey.h"
-#include "storage/buf.h"
-#include "utils/tqual.h"
-#include "access/tupdesc.h"
-#include "utils/rel.h"
-#include "storage/bufpage.h"
-
-/* ----------------
- * extern decl's
- * ----------------
- */
-
-extern bool heap_keytest(HeapTuple t, TupleDesc tupdesc,
- int nkeys, ScanKey keys);
-
-extern HeapTuple heap_tuple_satisfies(ItemId itemId, Relation relation,
- PageHeader disk_page, TimeQual qual, int nKeys, ScanKey key);
-
-extern bool TupleUpdatedByCurXactAndCmd(HeapTuple t);
-
-#endif /* VALID_H */