Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ad34847

Browse files
committed
Cleanup
1 parent 275a1d0 commit ad34847

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/backend/catalog/heap.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.87 1999/06/04 02:19:46 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.88 1999/06/16 11:01:17 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES
@@ -811,9 +811,7 @@ heap_create_with_catalog(char *relname,
811811
Oid relid = RelnameFindRelid(relname);
812812

813813
if (relid != InvalidOid)
814-
{
815814
RelationForgetRelation(relid);
816-
}
817815
}
818816

819817
/* save user relation name because heap_create changes it */

src/backend/catalog/index.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.77 1999/06/04 02:19:47 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.78 1999/06/16 11:01:17 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES
@@ -990,9 +990,7 @@ index_create(char *heapRelationName,
990990
Oid relid = RelnameFindRelid(indexRelationName);
991991

992992
if (relid != InvalidOid)
993-
{
994993
RelationForgetRelation(relid);
995-
}
996994
}
997995

998996
/* save user relation name because heap_create changes it */

0 commit comments

Comments
 (0)