diff options
| author | Tom Lane | 2001-10-22 22:47:57 +0000 |
|---|---|---|
| committer | Tom Lane | 2001-10-22 22:47:57 +0000 |
| commit | c59839ac6de8fcc41a70c06472a3e39a207002c9 (patch) | |
| tree | a243e32858578c38c89bf798fe209b0eb006dadd /src/include | |
| parent | b00c6c841fee9e39f136335db69b8621560db7d8 (diff) | |
Consolidate tables of known system attributes into one table.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/heap.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h index 2d08520bc90..8d7346fa05a 100644 --- a/src/include/catalog/heap.h +++ b/src/include/catalog/heap.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * * heap.h - * prototypes for functions in lib/catalog/heap.c + * prototypes for functions in backend/catalog/heap.c * * * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: heap.h,v 1.37 2001/08/10 18:57:39 tgl Exp $ + * $Id: heap.h,v 1.38 2001/10/22 22:47:57 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -47,8 +47,10 @@ extern void AddRelationRawConstraints(Relation rel, extern int RemoveCheckConstraint(Relation rel, const char *constrName, bool inh); - extern Form_pg_attribute SystemAttributeDefinition(AttrNumber attno, bool relhasoids); +extern Form_pg_attribute SystemAttributeByName(const char *attname, + bool relhasoids); + #endif /* HEAP_H */ |
