postgresql/src/include/catalog/heap.h

30 lines
757 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* heap.h--
* prototypes for functions in lib/catalog/heap.c
*
*
* Copyright (c) 1994, Regents of the University of California
*
1998-09-01 05:29:17 +02:00
* $Id: heap.h,v 1.15 1998/09/01 03:27:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HEAP_H
#define HEAP_H
1996-11-05 12:23:43 +01:00
#include <utils/rel.h>
extern Relation heap_create(char *relname, TupleDesc att);
extern Oid heap_create_with_catalog(char *relname,
TupleDesc tupdesc, char relkind);
1998-09-01 05:29:17 +02:00
extern void heap_destroy_with_catalog(char *relname);
extern void heap_destroy(Relation rel);
extern void InitTempRelList(void);
extern void DestroyTempRels(void);
#endif /* HEAP_H */