Commit ad34847d authored by Bruce Momjian's avatar Bruce Momjian

Cleanup

parent 275a1d05
...@@ -7,7 +7,7 @@ ...@@ -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,10 +811,8 @@ heap_create_with_catalog(char *relname, ...@@ -811,10 +811,8 @@ 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 */
if (istemp) if (istemp)
......
...@@ -7,7 +7,7 @@ ...@@ -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,10 +990,8 @@ index_create(char *heapRelationName, ...@@ -990,10 +990,8 @@ 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 */
if (istemp) if (istemp)
......
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