1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

Rename heap_destroyr to heap_destroy, heap_destroy to heap_destroy_with_catalog.

This commit is contained in:
Bruce Momjian
1997-11-28 17:28:02 +00:00
parent c445ba331b
commit 002796b5ca
12 changed files with 47 additions and 47 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.20 1997/11/28 04:39:48 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.21 1997/11/28 17:27:04 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -137,7 +137,7 @@ DefineRelation(CreateStmt *stmt)
}
}
relationId = heap_create_and_catalog(relname, descriptor);
relationId = heap_create_with_catalog(relname, descriptor);
StoreCatalogInheritance(relationId, inheritList);
}
@ -157,7 +157,7 @@ void
RemoveRelation(char *name)
{
AssertArg(name);
heap_destroy(name);
heap_destroy_with_catalog(name);
}