postgresql/src/include/catalog/heap.h

30 lines
707 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
*
1997-11-21 19:12:58 +01:00
* $Id: heap.h,v 1.8 1997/11/21 18:11:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HEAP_H
#define HEAP_H
1996-11-05 12:23:43 +01:00
#include <utils/rel.h>
1997-11-21 19:12:58 +01:00
extern Relation heap_creatr(char *relname, TupleDesc att);
extern Oid
1997-11-21 19:12:58 +01:00
heap_create(char relname[], TupleDesc tupdesc);
extern void heap_destroy(char relname[]);
extern void heap_destroyr(Relation r);
extern void InitTempRelList(void);
extern void DestroyTempRels(void);
#endif /* HEAP_H */