Commit ad34847d authored by Bruce Momjian's avatar Bruce Momjian

Cleanup

parent 275a1d05
......@@ -7,7 +7,7 @@
*
*
* 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
......@@ -811,9 +811,7 @@ heap_create_with_catalog(char *relname,
Oid relid = RelnameFindRelid(relname);
if (relid != InvalidOid)
{
RelationForgetRelation(relid);
}
}
/* save user relation name because heap_create changes it */
......
......@@ -7,7 +7,7 @@
*
*
* 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
......@@ -990,9 +990,7 @@ index_create(char *heapRelationName,
Oid relid = RelnameFindRelid(indexRelationName);
if (relid != InvalidOid)
{
RelationForgetRelation(relid);
}
}
/* save user relation name because heap_create changes it */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment