diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/heap.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h index 677347c24f5..1a69f0147ff 100644 --- a/src/include/catalog/heap.h +++ b/src/include/catalog/heap.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: heap.h,v 1.59 2002/11/11 22:19:23 tgl Exp $ + * $Id: heap.h,v 1.60 2002/12/16 18:39:22 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -74,4 +74,8 @@ extern Form_pg_attribute SystemAttributeDefinition(AttrNumber attno, extern Form_pg_attribute SystemAttributeByName(const char *attname, bool relhasoids); +extern void CheckAttributeNamesTypes(TupleDesc tupdesc, char relkind); + +extern void CheckAttributeType(const char *attname, Oid atttypid); + #endif /* HEAP_H */ |