|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.77 1999/04/15 04:08:07 tgl Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.78 1999/05/10 00:44:54 momjian Exp $ |
11 | 11 | * |
12 | 12 | * |
13 | 13 | * INTERFACE ROUTINES |
@@ -761,10 +761,10 @@ AddNewRelationType(char *typeName, Oid new_rel_oid) |
761 | 761 | typeLen(typeidType(OIDOID)),/* external size */ |
762 | 762 | 'c',/* type-type (catalog) */ |
763 | 763 | ',',/* default array delimiter */ |
764 | | -"int4in",/* input procedure */ |
765 | | -"int4out",/* output procedure */ |
766 | | -"int4in",/* receive procedure */ |
767 | | -"int4out",/* send procedure */ |
| 764 | +"oidin",/* input procedure */ |
| 765 | +"oidout",/* output procedure */ |
| 766 | +"oidin",/* receive procedure */ |
| 767 | +"oidout",/* send procedure */ |
768 | 768 | NULL,/* array element type - irrelevent */ |
769 | 769 | "-",/* default type value */ |
770 | 770 | (bool)1,/* passed by value */ |
@@ -973,7 +973,7 @@ RelationRemoveInheritance(Relation relation) |
973 | 973 | heap_endscan(scan); |
974 | 974 | heap_close(catalogRelation); |
975 | 975 |
|
976 | | -elog(ERROR,"Relation '%d' inherits '%s'", |
| 976 | +elog(ERROR,"Relation '%u' inherits '%s'", |
977 | 977 | ((Form_pg_inherits)GETSTRUCT(tuple))->inhrel, |
978 | 978 | RelationGetRelationName(relation)); |
979 | 979 | } |
@@ -1235,7 +1235,7 @@ DeleteTypeTuple(Relation rel) |
1235 | 1235 | heap_endscan(pg_attribute_scan); |
1236 | 1236 | heap_close(pg_attribute_desc); |
1237 | 1237 |
|
1238 | | -elog(ERROR,"DeleteTypeTuple: att of type %s exists in relation %d", |
| 1238 | +elog(ERROR,"DeleteTypeTuple: att of type %s exists in relation %u", |
1239 | 1239 | &rel->rd_rel->relname,relid); |
1240 | 1240 | } |
1241 | 1241 | heap_endscan(pg_attribute_scan); |
|