+ CreateTupleDescCopyConstr

+ FreeTupleDesc
This commit is contained in:
Vadim B. Mikheev 1997-08-22 03:55:39 +00:00
parent ac0029aa0b
commit ee5f09f07c
1 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: tupdesc.h,v 1.7 1997/08/21 04:10:25 vadim Exp $
* $Id: tupdesc.h,v 1.8 1997/08/22 03:55:39 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@ -57,6 +57,10 @@ extern TupleDesc CreateTupleDesc(int natts, AttributeTupleForm *attrs);
extern TupleDesc CreateTupleDescCopy(TupleDesc tupdesc);
extern TupleDesc CreateTupleDescCopyConstr(TupleDesc tupdesc);
extern void FreeTupleDesc(TupleDesc tupdesc);
extern bool TupleDescInitEntry(TupleDesc desc,
AttrNumber attributeNumber,
char *attributeName,