summaryrefslogtreecommitdiff
path: root/src/include/access/heapam.h
diff options
context:
space:
mode:
authorBruce Momjian1998-10-08 18:30:52 +0000
committerBruce Momjian1998-10-08 18:30:52 +0000
commit173c555948b9002b3b899d7331682e8812d171dc (patch)
tree76ee9e08cdd0d06a890d160d17d99e9f5331d4a2 /src/include/access/heapam.h
parent0a1c2805b35f59b3654d51c965d03699e60b50f7 (diff)
Make functions static or ifdef NOT_USED. Prevent pg_version creation.
Diffstat (limited to 'src/include/access/heapam.h')
-rw-r--r--src/include/access/heapam.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h
index ecaed32c9fe..35aad2fb14a 100644
--- a/src/include/access/heapam.h
+++ b/src/include/access/heapam.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: heapam.h,v 1.37 1998/09/01 04:34:12 momjian Exp $
+ * $Id: heapam.h,v 1.38 1998/10/08 18:30:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -242,7 +242,6 @@ extern HeapAccessStatistics heap_access_stats; /* in stats.c */
/* heap_create, heap_creatr, and heap_destroy are declared in catalog/heap.h */
/* heapam.c */
-extern void doinsert(Relation relation, HeapTuple tup);
extern Relation heap_open(Oid relationId);
extern Relation heap_openr(char *relationName);
@@ -268,7 +267,6 @@ extern void DataFill(char *data, TupleDesc tupleDesc,
extern int heap_attisnull(HeapTuple tup, int attnum);
extern int heap_sysattrlen(AttrNumber attno);
extern bool heap_sysattrbyval(AttrNumber attno);
-extern Datum heap_getsysattr(HeapTuple tup, Buffer b, int attnum);
extern Datum nocachegetattr(HeapTuple tup, int attnum,
TupleDesc att, bool *isnull);
extern HeapTuple heap_copytuple(HeapTuple tuple);