This commit is contained in:
Bruce Momjian 1999-06-16 11:01:17 +00:00
parent 275a1d054e
commit ad34847d4e
2 changed files with 2 additions and 6 deletions

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.87 1999/06/04 02:19:46 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.88 1999/06/16 11:01:17 momjian Exp $
* *
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
@ -811,9 +811,7 @@ heap_create_with_catalog(char *relname,
Oid relid = RelnameFindRelid(relname); Oid relid = RelnameFindRelid(relname);
if (relid != InvalidOid) if (relid != InvalidOid)
{
RelationForgetRelation(relid); RelationForgetRelation(relid);
}
} }
/* save user relation name because heap_create changes it */ /* save user relation name because heap_create changes it */

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.77 1999/06/04 02:19:47 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.78 1999/06/16 11:01:17 momjian Exp $
* *
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
@ -990,9 +990,7 @@ index_create(char *heapRelationName,
Oid relid = RelnameFindRelid(indexRelationName); Oid relid = RelnameFindRelid(indexRelationName);
if (relid != InvalidOid) if (relid != InvalidOid)
{
RelationForgetRelation(relid); RelationForgetRelation(relid);
}
} }
/* save user relation name because heap_create changes it */ /* save user relation name because heap_create changes it */