From c59839ac6de8fcc41a70c06472a3e39a207002c9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 22 Oct 2001 22:47:57 +0000 Subject: Consolidate tables of known system attributes into one table. --- src/include/catalog/heap.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/include') 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 */ -- cgit v1.2.3