summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorBruce Momjian1997-11-28 17:28:02 +0000
committerBruce Momjian1997-11-28 17:28:02 +0000
commit002796b5ca9c727526ed5231d90f2a7b6b6cf4a9 (patch)
tree134153833ca7be8b3ea736b88d0717bc12786929 /src/include
parentc445ba331b4de54eb79f6a71c09e9c1666de9b69 (diff)
Rename heap_destroyr to heap_destroy, heap_destroy to heap_destroy_with_catalog.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/catalog/heap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h
index 38cbecfc419..aab7ffd896b 100644
--- a/src/include/catalog/heap.h
+++ b/src/include/catalog/heap.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: heap.h,v 1.9 1997/11/28 04:40:40 momjian Exp $
+ * $Id: heap.h,v 1.10 1997/11/28 17:28:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,10 +18,10 @@
extern Relation heap_create(char *relname, TupleDesc att);
extern Oid
-heap_create_and_catalog(char relname[], TupleDesc tupdesc);
+heap_create_with_catalog(char relname[], TupleDesc tupdesc);
-extern void heap_destroy(char relname[]);
-extern void heap_destroyr(Relation r);
+extern void heap_destroy_with_catalog(char relname[]);
+extern void heap_destroy(Relation r);
extern void InitTempRelList(void);
extern void DestroyTempRels(void);